| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- //
- // System.Web.UI.WebControls.AdRotator
- //
- // Author:
- // Ben Maurer <[email protected]>
- //
- // (c) 2005 Novell
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System.Xml;
- using System.Collections;
- using System.ComponentModel;
- namespace System.Web.UI.WebControls {
- [DefaultEvent("AdCreated")]
- [DefaultProperty("AdvertisementFile")]
- [Designer("System.Web.UI.Design.WebControls.AdRotatorDesigner, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.IDesigner")]
- #if NET_2_0
- [ToolboxData("<{0}:AdRotator runat=\"server\"></{0}:AdRotator>")]
- #else
- [ToolboxData("<{0}:AdRotator runat=\"server\" Height=\"60px\" Width=\"468px\"></{0}:AdRotator>")]
- #endif
- public class AdRotator :
- #if NET_2_0
- DataBoundControl
- #else
- WebControl
- #endif
- {
-
- protected override ControlCollection CreateControlCollection ()
- {
- return new EmptyControlCollection (this);
- }
- #if NET_2_0
- [MonoTODO]
- protected internal override void OnInit (EventArgs e)
- {
- base.OnInit(e);
- }
- #endif
-
- #if NET_2_0
- protected internal
- #else
- protected
- #endif
- override void OnPreRender (EventArgs eee)
- {
- Hashtable ht = null;
-
- if (ad_file != "" && ad_file != null) {
- ReadAdsFromFile (Page.MapPath (ad_file));
- ht = ChooseAd ();
- }
- AdCreatedEventArgs e = new AdCreatedEventArgs (ht);
- OnAdCreated (e);
- createdargs = e;
-
- }
- #if NET_2_0
- [MonoTODO]
- protected internal override void PerformDataBinding (IEnumerable data)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override void PerformSelect ()
- {
- throw new NotImplementedException ();
- }
- #endif
- AdCreatedEventArgs createdargs;
- #if NET_2_0
- protected internal
- #else
- protected
- #endif
- override void Render (HtmlTextWriter w)
- {
- AdCreatedEventArgs e = createdargs;
- base.AddAttributesToRender (w);
-
- if (e.NavigateUrl != null)
- w.AddAttribute (HtmlTextWriterAttribute.Href, ResolveUrl (e.NavigateUrl));
- w.AddAttribute (HtmlTextWriterAttribute.Target, Target);
-
- w.RenderBeginTag (HtmlTextWriterTag.A);
- if (e.NavigateUrl != null)
- w.AddAttribute (HtmlTextWriterAttribute.Src, ResolveUrl (e.ImageUrl));
-
- w.AddAttribute (HtmlTextWriterAttribute.Alt, e.AlternateText == null ? "" : e.AlternateText);
- w.AddAttribute (HtmlTextWriterAttribute.Border, "0");
- w.RenderBeginTag (HtmlTextWriterTag.Img);
- w.RenderEndTag (); // img
- w.RenderEndTag (); // a
- }
- //
- // We take all the ads in the ad file and add up their
- // impression weight. We then take a random number [0,
- // TotalImpressions). We then choose the ad that is
- // that number or less impressions for the beginning
- // of the file. This lets us respect the weights
- // given.
- //
- Hashtable ChooseAd ()
- {
- // cache for performance
- string KeywordFilter = this.KeywordFilter;
-
- int total_imp = 0;
- int cur_imp = 0;
-
- foreach (Hashtable a in ads) {
- if (KeywordFilter == "" || KeywordFilter == (string) a ["Keyword"])
- total_imp += a ["Impressions"] != null ? int.Parse ((string) a ["Impressions"]) : 1;
- }
- int r = new Random ().Next (total_imp);
- foreach (Hashtable a in ads) {
- if (KeywordFilter != "" && KeywordFilter != (string) a ["Keyword"])
- continue;
- cur_imp += a ["Impressions"] != null ? int.Parse ((string) a ["Impressions"]) : 1;
-
- if (cur_imp > r)
- return a;
- }
- if (total_imp != 0)
- throw new Exception ("I should only get here if no ads matched");
-
- return null;
- }
- ArrayList ads = new ArrayList ();
-
- void ReadAdsFromFile (string s)
- {
- XmlDocument d = new XmlDocument ();
- try {
- d.Load (s);
- } catch (Exception e) {
- throw new HttpException ("AdRotator could not parse the xml file", e);
- }
-
- ads.Clear ();
-
- foreach (XmlNode n in d.DocumentElement.ChildNodes) {
- Hashtable ad = new Hashtable ();
-
- foreach (XmlNode nn in n.ChildNodes)
- ad.Add (nn.Name, nn.InnerText);
-
- ads.Add (ad);
- }
- }
-
- string ad_file = "";
- #if NET_2_0
- [UrlProperty]
- #endif
- [Bindable(true)]
- [DefaultValue("")]
- [Editor("System.Web.UI.Design.XmlUrlEditor, " + Consts.AssemblySystem_Design, typeof(System.Drawing.Design.UITypeEditor))]
- [WebSysDescription("")]
- [WebCategory("Behavior")]
- public string AdvertisementFile {
- get {
- return ad_file;
- }
- set {
- ad_file = value;
- }
-
- }
- #if NET_2_0
- [DefaultValue ("AlternateText")]
- [WebSysDescriptionAttribute ("")]
- [WebCategoryAttribute ("Behavior")]
- [MonoTODO]
- public string AlternateTextField
- {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- #endif
-
- [Browsable(false)]
- [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
- [EditorBrowsable(EditorBrowsableState.Never)]
- public override FontInfo Font {
- get {
- return base.Font;
- }
- }
- #if NET_2_0
- [DefaultValue ("ImageUrl")]
- [MonoTODO]
- [WebSysDescriptionAttribute ("")]
- [WebCategoryAttribute ("Behavior")]
- public string ImageUrlField
- {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- #endif
-
- [Bindable(true)]
- [DefaultValue("")]
- [WebSysDescription("")]
- [WebCategory("Behavior")]
- public string KeywordFilter {
- get {
- return ViewState.GetString ("KeywordFilter", "");
- }
- set {
- ViewState ["KeywordFilter"] = value;
- }
-
- }
- #if NET_2_0
- [DefaultValue ("NavigateUrl")]
- [MonoTODO]
- [WebSysDescriptionAttribute ("")]
- [WebCategoryAttribute ("Behavior")]
- public string NavigateUrlField
- {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- /* listed in corcompare */
- [MonoTODO]
- public override Page Page
- {
- get {
- return base.Page;
- }
- set {
- base.Page = value;
- }
- }
- #endif
-
- [Bindable(true)]
- [DefaultValue("_top")]
- [TypeConverter(typeof(System.Web.UI.WebControls.TargetConverter))]
- [WebSysDescription("")]
- [WebCategory("Behavior")]
- public string Target {
- get {
- return ViewState.GetString ("Target", "_top");
- }
- set {
- ViewState ["Target"] = value;
- }
-
- }
- #if NET_2_0
- /* all these are listed in corcompare */
- [MonoTODO]
- public override string UniqueID
- {
- get {
- return base.UniqueID;
- }
- }
- [MonoTODO]
- protected override HtmlTextWriterTag TagKey
- {
- get {
- return base.TagKey;
- }
- }
- [MonoTODO]
- protected override StateBag ViewState
- {
- get {
- return base.ViewState;
- }
- }
- #endif
-
- protected virtual void OnAdCreated (AdCreatedEventArgs e)
- {
- AdCreatedEventHandler h = (AdCreatedEventHandler) Events [AdCreatedEvent];
- if (h != null)
- h (this, e);
- }
- static readonly object AdCreatedEvent = new object ();
- [WebSysDescription("")]
- [WebCategory("Action")]
- public event AdCreatedEventHandler AdCreated {
- add { Events.AddHandler (AdCreatedEvent, value); }
- remove { Events.RemoveHandler (AdCreatedEvent, value); }
- }
- }
- }
|