protected void btnPrint(object sender, EventArgs e) { //Initialize API Core FaceBook oFacebook = new FaceBook(); //Initialize KOKO SonetPie osonetpie = new SonetPie(); osonetpie.QSvarsString = GetQsVarsCollection(); osonetpie.AbsolutePath = AbsolutePagePath; string _sNotifierDID = new AppNotifier().GetNewDIDWithPrefix(); if (QSVars.Contains("NDID")) QSVars["NDID"] = _sNotifierDID; else QSVars.Add("NDID", _sNotifierDID); //Load app settings oDCAppUser = ofbBiz.GetAppUser(osonetpie, QSVars["ADID"].ToString(), QSVars["user_id"].ToString()); oAppProduct = ofbBiz.GetAppProductDetails(osonetpie, QSVars["PDID"].ToString()); Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "window.print();", true); ofbBiz.RaiseAppNotifier(oDCAppUser, "PRINT", Convert.ToString(QSVars["UDID"]), Convert.ToString(QSVars["PDID"]), Convert.ToString(QSVars["NDID"])); }
public string CallPageTabs(string PageID) { //now we have page_id, redirect user to PAGE URL string PageName = string.Empty; //use FQL to get page name etc StringBuilder oSBPgaeCaller = new StringBuilder(); oSBPgaeCaller.Append("https://api.facebook.com/method/fql.query?"); oSBPgaeCaller.Append("query=SELECT name FROM page WHERE page_id = " + PageID); //oSBPgaeCaller.Append("&access_token=" + Session["user_access_token"].ToString()); oSBPgaeCaller.Append("&format=JSON"); FaceBook objFB = new FaceBook(); //Parse json to get MXDBAppUser string _sUserInfoJson = objFB.CallWebRequest("GET", oSBPgaeCaller.ToString(), string.Empty); object[] oUserLocationDataRow = new object[5]; //Convert Json to JsonDictionary <of String, object> System.Web.Script.Serialization.JavaScriptSerializer _oJavaScriptSerializer = new System.Web.Script.Serialization.JavaScriptSerializer(); object _oJSONObject = _oJavaScriptSerializer.DeserializeObject(_sUserInfoJson); int i = 0; for (i = 0; i <= ((object[])_oJSONObject).Length - 1; i++) { Dictionary<string, object> _ojsonUserDetails = (Dictionary<string, object>)((object[])_oJSONObject)[i]; foreach (KeyValuePair<string, object> _oKeyjsonUserDetailsItem in _ojsonUserDetails) { switch (_oKeyjsonUserDetailsItem.Key) { case "name": //set Email PageName = Convert.ToString(_oKeyjsonUserDetailsItem.Value); break; } } } return PageName; }
protected override void OnPreLoad(EventArgs e) { try { base.OnPreLoad(e); FacebookBizProcess fbBiz = new FacebookBizProcess(); FaceBook oFBUtility = new FaceBook(); SonetPieBizProcess sonetpiebiz = new SonetPieBizProcess(); SonetPie sonetpie = new SonetPie(); NotifyURL = ConfigurationSettings.AppSettings["NotifyURL"]; pageRefreshed = false; if (QSVars.Contains("user_id")) { Session["facebook_user_id"] = QSVars["user_id"].ToString(); } if (QSVars.Contains("UDID")) { Session["sr_user_did"] = QSVars["UDID"].ToString(); } if (QSVars.Contains("PDID")) { Session["sr_product_did"] = QSVars["PDID"].ToString(); } if (Request.Url.Query.Contains("request") && !(Request.Url.Query.Contains("fb_source"))) //AppRequest callback, now save to notifiers { for (int i = 0; i < Request.QueryString.Count - 2; i++) { //every Request["to[i]"] has a userID for AppNotifier string fbUID = Request["to[" + i + "]"].ToString(); string _sNotifierDID = new AppNotifier().GetNewDIDWithPrefix(); string facebook_user_id = Convert.ToString(Session["facebook_user_id"]); string UDID = Convert.ToString(Session["sr_user_did"]); if (QSVars.Contains("NDID")) QSVars["NDID"] = _sNotifierDID; else QSVars.Add("NDID", _sNotifierDID); //Build DCAppWallPost for each user AppUser oDCAppUser = new AppUser(); string ConfigDID = fbBiz.GetConfigDEED(Convert.ToString(QSVars["app_id"])); if (!QSVars.Contains("ADID")) { QSVars.Add("ADID", ConfigDID); } if (!QSVars.Contains("PDID")) { QSVars.Add("PDID", Convert.ToString(Session["sr_product_did"])); } oDCAppUser = ofbBiz.GetAppUser(osonetpie, QSVars["ADID"].ToString(), facebook_user_id); _oDCAppWallPost.FromUserID = Convert.ToString(QSVars["user_id"]); _oDCAppWallPost.ToUserID = fbUID; _oDCAppWallPost.Name = ofbBiz.GetCustomTabName(QSVars["app_id"].ToString()); _oDCAppWallPost.Source = Convert.ToString(QSVars["user_id"]); AppLeadData oAppLead = new AppLeadData(); if (Request.Browser.IsMobileDevice == true || Request.UserAgent.ToLower().Contains("iphone") || Request.UserAgent.ToLower().Contains("android")) { if (fbBiz.RaiseAppNotifier(oDCAppUser, "MPOST", UDID, Convert.ToString(QSVars["PDID"]), "", fbUID)) { } } else { if (fbBiz.RaiseAppNotifier(oDCAppUser, "POST", UDID, Convert.ToString(QSVars["PDID"]), "", fbUID)) { } } } Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "window.close();", true); } if (Request["code"] == null) { if ((Request.QueryString.Count > 0) && !(Request["LIKED"] != null)) { //ParseRequest & set values to qsvars if (!(Request.QueryString).AllKeys[0].ToString().Contains("tabs_added")) { //REVISIT sonetpie.QSvarsString = GetQsVarsCollection(); sonetpie.FormvarsString = GetFormVarsCollection(); sonetpie.AbsolutePath = AbsolutePagePath; if (Request.Form.ToString() != string.Empty) { FormVars.Add("signed_request", Request.Form.Get(0).ToString()); } //Init Biz //SonetPieBizProcess sonetpiebiz = new SonetPieBizProcess(); if (QSVars.Contains("app_id")) { if (EnableAppServices) _oDCAppConfiguration = sonetpiebiz.GetAppConfiguration("", QSVars["app_id"].ToString()); SessionData.Config.DID = _oDCAppConfiguration.DID; //DigiMa.Common.FaceBook oFBUtility1 = new DigiMa.Common.FaceBook(); //check AppConfig got loaded if (AppConfig != null) { //Add CDID to Load customer if (QSVars.Contains("CDID")) QSVars["CDID"] = AppConfig.AppCustomerDID; else QSVars.Add("CDID", AppConfig.AppCustomerDID); //Add ADID to Load customer if (QSVars.Contains("ADID")) QSVars["ADID"] = AppConfig.DID; else QSVars.Add("ADID", AppConfig.DID); //Reset KOKO QSVars sonetpie.QSvarsString = GetQsVarsCollection(); _oDCAppCustomer = fbBiz.GetAppCustomer(Convert.ToString(QSVars["CDID"])); //ParseSigned Request if ((!QSVars.Contains("oauth_token"))) { oFBUtility.ParseSignedRequest(ref _qsVars, ref _frmVars, AppConfig); } if (QSVars.Contains("oauth_token")) { Session["oauth_token"] = Convert.ToString(QSVars["oauth_token"]); } if (QSVars.Contains("user_id")) { Session["user_id"] = Convert.ToString(QSVars["user_id"]); } //call graph to get page_Acc_tok if (QSVars.Contains("oauth_token") && (_oDCAppConfiguration.SAppCustomNameAdded == null || _oDCAppConfiguration.SAppCustomNameAdded == "")) { page_access_token = facebook.GetPageAccessToken(QSVars["oauth_token"].ToString()); System.Web.Script.Serialization.JavaScriptSerializer _oJavaScriptSerializer = new System.Web.Script.Serialization.JavaScriptSerializer(); JObject obj = JObject.Parse(page_access_token); IEnumerable<string> query = from res in (Newtonsoft.Json.Linq.JArray)obj["data"] let reso = res as JObject where ((string)reso["id"]).ToLower() == _oDCAppConfiguration.SPageID select (string)reso["access_token"]; //fetch the logo of this Campaign from AppProduct and pass to CallPages if (facebook.CallPages(_oDCAppConfiguration.SPageID, query.ToList()[0].ToString(), "app_" + QSVars["app_id"].ToString(), _oDCAppConfiguration.SCustomtTabName, fbBiz.FetchAppLogo(QSVars["app_id"].ToString()))) { //update custom_updated to Y fbBiz.UpdateCustomTabNAme(_oDCAppConfiguration.DID); ClientScript.RegisterStartupScript(this.GetType(), "scriptid", "window.parent.location.href='" + _oDCAppConfiguration.SAppPagePath + "'", true); } } //parse the JSON if (HasAuthorization) { if (!QSVars.Contains("oauth_token")) { //Set Authorization stamp on redirect url AppConfig.AppPath += "?soNETSrc="; if (QSVars.Contains("NDID")) AppConfig.AppPath += Convert.ToString(QSVars["NDID"]); else AppConfig.AppPath += "NULL"; //oFBUtility.GetAccessToken(QSVars["code"].ToString(), "user_location,email,friends_location,publish_stream",AppConfig.AppPath,AppConfig); // CHeck if Request is coming from Mobile device, then open Standalone if (Request.Browser.IsMobileDevice == true || Request.UserAgent.ToLower().Contains("iphone") || Request.UserAgent.ToLower().Contains("android")) { //oFBUtility.AuthorizeMob(this, "user_location,email,friends_location,user_birthday", AppConfig); } else { oFBUtility.Authorize(this, "user_location,email,friends_location,user_birthday", AppConfig); } } else { //Insert user into DB if (true) { //Call service to store into DB AppUser oDCAppUser = new AppUser(); oDCAppUser.AppConfigDID = AppConfig.DID; oDCAppUser.EmailID = "NULL"; oDCAppUser.SonetID = Convert.ToString(QSVars["user_id"]); oDCAppUser.SonetSRC = Convert.ToString(QSVars["soNETSrc"]); oDCAppUser.UserStatus = "Active"; oDCAppUser.SMType = "FB"; oDCAppUser = oFBUtility.GetUserDetail(Convert.ToString(QSVars["user_id"]), Convert.ToString(QSVars["oauth_token"]), oDCAppUser); //Save to DB if (!fbBiz.IsUserCreatedForFacebook(oDCAppUser.SonetID, oDCAppUser.AppConfigDID)) { if (fbBiz.SetAppUserAuthorize(oDCAppUser, Convert.ToString(QSVars["ADID"]))) _oDCAppUser = oDCAppUser; } } } } } //refrsh to get tab name //fbBiz.UpdateCustomTabNAme(_oDCAppConfiguration.DID); //ClientScript.RegisterStartupScript(this.GetType(), "scriptid", "window.parent.location.href='" + _oDCAppConfiguration.SAppPagePath + "'", true); //Load AppUser based on property if (_bEnableAppUser && _qsVars.Contains("user_id")) { sonetpie.QSvarsString = GetQsVarsCollection(); _oDCAppUser = fbBiz.GetAppUser(sonetpie, Convert.ToString(QSVars["ADID"]), Convert.ToString(QSVars["user_id"])); if (_oDCAppUser != null) { if (!_qsVars.Contains("UDID")) _qsVars.Add("UDID", _oDCAppUser.DID); else _qsVars["UDID"] = _oDCAppUser.DID; if (QSVars.Count < 8) { ClientScript.RegisterStartupScript(this.GetType(), "scriptid", "window.parent.location.href='" + _oDCAppConfiguration.SAppPagePath + "'", true);//To ensure all QSVARS are loaded from facebook } } } //Update Notifier count based on NDID or soNETSrc if (QSVars.Contains("soNETSrc") || QSVars.Contains("NDID")) { AppNotifier oAppNotifier = new AppNotifier(); if (QSVars.Contains("soNETSrc")) oAppNotifier.DID = Convert.ToString(QSVars["soNETSrc"]); if (QSVars.Contains("NDID")) oAppNotifier.DID = Convert.ToString(QSVars["NDID"]); if (!string.IsNullOrEmpty(oAppNotifier.DID)) fbBiz.EditAppNotifierDetails(oAppNotifier); } } } } else { // } } else { //Here redirect user to Page path if (QSVars.Contains("app_id") && QSVars.Contains("soNETSrc")) { //string pageToRedirect = fbBiz.GetAppPagePath(Convert.ToString(QSVars["app_id"])); //Response.Redirect(pageToRedirect,true); } } } catch (Exception ex) { CommonUtility commUtil = new CommonUtility(); commUtil.SendErrorMail(ex.Message, ex.StackTrace, System.Reflection.MethodBase.GetCurrentMethod().Name.ToString(), System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.ToString(), SessionData.Customer.CustomerID); } }
protected void btnStep3Complete_Click(object sender, EventArgs e) { try { //Fetch Template Data FacebookBizProcess fbBiz = new FacebookBizProcess(); string createdHTML = fbBiz.GetProductHTML(SessionData.Product.DID); //REVISIT hdnTrmplateID.Value = templateID; //Save Widgets info and Cust Tab name, then move to FB tab //Custom Tab Name if (!txtCustomTabNamePromo2.Text.Trim().Equals(string.Empty)) { SessionData.Config.SCustomtTabName = txtCustomTabNamePromo2.Text.Trim(); } //Widgets if (chkShareButton.Checked) { SessionData.Product.ShareWidgetAdded = "Y"; } else { SessionData.Product.ShareWidgetAdded = "N"; } if (chkInquiry.Checked) { SessionData.Product.InquiryWidgetAdded = "Y"; } else { SessionData.Product.InquiryWidgetAdded = "N"; } if (chkRecc.Checked) { SessionData.Product.ReccWidgetAdded = "Y"; } else { SessionData.Product.ReccWidgetAdded = "N"; } if (chkComment.Checked) { SessionData.Product.CommentsWidgetAdded = "Y"; } else { SessionData.Product.CommentsWidgetAdded = "N"; } if (chkLike.Checked) { SessionData.Product.LikeWidgetAdded = "Y"; } else { SessionData.Product.LikeWidgetAdded = "N"; } if (chkTweeter.Checked) { SessionData.Product.TwitterWidgetAdded = "Y"; } else { SessionData.Product.TwitterWidgetAdded = "N"; } oVidShareData = fbBiz.GetVideoShareData(SessionData.Config.DID); //Like Gateway if (chkLikeGateway.Checked) { SessionData.Product.LikeGatewayAdded = "Y"; //Save LikeGateway Image if (filePromo2LikeGateWayImage.HasFile) { if (filePromo2LikeGateWayImage.PostedFile.ContentType == "image/jpeg" || filePromo2LikeGateWayImage.PostedFile.ContentType == "image/png" || filePromo2LikeGateWayImage.PostedFile.ContentType == "image/jpg" || filePromo2LikeGateWayImage.PostedFile.ContentType == "image/pjpeg") { if (filePromo2LikeGateWayImage.FileBytes.Length < 1048576) { string filenamePromo2Logo = Path.GetFileName(filePromo2LikeGateWayImage.FileName); Bitmap sourceImage = new Bitmap(filePromo2LikeGateWayImage.PostedFile.InputStream); SaveImageFile(sourceImage, Server.MapPath(pathToCreate + "/LikeGateway" + filenamePromo2Logo), 111, 74); hdnFooterLogo.Value = filenamePromo2Logo; SessionData.Product.ProductLogo = filenamePromo2Logo; } else { spnErrorfileLikeGateWayImage.InnerHtml = "File size should not be greater than 1 MB"; spnErrorfileLikeGateWayImage.Style.Add("color", "Red"); errCount++; } } else { spnErrorfileLikeGateWayImage.InnerHtml = "Upload status: Only JPEG, PNG files are accepted!"; spnErrorfileLikeGateWayImage.Style.Add("color", "Red"); errCount++; } } } if (fbBiz.IsAppCreationAllowed(SessionData.Customer.CustomerID)) { FaceBook ofacebook = new FaceBook(); AppUser oAppUser = new AppUser(); if ((Regex.IsMatch(txtVideoURL.Text.Trim(), @"(http|https)://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?")) && (txtVideoURL.Text.Trim().Contains("youtube"))) { iframecontent = ofacebook.GetEmbedURL(txtVideoURL.Text.Trim(), oAppUser); iframecontentOld = ofacebook.GetEmbedURL(oVidShareData.SVideoShareURL, oAppUser); string fixedURL = FixVideoURL(iframecontent); string fixedUrlOld = FixVideoURL(iframecontentOld); //Now update VideoShareData fbBiz.UpdateVideoShareData(SessionData.Config.DID, txtVideoURL.Text.Trim(), fixedURL, txtDescription.Text.Trim()); if (!iframecontent.Equals(string.Empty)) { string[] newEmbedURL = iframecontent.Split(' '); string finalURL = newEmbedURL[3].Remove(0, 4); string[] oldEmbedURL = iframecontentOld.Split(' '); string oldfinalURL = oldEmbedURL[3].Remove(0, 4); if (!txtVideoURL.Text.Contains("autoplay")) { if (!txtVideoURL.Text.Contains("?")) { if (!(string.IsNullOrEmpty(txtBannerURL.Text.Trim()))) //New image was chosen, then do normal replace, else, bring new image //SessionData.Product.SHeaderBannerURL != txtBannerURL.Text { HeaderBannerURLReplaced = createdHTML.Replace(SessionData.Product.SHeaderBannerURL, txtBannerURL.Text); } else { HeaderBannerURLReplaced = createdHTML.Replace(" <a id=\"aHeadBanner\" href=\"\" target=\"_blank\">", "<a id=\"aHeadBanner\" href=" + SessionData.Product.SHeaderBannerURL + " target=\"_blank\" >"); // Replace Banner URL } if (hdnFileBannerHasFile.Value.Equals(HASFILE)) //New image was chosen, then do normal replace, else, bring new image { HeaderBannerReplaced = HeaderBannerURLReplaced.Replace(SessionData.Product.SHeaderBannerImg, hdnBanner.Value); } else { HeaderBannerReplaced = HeaderBannerURLReplaced.Replace("<img id=\"imgBanner\" alt=\"\" src=\"Images/" + SessionData.Product.DID + "/" + SessionData.Product.SHeaderBannerImg + "\" style=\"width: 500px; height: 100px;\" />", "<img id=\"imgBanner\" alt=\"\" src=\"Images/" + SessionData.Product.DID + "/" + "Banner" + hdnBanner.Value + "\" style=\"width: 500px; height: 100px;\" />"); //check if canvas settings have changed, if so, need to resize existing image } string ParamAdded = HeaderBannerReplaced.Replace(oldfinalURL, finalURL); string ObjectAdded = ParamAdded.Replace(fixedUrlOld, fixedURL); string DescriptionAdded = ObjectAdded.Replace(oVidShareData.SVideoShareDesc, txtDescription.Text.Trim().Replace("'", "''")); using (CanvasBizProcess canvasBiz = new CanvasBizProcess()) { canvasBiz.UpdatePreviewHTML(DescriptionAdded, SessionData.Customer.CustomerID, SessionData.Product.DID); } varCount++; } else { if (!(string.IsNullOrEmpty(txtBannerURL.Text.Trim()))) //New image was chosen, then do normal replace, else, bring new image //SessionData.Product.SHeaderBannerURL != txtBannerURL.Text { HeaderBannerURLReplaced = createdHTML.Replace(SessionData.Product.SHeaderBannerURL, txtBannerURL.Text); } else { HeaderBannerURLReplaced = createdHTML.Replace(" <a id=\"aHeadBanner\" href=\"\" target=\"_blank\">", "<a id=\"aHeadBanner\" href=" + SessionData.Product.SHeaderBannerURL + " target=\"_blank\" >"); // Replace Banner URL } if (hdnFileBannerHasFile.Value.Equals(HASFILE)) //New image was chosen, then do normal replace, else, bring new image { HeaderBannerReplaced = HeaderBannerURLReplaced.Replace(SessionData.Product.SHeaderBannerImg, hdnBanner.Value); } else { HeaderBannerReplaced = HeaderBannerURLReplaced.Replace("<img id=\"imgBanner\" alt=\"\" src=\"Images/" + SessionData.Product.DID + "/" + SessionData.Product.SHeaderBannerImg + "\" style=\"width: 500px; height: 100px;\" />", "<img id=\"imgBanner\" alt=\"\" src=\"Images/" + SessionData.Product.DID + "/" + "Banner" + hdnBanner.Value + "\" style=\"width: 500px; height: 100px;\" />"); //check if canvas settings have changed, if so, need to resize existing image } string ParamAdded = HeaderBannerReplaced.Replace(oldfinalURL, finalURL); string ObjectAdded = ParamAdded.Replace(fixedUrlOld, fixedURL); string DescriptionAdded = ObjectAdded.Replace(oVidShareData.SVideoShareDesc, txtDescription.Text.Trim().Replace("'", "''")); using (CanvasBizProcess canvasBiz = new CanvasBizProcess()) { canvasBiz.UpdatePreviewHTML(DescriptionAdded, SessionData.Customer.CustomerID, SessionData.Product.DID); } varCount++; } } else { if (!(string.IsNullOrEmpty(txtBannerURL.Text.Trim()))) //New image was chosen, then do normal replace, else, bring new image { HeaderBannerURLReplaced = createdHTML.Replace(SessionData.Product.SHeaderBannerURL, txtBannerURL.Text); } else { HeaderBannerURLReplaced = createdHTML.Replace(" <a id=\"aHeadBanner\" href=\"\" target=\"_blank\">", "<a id=\"aHeadBanner\" href=" + SessionData.Product.SHeaderBannerURL + " target=\"_blank\" >"); // Replace Banner URL } if (hdnFileBannerHasFile.Value.Equals(HASFILE)) //New image was chosen, then do normal replace, else, bring new image { HeaderBannerReplaced = HeaderBannerURLReplaced.Replace(SessionData.Product.SHeaderBannerImg, hdnBanner.Value); } else { HeaderBannerReplaced = HeaderBannerURLReplaced.Replace("<img id=\"imgBanner\" alt=\"\" src=\"Images/" + SessionData.Product.DID + "/" + SessionData.Product.SHeaderBannerImg + "\" style=\"width: 500px; height: 100px;\" />", "<img id=\"imgBanner\" alt=\"\" src=\"Images/" + SessionData.Product.DID + "/" + "Banner" + hdnBanner.Value + "\" style=\"width: 500px; height: 100px;\" />"); //check if canvas settings have changed, if so, need to resize existing image } string ParamAdded = HeaderBannerReplaced.Replace(oldfinalURL, finalURL); string ObjectAdded = ParamAdded.Replace(fixedUrlOld, fixedURL); string DescriptionAdded = ObjectAdded.Replace(oVidShareData.SVideoShareDesc, txtDescription.Text.Trim().Replace("'", "''")); //make all videos play automatically string autoPlayed = DescriptionAdded.Replace("autoplay=0", "autoplay=0"); using (CanvasBizProcess canvasBiz = new CanvasBizProcess()) { canvasBiz.UpdatePreviewHTML(autoPlayed, SessionData.Customer.CustomerID, SessionData.Product.DID); } varCount++; } } else { } } else { } if (hdnFileBannerHasFile.Value.Equals(HASFILE)) { SessionData.Product.SHeaderBannerImg = hdnBanner.Value; } // Add Banner URL if (!(string.IsNullOrEmpty(txtBannerURL.Text.Trim()))) { SessionData.Product.SHeaderBannerURL = txtBannerURL.Text.Trim(); } if (!(SessionData.Config == null)) { if (datepickerStart.Value != "") { SessionData.Config.SAppStartDT = SQLSafeDates(datepickerStart.Value, true); SessionData.Config.AppExpiryDT = SQLSafeDates(datepickerEnd.Value, true); } //Now fill up the Config and get Product data. if (fbBiz.UpdateConfigDetails(SessionData.Config, PROMOTIONS, SessionData.Config.SCustomtTabName)) { ////********If user comes here we know we should set up a Product Info, So, create a row in AppProduct and assign these values to SessionData******** SessionData.Product.AppConfigDID = SessionData.Config.DID; SessionData.Product.ProductName = SessionData.Config.AppName; SessionData.Product.ProductHTML = canv.FetchFinalHTML(SessionData.Product.DID, SessionData.Customer.CustomerID); fbBiz.UpdateProductDetails(SessionData.Product); } } else { //No configs allowed Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "alert(\"Config Not Available. Please Contact HELPDESK.\")", true); } } else { Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "alert(\"You can only create 3 Campaigns with a TRIAL account !\")", true); } HtmlGenericControl fbookShow = new HtmlGenericControl(); fbookShow = (HtmlGenericControl)MainList.FindControl("FacebookDet"); fbookShow.Style.Add("display", "block"); hdnTabStatus.Value = STEP_THREE_COMPLETE; } catch (Exception ex) { commonUtil.SendErrorMail(ex.Message, ex.StackTrace, System.Reflection.MethodBase.GetCurrentMethod().Name.ToString(), System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.ToString(), SessionData.Customer.CustomerID); } }
protected override void OnPreRender(EventArgs e) { try { base.OnPreRender(e); DigiMa.Common.FaceBook oFBUtility = new DigiMa.Common.FaceBook(); if (!IsPostBack) { //Initialize API Core //Call Getfriends call DataTable oFriendsTable = new DataTable("FriendsTable"); DataColumn osoNETID = new DataColumn("soNETID"); oFriendsTable.Columns.Add(osoNETID); DataColumn oImage = new DataColumn("Image"); oFriendsTable.Columns.Add(oImage); DataColumn oName = new DataColumn("Name"); oFriendsTable.Columns.Add(oName); DataColumn oLocation = new DataColumn("Location"); oFriendsTable.Columns.Add(oLocation); DataColumn oGender = new DataColumn("Gender"); oFriendsTable.Columns.Add(oGender); oFriendsTable = oFBUtility.GetFriendsDetail(Convert.ToString(QSVars["user_id"]), Convert.ToString(QSVars["oauth_token"])); if (oFriendsTable != null) { //Get All Locations var distinctLocations = (from row in oFriendsTable.AsEnumerable() select row.Field<string>("Location")).Distinct(); foreach (string val in distinctLocations) { if (val != null) { ddlLocation.Items.Add(new ListItem(val, val)); } } Cache["FriendsDataTable"] = oFriendsTable; //Bind DataSource of repeator control rptAllFriends.DataSource = oFriendsTable; rptAllFriends.DataBind(); } } //Initialize KOKO QSVars.Add("NTYP", "POST"); osonetpie.QSvarsString = GetQsVarsCollection(); osonetpie.AbsolutePath = AbsolutePagePath; //Call Service to load app settings _oDCAppProduct = fbBizProc.GetAppProductDetails(osonetpie, QSVars["PDID"].ToString()); //Bind Post content at runtime if (_oDCAppProduct.DID.Equals("AP006KV63YSPT0ZDHTMD") || _oDCAppProduct.DID.Equals("AP001HC61GZN1739G4V2")) { } else if (_oDCAppProduct.DID.Equals("AP000CH69W22X9KDGZTT") || _oDCAppProduct.DID.Equals("AP001CS762FRSC4BPCV3") || _oDCAppProduct.DID.Equals("AP005S976CL8C85Y2HV5") || _oDCAppProduct.DID.Equals("AP002PX605GMMMG9MQ59")) { } else { } //Perform Post to wall friends & Store notifierDID stat if (this.IsPostBack && _oDCAppProduct != null && AppCustomer != null && AppConfig != null) { } } catch (Exception ex) { commonUtil.SendErrorMail(ex.Message, ex.StackTrace, System.Reflection.MethodBase.GetCurrentMethod().Name.ToString(), System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.ToString(), Convert.ToString(QSVars["UDID"])); } }
private void Page_PreRender(object sender, System.EventArgs e) { SonetPie osonetpie = new SonetPie(); AppUser oDCAppUser = new AppUser(); CanvasBizProcess ocanvBiz = new CanvasBizProcess(); FacebookBizProcess fbBizProc = new FacebookBizProcess(); try { if (Request.Browser.IsMobileDevice == true || Request.UserAgent.ToLower().Contains("iphone") || Request.UserAgent.ToLower().Contains("android") || Request.UserAgent.ToLower().Contains("ipad")) { if (QSVars.Contains("oauth_token") && QSVars.Contains("oauth_token")) { Response.Redirect(NotifyURL + "MobileRedirect.aspx?app_id=" + QSVars["app_id"].ToString() + "&access_tok=" + QSVars["oauth_token"].ToString() + "&user_id=" + QSVars["user_id"], false); } else { Response.Redirect(NotifyURL + "MobileRedirect.aspx?app_id=" + QSVars["app_id"].ToString() + "&access_tok=" + Convert.ToString(Session["oauth_token"]) + "&user_id=" + Convert.ToString(Session["user_id"]), false); } } MainJavaScriptContent.Text = GetInitializedJS(); //NEW VERSION 13-April-2012 //Use the response_type=code to generate the access token if (Request.QueryString.Count == 2) { //close and redirect to SelectPage StringBuilder oSBWindowScript = new StringBuilder(); string pageCaller = "{code:\"" + Convert.ToString(QSVars["code"]) + "\",app_id:\"" + Convert.ToString(QSVars["app_id"]) + "\"}"; oSBWindowScript.Append("window.opener.tabSelection(" + pageCaller + ");"); oSBWindowScript.Append("window.close();"); Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", oSBWindowScript.ToString(), true); Response.Redirect("SelectPage.aspx?app_id=" + Convert.ToString(QSVars["app_id"]) + "&code=" + Convert.ToString(QSVars["code"]), false); } if (Request.QueryString.Count == 1) { osonetpie.QSvarsString = GetQsVarsCollection(); osonetpie.AbsolutePath = AbsolutePagePath; if (QSVars.Count > 6) { oDCAppUser.AppConfigDID = QSVars["ADID"].ToString(); hdnAppConfigD.Value = oDCAppUser.AppConfigDID; oDCAppUser.SonetID = QSVars["user_id"].ToString(); hdnUserID.Value = oDCAppUser.SonetID; hdnAppID.Value = QSVars["app_id"].ToString(); Session["UserID"] = hdnUserID.Value; Session["AppID"] = hdnAppID.Value; Session["ADID"] = oDCAppUser.AppConfigDID; oDCAppUser = ofbBiz.GetAppUser(osonetpie, QSVars["ADID"].ToString(), QSVars["user_id"].ToString()); if (QSVars.Contains("liked")) { if (QSVars["liked"].Equals("true") && !ofbBiz.IsLikeGatewayAdded(QSVars["ADID"].ToString())) // If Already liked show page else Force user to like, iff like gateway was selected { //check if configuration is still good- that means not EXPIRED if (!ofbBiz.IsConfigurationExpired(QSVars["ADID"].ToString())) { //populate the AppProduct encapsulation based on app that is loaded AppProduct oAppProduct = new AppProduct(); FaceBook facebook = new FaceBook(); oAppProduct = ofbBiz.GetActiveAppProduct(osonetpie, QSVars["ADID"].ToString()); litHeadBannerCount.Text = GetHeadBannerURL(oAppProduct.DID); // Get the HTML to be shown //Get Custom Tab name string CustTabNAme = fbBizProc.GetCustomTabName(Session["AppID"].ToString()); //Get Share Button for this Product string CommentBox = GetCommentPlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString(), fbBizProc.GetAppPagePath(Convert.ToString(QSVars["app_id"]))); string ShareButton = GetShareButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString(), CustTabNAme); string InviteButton = GetInviteButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string RecommendButton = GetRecommendButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string LikePlugin = GetLikePlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string EntryFormPlug = GetEntryForm(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["ADID"].ToString(), QSVars["user_id"].ToString()); string LeadPlugin = GetLeadButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string PrintButton = GetPrint(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string EmailButton = GetEmail(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string TwitterButton = GetTwitterShareURL(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string LinkedInButton = "<script src=\"//platform.linkedin.com/in.js\" type=\"text/javascript\"></script><script type=\"IN/Share\" data-counter=\"right\" data-url=\"" + ofbBiz.GetAppPath(Convert.ToString(Request.QueryString["app_id"])) + "\" data-onSuccess=\"LIShare\"></script><script type=\"text/javascript\"> function LIShare() { AsycRequest('" + GetNavigationURL(NotifyURL + "FBNotify.aspx?NTYP=LISHARE&PDID=" + oAppProduct.DID + "&NDID=" + _sNotifierDID, true) + "'); }</script>"; if (!oAppProduct.ProductCategory.Equals("WebHutColl.")) { litHeadBannerCount.Text = GetHeadBannerURL(oAppProduct.DID); // Get the HTML to be shown string HTML = oAppProduct.ProductHTML; //Get Share Button for this Product if (oAppProduct.CommentsWidgetAdded.Equals(TRUE)) { addCOMMENT = HTML.Replace("CommBox", CommentBox); } else { addCOMMENT = HTML.Replace("CommBox", ""); } if (oAppProduct.ShareWidgetAdded.Equals(TRUE)) { addSHARE = addCOMMENT.Replace("ShButton", ShareButton); } else { addSHARE = addCOMMENT.Replace("ShButton", ""); } if (oAppProduct.TwitterWidgetAdded.Equals(TRUE)) { addTwitter = addSHARE.Replace("TwButton", TwitterButton); } else { addTwitter = addSHARE.Replace("TwButton", string.Empty); } if (ocanvBiz.IsConfigForSweepstakes(oAppProduct.AppConfigDID)) { if (oAppProduct.ReccWidgetAdded.Equals(TRUE)) { addPOST = addTwitter.Replace("ReButton", InviteButton); } else { addPOST = addTwitter.Replace("ReButton", ""); } //if HTML contains LIKE addEntry = addPOST.Replace("Entry", EntryFormPlug); if (string.IsNullOrEmpty(oAppProduct.AppCaption)) { addCaption = addEntry.Replace("Caption", ""); } else { addCaption = addEntry.Replace("Caption", oAppProduct.AppCaption); } if (oAppProduct.InquiryWidgetAdded.Equals(TRUE)) { addLead = addCaption.Replace("Lead", LeadPlugin); } else { addLead = addCaption.Replace("Lead", ""); } if (oAppProduct.LikeWidgetAdded.Equals(TRUE)) { addLIKE = addLead.Replace("Like", LikePlugin); } else { addLIKE = addLead.Replace("Like", ""); } litAppHTML.Text = addLIKE; hdnStatus.Value = "HIDE"; apppathLink.Visible = false; } else { if (oAppProduct.ReccWidgetAdded.Equals(TRUE)) { addPOST = addTwitter.Replace("ReButton", RecommendButton); } else { addPOST = addTwitter.Replace("ReButton", ""); } if (oAppProduct.LikeWidgetAdded.Equals(TRUE)) { addLIKE = addPOST.Replace("Like", LikePlugin); } else { addLIKE = addPOST.Replace("Like", ""); } //if HTML contains LIKE addEntry = addLIKE.Replace("Entry", EntryFormPlug); if (oAppProduct.InquiryWidgetAdded.Equals(TRUE)) { addLead = addEntry.Replace("Lead", LeadPlugin); } else { addLead = addEntry.Replace("Lead", ""); } if (string.IsNullOrEmpty(oAppProduct.AppCaption)) { addCaption = addLead.Replace("Caption", ""); } else { addCaption = addLead.Replace("Caption", oAppProduct.AppCaption); } string addPrint = addCaption.Replace("Print", PrintButton); string addEmail = addPrint.Replace("Email", EmailButton); addTwitter = addEmail.Replace("TwButton", TwitterButton); litAppHTML.Text = addEmail; hdnStatus.Value = "HIDE"; apppathLink.Visible = false; } } else { pageToLoad = "index.html"; SiteID = fbBizProc.GetSiteIDForConfig(Convert.ToString(QSVars["ADID"])); SessionData.Config = new AppConfiguration(); SessionData.Config.SSiteID = SiteID; TemplateID = fbBizProc.GetTemplateIDForConfig(Convert.ToString(QSVars["ADID"])); hdnPageToLoad.Value = pageToLoad; StreamReader streamReader = new StreamReader(Server.MapPath("Sites\\Final\\" + SiteID + "\\" + pageToLoad)); string text = streamReader.ReadToEnd(); streamReader.Close(); //check for DirtyPage string Query = "select DirtyPage from Sites where SiteId=" + SiteID; DataSet oDataSet = new DataSet(); SqlHelper.FillDataset(ConfigurationSettings.AppSettings["SoConn"].ToString(), CommandType.Text, Query, oDataSet, new string[] { "SiteDetails" }); string isDirty = Convert.ToString(oDataSet.Tables["SiteDetails"].Rows[0]["DirtyPage"]); if (isDirty.Equals("Y")) { text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_facebook.png\">", ShareButton); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_recommend.png\">", RecommendButton); text = text.Replace("<img class=\"dynamic\" src=\"images/fb-like-button.png\">", LikePlugin); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_twitter.png\">", TwitterButton); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_linkedIn.png\">", LinkedInButton); if (TemplateID == 11) { text = text.Replace("<img class=\"ActionImg\" src=\"images/email.png\">", EmailButton); text = text.Replace("<img class=\"ActionImg\" src=\"images/print.png\">", PrintButton); } } else { text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_facebook.png\" />", ShareButton); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_recommend.png\" />", RecommendButton); text = text.Replace("<img class=\"dynamic\" src=\"images/fb-like-button.png\" />", LikePlugin); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_twitter.png\" />", TwitterButton); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_linkedIn.png\">", LinkedInButton); if (TemplateID == 11) { text = text.Replace("<img class=\"ActionImg\" src=\"Images/email.png\">", EmailButton); text = text.Replace("<img class=\"ActionImg\" src=\"Images/print.png\">", PrintButton); } } //fix all Image tags string imagesReplaced = text.Replace("images", "images1/" + SiteID); String style; if (TemplateID == 12) { style = "/CSS/RStore_style.css"; SessionData.PrefData.TemplateID1 = TemplateID; } else if (TemplateID == 13) { style = "/CSS/FabrikStyle.css"; popupContact.Visible = false; SessionData.PrefData.TemplateID1 = TemplateID; } else if (TemplateID == 11) { style = "/CSS/CouponsStyle.css"; popupContact.Visible = false; SessionData.PrefData.TemplateID1 = TemplateID; } else if (TemplateID == 14) { style = "/CSS/realestate_styles.css"; SessionData.PrefData.TemplateID1 = TemplateID; } else if (TemplateID == 16) { style = "/CSS/Restaurantstyle.css"; SessionData.PrefData.TemplateID1 = TemplateID; } else if (TemplateID == 17) { style = "/CSS/Educationalstyle.css"; SessionData.PrefData.TemplateID1 = TemplateID; } else { style = "/CSS/PFstyle.css"; SessionData.PrefData.TemplateID1 = TemplateID; } //get all the Images, Styles in System.IO.StreamReader StreamReader1 = new System.IO.StreamReader(Server.MapPath("./Sites/Final/" + SiteID + style)); string ReadStyle = StreamReader1.ReadToEnd(); StreamReader1.Close(); if (TemplateID == 14) { HtmlLink linking = Page.FindControl("facebookIDStyleSheet") as HtmlLink; linking.Href = "./Sites/Final/" + SiteID + style; } System.IO.StreamReader StreamReader2 = new System.IO.StreamReader(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); string CleanStyle = StreamReader2.ReadToEnd(); CleanStyle = string.Empty; StreamReader2.Close(); System.IO.StreamWriter StreamWriter2 = new System.IO.StreamWriter(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); StreamWriter2.WriteLine(CleanStyle); StreamWriter2.Close(); System.IO.StreamWriter StreamWriter1 = new System.IO.StreamWriter(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); StreamWriter1.WriteLine(ReadStyle); StreamWriter1.Close(); ////saranya //System.IO.StreamReader sr = new System.IO.StreamReader(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); //String fileContents = sr.ReadToEnd(); //sr.Close(); //System.IO.StreamWriter sw = new System.IO.StreamWriter(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); //fileContents = fileContents.Replace("images", "images1/" + SiteID + ""); //sw.WriteLine(fileContents); //sw.Close(); ///NOW process all the images string imagePath = Server.MapPath("./Sites/Final/" + SiteID + "/Images/"); string[] files = System.IO.Directory.GetFiles(imagePath); if (!Directory.Exists(Server.MapPath("./Images1/" + SiteID))) { Directory.CreateDirectory(Server.MapPath("./Images1/" + SiteID)); } foreach (string file in files) { if (!System.IO.File.Exists(Server.MapPath("./Images1/" + SiteID + "/" + System.IO.Path.GetFileName(file)))) { System.IO.File.Copy(file, System.IO.Path.Combine(Server.MapPath("./Images1/" + SiteID), System.IO.Path.GetFileName(file))); } } LoadComplete = true; litAppHTML.Text = imagesReplaced; if (TemplateID == 13) { litAppHTML.Text = litAppHTML.Text.Replace("<link href=\"CSS/FabrikStyle.css\" rel=\"stylesheet\" type=\"text/css\">", ""); } else if (TemplateID == 11) { litAppHTML.Text = litAppHTML.Text.Replace("<link href=\"CSS/CouponsStyle.css\" rel=\"stylesheet\" type=\"text/css\" />", ""); } backgroundPopup.Visible = false; } } else if (ofbBiz.IsSweepstakesAppModel(QSVars["ADID"].ToString()) == "SWEEPSTAKES") // Check if Sweepstake Appmodal { if (ofbBiz.IsSweepstakesWinnerDay(QSVars["ADID"].ToString()))// Check if Sweepstake Date is today, redirect to Show Winners { Response.Redirect("SweepstakesWinners.aspx?ADID=" + Convert.ToString(QSVars["ADID"]), false); } else { string Enddate = ofbBiz.GetSweepstakesEndDate(QSVars["ADID"].ToString()); if (!string.IsNullOrEmpty(Enddate)) { DateTime sd = DateTime.Parse(Enddate); Enddate = sd.ToString("dd/M/yyyy"); } //litAppHTML.Text = "Sweepstakes Contest is over. Results will be shown on ..."; apppathLink.InnerText = "Sweepstakes Contest is over. Winners will be announced on " + Enddate; popupContact.Style.Add("margin-left", "250px"); } } else { AppExpired.Visible = true; litAppHTML.Text = ""; popupContact.Visible = false; } } else { if (ofbBiz.IsLikeGatewayAdded(QSVars["ADID"].ToString())) { //means app page is liked and now user shud be shown app if (QSVars["liked"].Equals("true")) { if (!ofbBiz.IsConfigurationExpired(QSVars["ADID"].ToString())) { //populate the AppProduct encapsulation based on app that is loaded AppProduct oAppProduct = new AppProduct(); FaceBook facebook = new FaceBook(); oAppProduct = ofbBiz.GetActiveAppProduct(osonetpie, QSVars["ADID"].ToString()); litHeadBannerCount.Text = GetHeadBannerURL(oAppProduct.DID); // Get the HTML to be shown string HTML = oAppProduct.ProductHTML; //Get Custom Tab name string CustTabNAme = fbBizProc.GetCustomTabName(Session["AppID"].ToString()); //Get Share Button for this Product string CommentBox = GetCommentPlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString(), fbBizProc.GetAppPagePath(Convert.ToString(QSVars["app_id"]))); string ShareButton = GetShareButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString(), CustTabNAme); string InviteButton = GetInviteButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string RecommendButton = GetRecommendButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string LikePlugin = GetLikePlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string EntryFormPlug = GetEntryForm(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["ADID"].ToString(), QSVars["user_id"].ToString()); string LeadPlugin = GetLeadButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string PrintButton = GetPrint(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string EmailButton = GetEmail(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string TwitterButton = GetTwitterShareURL(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); if (oAppProduct.CommentsWidgetAdded.Equals(TRUE)) { addCOMMENT = HTML.Replace("CommBox", CommentBox); } else { addCOMMENT = HTML.Replace("CommBox", ""); } if (oAppProduct.ShareWidgetAdded.Equals(TRUE)) { addSHARE = addCOMMENT.Replace("ShButton", ShareButton); } else { addSHARE = addCOMMENT.Replace("ShButton", ""); } if (oAppProduct.TwitterWidgetAdded.Equals(TRUE)) { addTwitter = addSHARE.Replace("TwButton", TwitterButton); } else { addTwitter = addSHARE.Replace("TwButton", string.Empty); } if (ocanvBiz.IsConfigForSweepstakes(oAppProduct.AppConfigDID)) { if (oAppProduct.ReccWidgetAdded.Equals(TRUE)) { addPOST = addTwitter.Replace("ReButton", InviteButton); } else { addPOST = addTwitter.Replace("ReButton", ""); } //if HTML contains LIKE addEntry = addPOST.Replace("Entry", EntryFormPlug); if (string.IsNullOrEmpty(oAppProduct.AppCaption)) { addCaption = addEntry.Replace("Caption", ""); } else { addCaption = addEntry.Replace("Caption", oAppProduct.AppCaption); } if (oAppProduct.InquiryWidgetAdded.Equals(TRUE)) { addLead = addCaption.Replace("Lead", LeadPlugin); } else { addLead = addCaption.Replace("Lead", ""); } if (oAppProduct.LikeWidgetAdded.Equals(TRUE)) { addLIKE = addLead.Replace("Like", LikePlugin); } else { addLIKE = addLead.Replace("Like", ""); } litAppHTML.Text = addLIKE; hdnStatus.Value = "HIDE"; apppathLink.Visible = false; } else { if (oAppProduct.ReccWidgetAdded.Equals(TRUE)) { addPOST = addTwitter.Replace("ReButton", RecommendButton); } else { addPOST = addTwitter.Replace("ReButton", ""); } if (oAppProduct.LikeWidgetAdded.Equals(TRUE)) { addLIKE = addPOST.Replace("Like", LikePlugin); } else { addLIKE = addPOST.Replace("Like", ""); } if (oAppProduct.InquiryWidgetAdded.Equals(TRUE)) { addLead = addLIKE.Replace("Lead", LeadPlugin); } else { addLead = addLIKE.Replace("Lead", ""); } if (string.IsNullOrEmpty(oAppProduct.AppCaption)) { addCaption = addLead.Replace("Caption", ""); } else { addCaption = addLead.Replace("Caption", oAppProduct.AppCaption); } string addPrint = addCaption.Replace("Print", PrintButton); string addEmail = addPrint.Replace("Email", EmailButton); litAppHTML.Text = addEmail; hdnStatus.Value = "HIDE"; apppathLink.Visible = false; } } else if (ofbBiz.IsSweepstakesAppModel(QSVars["ADID"].ToString()) == "SWEEPSTAKES") // Check if Sweepstake Appmodal { if (ofbBiz.IsSweepstakesWinnerDay(QSVars["ADID"].ToString()))// Check if Sweepstake Date is today, redirect to Show Winners { Response.Redirect("SweepstakesWinners.aspx?ADID=" + Convert.ToString(QSVars["ADID"]), false); } else { string Enddate = ofbBiz.GetSweepstakesEndDate(QSVars["ADID"].ToString()); if (!string.IsNullOrEmpty(Enddate)) { DateTime sd = DateTime.Parse(Enddate); Enddate = sd.ToString("dd/M/yyyy"); } //litAppHTML.Text = "Sweepstakes Contest is over. Results will be shown on ..."; apppathLink.InnerText = "Sweepstakes Contest is over. Winners will be announced on " + Enddate; popupContact.Style.Add("margin-left", "250px"); } } else { AppExpired.Visible = true; litAppHTML.Text = ""; popupContact.Visible = false; } } else { if (!QSVars["admin"].Equals("true")) { litAppHTML.Text = " <img id=\"imgLGateway\" src=\"Images/like_us_to_proceed.jpg\"/>"; popupContact.Visible = false; backgroundPopup.Visible = false; } else { if (!ofbBiz.IsConfigurationExpired(QSVars["ADID"].ToString())) { //populate the AppProduct encapsulation based on app that is loaded AppProduct oAppProduct = new AppProduct(); FaceBook facebook = new FaceBook(); oAppProduct = ofbBiz.GetActiveAppProduct(osonetpie, QSVars["ADID"].ToString()); litHeadBannerCount.Text = GetHeadBannerURL(oAppProduct.DID); // Get the HTML to be shown string HTML = oAppProduct.ProductHTML; //Get Custom Tab name string CustTabNAme = fbBizProc.GetCustomTabName(Session["AppID"].ToString()); //Get Share Button for this Product string CommentBox = GetCommentPlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString(), fbBizProc.GetAppPagePath(Convert.ToString(QSVars["app_id"]))); string ShareButton = GetShareButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString(), CustTabNAme); string InviteButton = GetInviteButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string RecommendButton = GetRecommendButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string LikePlugin = GetLikePlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string EntryFormPlug = GetEntryForm(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["ADID"].ToString(), QSVars["user_id"].ToString()); string LeadPlugin = GetLeadButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string PrintButton = GetPrint(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string EmailButton = GetEmail(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string TwitterButton = GetTwitterShareURL(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); if (oAppProduct.CommentsWidgetAdded.Equals(TRUE)) { addCOMMENT = HTML.Replace("CommBox", CommentBox); } else { addCOMMENT = HTML.Replace("CommBox", ""); } if (oAppProduct.ShareWidgetAdded.Equals(TRUE)) { addSHARE = addCOMMENT.Replace("ShButton", ShareButton); } else { addSHARE = addCOMMENT.Replace("ShButton", ""); } if (oAppProduct.TwitterWidgetAdded.Equals(TRUE)) { addTwitter = addSHARE.Replace("TwButton", TwitterButton); } else { addTwitter = addSHARE.Replace("TwButton", string.Empty); } if (ocanvBiz.IsConfigForSweepstakes(oAppProduct.AppConfigDID)) { if (oAppProduct.ReccWidgetAdded.Equals(TRUE)) { addPOST = addTwitter.Replace("ReButton", InviteButton); } else { addPOST = addTwitter.Replace("ReButton", ""); } //if HTML contains LIKE addEntry = addPOST.Replace("Entry", EntryFormPlug); if (string.IsNullOrEmpty(oAppProduct.AppCaption)) { addCaption = addEntry.Replace("Caption", ""); } else { addCaption = addEntry.Replace("Caption", oAppProduct.AppCaption); } if (oAppProduct.InquiryWidgetAdded.Equals(TRUE)) { addLead = addCaption.Replace("Lead", LeadPlugin); } else { addLead = addCaption.Replace("Lead", ""); } if (oAppProduct.LikeWidgetAdded.Equals(TRUE)) { addLIKE = addLead.Replace("Like", LikePlugin); } else { addLIKE = addLead.Replace("Like", ""); } litAppHTML.Text = addLIKE; hdnStatus.Value = "HIDE"; apppathLink.Visible = false; } else { if (oAppProduct.ReccWidgetAdded.Equals(TRUE)) { addPOST = addTwitter.Replace("ReButton", RecommendButton); } else { addPOST = addTwitter.Replace("ReButton", ""); } if (oAppProduct.LikeWidgetAdded.Equals(TRUE)) { addLIKE = addPOST.Replace("Like", LikePlugin); } else { addLIKE = addPOST.Replace("Like", ""); } if (oAppProduct.InquiryWidgetAdded.Equals(TRUE)) { addLead = addLIKE.Replace("Lead", LeadPlugin); } else { addLead = addLIKE.Replace("Lead", ""); } if (string.IsNullOrEmpty(oAppProduct.AppCaption)) { addCaption = addLead.Replace("Caption", ""); } else { addCaption = addLead.Replace("Caption", oAppProduct.AppCaption); } string addPrint = addCaption.Replace("Print", PrintButton); string addEmail = addPrint.Replace("Email", EmailButton); litAppHTML.Text = addEmail; hdnStatus.Value = "HIDE"; apppathLink.Visible = false; } } else if (ofbBiz.IsSweepstakesAppModel(QSVars["ADID"].ToString()) == "SWEEPSTAKES") // Check if Sweepstake Appmodal { if (ofbBiz.IsSweepstakesWinnerDay(QSVars["ADID"].ToString()))// Check if Sweepstake Date is today, redirect to Show Winners { Response.Redirect("SweepstakesWinners.aspx?ADID=" + Convert.ToString(QSVars["ADID"]), false); } else { string Enddate = ofbBiz.GetSweepstakesEndDate(QSVars["ADID"].ToString()); if (!string.IsNullOrEmpty(Enddate)) { DateTime sd = DateTime.Parse(Enddate); Enddate = sd.ToString("dd/M/yyyy"); } //litAppHTML.Text = "Sweepstakes Contest is over. Results will be shown on ..."; apppathLink.InnerText = "Sweepstakes Contest is over. Winners will be announced on " + Enddate; popupContact.Style.Add("margin-left", "250px"); } } else { AppExpired.Visible = true; litAppHTML.Text = ""; popupContact.Visible = false; } } } } else { if (!ofbBiz.IsConfigurationExpired(QSVars["ADID"].ToString())) { //populate the AppProduct encapsulation based on app that is loaded AppProduct oAppProduct = new AppProduct(); oAppProduct.DID = ofbBiz.GetProductDID(Convert.ToString(QSVars["ADID"])); FaceBook facebook = new FaceBook(); //Get Custom Tab name string CustTabNAme = fbBizProc.GetCustomTabName(Session["AppID"].ToString()); string CommentBox = GetCommentPlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString(), fbBizProc.GetAppPagePath(Convert.ToString(QSVars["app_id"]))); string ShareButton = GetShareButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString(), CustTabNAme); string InviteButton = GetInviteButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string RecommendButton = GetRecommendButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string LikePlugin = GetLikePlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string EntryFormPlug = GetEntryForm(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["ADID"].ToString(), QSVars["user_id"].ToString()); string LeadPlugin = GetLeadButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string PrintButton = GetPrint(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string EmailButton = GetEmail(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string TwitterButton = GetTwitterShareURL(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string LinkedInButton = "<script src=\"//platform.linkedin.com/in.js\" type=\"text/javascript\"></script><script type=\"IN/Share\" data-url=\"" + ofbBiz.GetAppPath(Convert.ToString(Request.QueryString["app_id"])) + "\" data-onSuccess=\"LIShare\"></script><script type=\"text/javascript\"> function LIShare() { AsycRequest('" + GetNavigationURL(NotifyURL + "FBNotify.aspx?NTYP=LISHARE&PDID=" + oAppProduct.DID + "&NDID=" + _sNotifierDID, true) + "'); }</script>"; oAppProduct = ofbBiz.GetActiveAppProduct(osonetpie, QSVars["ADID"].ToString()); if (!oAppProduct.ProductCategory.Equals("WebHutColl.")) { litHeadBannerCount.Text = GetHeadBannerURL(oAppProduct.DID); // Get the HTML to be shown string HTML = oAppProduct.ProductHTML; //Get Share Button for this Product if (oAppProduct.CommentsWidgetAdded.Equals(TRUE)) { addCOMMENT = HTML.Replace("CommBox", CommentBox); } else { addCOMMENT = HTML.Replace("CommBox", ""); } if (oAppProduct.ShareWidgetAdded.Equals(TRUE)) { addSHARE = addCOMMENT.Replace("ShButton", ShareButton); } else { addSHARE = addCOMMENT.Replace("ShButton", ""); } if (oAppProduct.TwitterWidgetAdded.Equals(TRUE)) { addTwitter = addSHARE.Replace("TwButton", TwitterButton); } else { addTwitter = addSHARE.Replace("TwButton", string.Empty); } if (ocanvBiz.IsConfigForSweepstakes(oAppProduct.AppConfigDID)) { if (oAppProduct.ReccWidgetAdded.Equals(TRUE)) { addPOST = addTwitter.Replace("ReButton", InviteButton); } else { addPOST = addTwitter.Replace("ReButton", ""); } //if HTML contains LIKE addEntry = addPOST.Replace("Entry", EntryFormPlug); if (string.IsNullOrEmpty(oAppProduct.AppCaption)) { addCaption = addEntry.Replace("Caption", ""); } else { addCaption = addEntry.Replace("Caption", oAppProduct.AppCaption); } if (oAppProduct.InquiryWidgetAdded.Equals(TRUE)) { addLead = addCaption.Replace("Lead", LeadPlugin); } else { addLead = addCaption.Replace("Lead", ""); } if (oAppProduct.LikeWidgetAdded.Equals(TRUE)) { addLIKE = addLead.Replace("Like", LikePlugin); } else { addLIKE = addLead.Replace("Like", ""); } litAppHTML.Text = addLIKE; hdnStatus.Value = "HIDE"; apppathLink.Visible = false; } else { if (oAppProduct.ReccWidgetAdded.Equals(TRUE)) { addPOST = addTwitter.Replace("ReButton", RecommendButton); } else { addPOST = addTwitter.Replace("ReButton", ""); } if (oAppProduct.LikeWidgetAdded.Equals(TRUE)) { addLIKE = addPOST.Replace("Like", LikePlugin); } else { addLIKE = addPOST.Replace("Like", ""); } //if HTML contains LIKE addEntry = addLIKE.Replace("Entry", EntryFormPlug); if (oAppProduct.InquiryWidgetAdded.Equals(TRUE)) { addLead = addEntry.Replace("Lead", LeadPlugin); } else { addLead = addEntry.Replace("Lead", ""); } if (string.IsNullOrEmpty(oAppProduct.AppCaption)) { addCaption = addLead.Replace("Caption", ""); } else { addCaption = addLead.Replace("Caption", oAppProduct.AppCaption); } string addPrint = addCaption.Replace("Print", PrintButton); string addEmail = addPrint.Replace("Email", EmailButton); addTwitter = addEmail.Replace("TwButton", TwitterButton); litAppHTML.Text = addEmail; hdnStatus.Value = "HIDE"; apppathLink.Visible = false; } } else { pageToLoad = "index.html"; SiteID = fbBizProc.GetSiteIDForConfig(Convert.ToString(QSVars["ADID"])); SessionData.Config = new AppConfiguration(); SessionData.Config.SSiteID = SiteID; TemplateID = fbBizProc.GetTemplateIDForConfig(Convert.ToString(QSVars["ADID"])); hdnPageToLoad.Value = pageToLoad; StreamReader streamReader = new StreamReader(Server.MapPath("Sites\\Final\\" + SiteID + "\\" + pageToLoad)); string text = streamReader.ReadToEnd(); streamReader.Close(); //check for DirtyPage string Query = "select DirtyPage from Sites where SiteId=" + SiteID; DataSet oDataSet = new DataSet(); SqlHelper.FillDataset(ConfigurationSettings.AppSettings["SoConn"].ToString(), CommandType.Text, Query, oDataSet, new string[] { "SiteDetails" }); string isDirty = Convert.ToString(oDataSet.Tables["SiteDetails"].Rows[0]["DirtyPage"]); if (isDirty.Equals("Y")) { text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_facebook.png\">", ShareButton); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_recommend.png\">", RecommendButton); text = text.Replace("<img class=\"dynamic\" src=\"images/fb-like-button.png\">", LikePlugin); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_twitter.png\">", TwitterButton); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_linkedIn.png\">", LinkedInButton); if (TemplateID == 11) { text = text.Replace("<img class=\"ActionImg\" src=\"images/email.png\">", EmailButton); text = text.Replace("<img class=\"ActionImg\" src=\"images/print.png\">", PrintButton); } } else { text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_facebook.png\" />", ShareButton); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_recommend.png\" />", RecommendButton); text = text.Replace("<img class=\"dynamic\" src=\"images/fb-like-button.png\" />", LikePlugin); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_twitter.png\" />", TwitterButton); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_linkedIn.png\" />", LinkedInButton); if (TemplateID == 11) { text = text.Replace("<img class=\"ActionImg\" src=\"Images/email.png\">", EmailButton); text = text.Replace("<img class=\"ActionImg\" src=\"Images/print.png\">", PrintButton); } } //fix all Image tags string imagesReplaced = text.Replace("images", "images1/" + SiteID); String style; if (TemplateID == 12) { style = "/CSS/RStore_style.css"; SessionData.PrefData.TemplateID1 = TemplateID; } else if (TemplateID == 13) { style = "/CSS/FabrikStyle.css"; popupContact.Visible = false; SessionData.PrefData.TemplateID1 = TemplateID; } else if (TemplateID == 11) { style = "/CSS/CouponsStyle.css"; popupContact.Visible = false; SessionData.PrefData.TemplateID1 = TemplateID; } else if (TemplateID == 14) { style = "/css/realestate_styles.css"; SessionData.PrefData.TemplateID1 = TemplateID; } else if (TemplateID == 16) { style = "/CSS/Restaurantstyle.css"; SessionData.PrefData.TemplateID1 = TemplateID; } else if (TemplateID == 17) { style = "/CSS/Educationalstyle.css"; SessionData.PrefData.TemplateID1 = TemplateID; } else { style = "/css/PFstyle.css"; SessionData.PrefData.TemplateID1 = TemplateID; } //get all the Images, Styles in System.IO.StreamReader StreamReader1 = new System.IO.StreamReader(Server.MapPath("./Sites/Final/" + SiteID + style)); string ReadStyle = StreamReader1.ReadToEnd(); StreamReader1.Close(); if (TemplateID == 14) { HtmlLink linking = Page.FindControl("facebookIDStyleSheet") as HtmlLink; linking.Href = "./Sites/Final/" + SiteID + style; } System.IO.StreamReader StreamReader2 = new System.IO.StreamReader(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); string CleanStyle = StreamReader2.ReadToEnd(); CleanStyle = string.Empty; StreamReader2.Close(); System.IO.StreamWriter StreamWriter2 = new System.IO.StreamWriter(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); StreamWriter2.WriteLine(CleanStyle); StreamWriter2.Close(); System.IO.StreamWriter StreamWriter1 = new System.IO.StreamWriter(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); StreamWriter1.WriteLine(ReadStyle); StreamWriter1.Close(); ////saranya //System.IO.StreamReader sr = new System.IO.StreamReader(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); //String fileContents = sr.ReadToEnd(); //sr.Close(); //System.IO.StreamWriter sw = new System.IO.StreamWriter(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); //fileContents = fileContents.Replace("images", "images1/" + SiteID + ""); //sw.WriteLine(fileContents); //sw.Close(); ///NOW process all the images string imagePath = Server.MapPath("./Sites/Final/" + SiteID + "/Images/"); string[] files = System.IO.Directory.GetFiles(imagePath); if (!Directory.Exists(Server.MapPath("./Images1/" + SiteID))) { Directory.CreateDirectory(Server.MapPath("./Images1/" + SiteID)); } foreach (string file in files) { if (!System.IO.File.Exists(Server.MapPath("./Images1/" + SiteID + "/" + System.IO.Path.GetFileName(file)))) { System.IO.File.Copy(file, System.IO.Path.Combine(Server.MapPath("./Images1/" + SiteID), System.IO.Path.GetFileName(file))); } } LoadComplete = true; litAppHTML.Text = imagesReplaced; if (TemplateID == 13) { litAppHTML.Text = litAppHTML.Text.Replace("<link href=\"CSS/FabrikStyle.css\" rel=\"stylesheet\" type=\"text/css\">", ""); } else if (TemplateID == 11) { litAppHTML.Text = litAppHTML.Text.Replace("<link href=\"CSS/CouponsStyle.css\" rel=\"stylesheet\" type=\"text/css\" />", ""); } backgroundPopup.Visible = false; } } else if (ofbBiz.IsSweepstakesAppModel(QSVars["ADID"].ToString()) == "SWEEPSTAKES") // Check if Sweepstake CampaignType { if (ofbBiz.IsSweepstakesWinnerDay(QSVars["ADID"].ToString()))// Check if Sweepstake Date is today, redirect to Show Winners { Response.Redirect("SweepstakesWinners.aspx?ADID=" + Convert.ToString(QSVars["ADID"]), false); } else { string Enddate = ofbBiz.GetSweepstakesEndDate(QSVars["ADID"].ToString()); if (!string.IsNullOrEmpty(Enddate)) { DateTime sd = DateTime.Parse(Enddate); Enddate = sd.ToString("dd/M/yyyy"); } //litAppHTML.Text = "Sweepstakes Contest is over. Results will be shown on ..."; apppathLink.InnerText = "Sweepstakes Contest is over. Winners will be announced on " + Enddate; popupContact.Style.Add("margin-left", "250px"); } } else { AppExpired.Visible = true; litAppHTML.Text = ""; popupContact.Visible = false; } } } } else { if (!ofbBiz.IsConfigurationExpired(QSVars["ADID"].ToString())) { //populate the AppProduct encapsulation based on app that is loaded AppProduct oAppProduct = new AppProduct(); FaceBook facebook = new FaceBook(); //Get Custom Tab name string CustTabNAme = fbBizProc.GetCustomTabName(Session["AppID"].ToString()); string CommentBox = GetCommentPlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString(), fbBizProc.GetAppPagePath(Convert.ToString(QSVars["app_id"]))); string ShareButton = GetShareButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString(), CustTabNAme); string InviteButton = GetInviteButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string RecommendButton = GetRecommendButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string LikePlugin = GetLikePlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string EntryFormPlug = GetEntryForm(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["ADID"].ToString(), QSVars["user_id"].ToString()); string LeadPlugin = GetLeadButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string PrintButton = GetPrint(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string EmailButton = GetEmail(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string TwitterButton = GetTwitterShareURL(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string LinkedInButton = "<script src=\"//platform.linkedin.com/in.js\" type=\"text/javascript\"></script><script type=\"IN/Share\" data-counter=\"right\" data-url=\"" + ofbBiz.GetAppPath(Convert.ToString(Request.QueryString["app_id"])) + "\" data-onSuccess=\"LIShare\"></script><script type=\"text/javascript\"> function LIShare() { AsycRequest('" + GetNavigationURL(NotifyURL + "FBNotify.aspx?NTYP=LISHARE&PDID=" + oAppProduct.DID + "&NDID=" + _sNotifierDID, true) + "'); }</script>"; oAppProduct = ofbBiz.GetActiveAppProduct(osonetpie, QSVars["ADID"].ToString()); if (!oAppProduct.ProductCategory.Equals("WebHutColl.")) { litHeadBannerCount.Text = GetHeadBannerURL(oAppProduct.DID); // Get the HTML to be shown string HTML = oAppProduct.ProductHTML; //Get Share Button for this Product if (oAppProduct.CommentsWidgetAdded.Equals(TRUE)) { addCOMMENT = HTML.Replace("CommBox", CommentBox); } else { addCOMMENT = HTML.Replace("CommBox", ""); } if (oAppProduct.ShareWidgetAdded.Equals(TRUE)) { addSHARE = addCOMMENT.Replace("ShButton", ShareButton); } else { addSHARE = addCOMMENT.Replace("ShButton", ""); } if (oAppProduct.TwitterWidgetAdded.Equals(TRUE)) { addTwitter = addSHARE.Replace("TwButton", TwitterButton); } else { addTwitter = addSHARE.Replace("TwButton", string.Empty); } if (ocanvBiz.IsConfigForSweepstakes(oAppProduct.AppConfigDID)) { if (oAppProduct.ReccWidgetAdded.Equals(TRUE)) { addPOST = addTwitter.Replace("ReButton", InviteButton); } else { addPOST = addTwitter.Replace("ReButton", ""); } //if HTML contains LIKE addEntry = addPOST.Replace("Entry", EntryFormPlug); if (string.IsNullOrEmpty(oAppProduct.AppCaption)) { addCaption = addEntry.Replace("Caption", ""); } else { addCaption = addEntry.Replace("Caption", oAppProduct.AppCaption); } if (oAppProduct.InquiryWidgetAdded.Equals(TRUE)) { addLead = addCaption.Replace("Lead", LeadPlugin); } else { addLead = addCaption.Replace("Lead", ""); } if (oAppProduct.LikeWidgetAdded.Equals(TRUE)) { addLIKE = addLead.Replace("Like", LikePlugin); } else { addLIKE = addLead.Replace("Like", ""); } litAppHTML.Text = addLIKE; hdnStatus.Value = "HIDE"; apppathLink.Visible = false; } else { if (oAppProduct.ReccWidgetAdded.Equals(TRUE)) { addPOST = addTwitter.Replace("ReButton", RecommendButton); } else { addPOST = addTwitter.Replace("ReButton", ""); } if (oAppProduct.LikeWidgetAdded.Equals(TRUE)) { addLIKE = addPOST.Replace("Like", LikePlugin); } else { addLIKE = addPOST.Replace("Like", ""); } //if HTML contains LIKE addEntry = addLIKE.Replace("Entry", EntryFormPlug); if (oAppProduct.InquiryWidgetAdded.Equals(TRUE)) { addLead = addEntry.Replace("Lead", LeadPlugin); } else { addLead = addEntry.Replace("Lead", ""); } if (string.IsNullOrEmpty(oAppProduct.AppCaption)) { addCaption = addLead.Replace("Caption", ""); } else { addCaption = addLead.Replace("Caption", oAppProduct.AppCaption); } string addPrint = addCaption.Replace("Print", PrintButton); string addEmail = addPrint.Replace("Email", EmailButton); addTwitter = addEmail.Replace("TwButton", TwitterButton); litAppHTML.Text = addEmail; hdnStatus.Value = "HIDE"; apppathLink.Visible = false; } } else { pageToLoad = "index.html"; SiteID = fbBizProc.GetSiteIDForConfig(Convert.ToString(QSVars["ADID"])); SessionData.Config = new AppConfiguration(); SessionData.Config.SSiteID = SiteID; TemplateID = fbBizProc.GetTemplateIDForConfig(Convert.ToString(QSVars["ADID"])); hdnPageToLoad.Value = pageToLoad; StreamReader streamReader = new StreamReader(Server.MapPath("Sites\\Final\\" + SiteID + "\\" + pageToLoad)); string text = streamReader.ReadToEnd(); streamReader.Close(); //check for DirtyPage string Query = "select DirtyPage from Sites where SiteId=" + SiteID; DataSet oDataSet = new DataSet(); SqlHelper.FillDataset(ConfigurationSettings.AppSettings["SoConn"].ToString(), CommandType.Text, Query, oDataSet, new string[] { "SiteDetails" }); string isDirty = Convert.ToString(oDataSet.Tables["SiteDetails"].Rows[0]["DirtyPage"]); if (isDirty.Equals("Y")) { text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_facebook.png\">", ShareButton); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_recommend.png\">", RecommendButton); text = text.Replace("<img class=\"dynamic\" src=\"images/fb-like-button.png\">", LikePlugin); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_twitter.png\">", TwitterButton); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_linkedIn.png\">", LinkedInButton); if (TemplateID == 11) { text = text.Replace("<img class=\"ActionImg\" src=\"images/email.png\">", EmailButton); text = text.Replace("<img class=\"ActionImg\" src=\"images/email.png\">", PrintButton); } } else { text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_facebook.png\" />", ShareButton); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_recommend.png\" />", RecommendButton); text = text.Replace("<img class=\"dynamic\" src=\"images/fb-like-button.png\" />", LikePlugin); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_twitter.png\" />", TwitterButton); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_linkedIn.png\">", LinkedInButton); if (TemplateID == 11) { text = text.Replace("<img class=\"ActionImg\" src=\"images/email.png\">", EmailButton); text = text.Replace("<img class=\"ActionImg\" src=\"images/email.png\">", PrintButton); } } //fix all Image tags string imagesReplaced = text.Replace("images", "images1/" + SiteID); String style; if (TemplateID == 12) { style = "/CSS/RStore_style.css"; } else if (TemplateID == 13) { style = "/CSS/FabrikStyle.css"; popupContact.Visible = false; } else if (TemplateID == 11) { style = "/CSS/CouponsStyle.css"; popupContact.Visible = false; } else if (TemplateID == 16) { style = "/CSS/Restaurantstyle.css"; SessionData.PrefData.TemplateID1 = TemplateID; } else if (TemplateID == 17) { style = "/CSS/Educationalstyle.css"; SessionData.PrefData.TemplateID1 = TemplateID; } else { style = "/CSS/realestate_styles.css"; } //get all the Images, Styles in System.IO.StreamReader StreamReader1 = new System.IO.StreamReader(Server.MapPath("./Sites/Final/" + SiteID + style)); string ReadStyle = StreamReader1.ReadToEnd(); StreamReader1.Close(); if (TemplateID == 14) { HtmlLink linking = Page.FindControl("facebookIDStyleSheet") as HtmlLink; linking.Href = "./Sites/Final/" + SiteID + style; } System.IO.StreamReader StreamReader2 = new System.IO.StreamReader(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); string CleanStyle = StreamReader2.ReadToEnd(); CleanStyle = string.Empty; StreamReader2.Close(); System.IO.StreamWriter StreamWriter2 = new System.IO.StreamWriter(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); StreamWriter2.WriteLine(CleanStyle); StreamWriter2.Close(); System.IO.StreamWriter StreamWriter1 = new System.IO.StreamWriter(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); StreamWriter1.WriteLine(ReadStyle); StreamWriter1.Close(); //saranya System.IO.StreamReader sr = new System.IO.StreamReader(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); String fileContents = sr.ReadToEnd(); sr.Close(); System.IO.StreamWriter sw = new System.IO.StreamWriter(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); fileContents = fileContents.Replace("images", "images1/" + SiteID + ""); sw.WriteLine(fileContents); sw.Close(); ///NOW process all the images string imagePath = Server.MapPath("./Sites/Final/" + SiteID + "/Images/"); string[] files = System.IO.Directory.GetFiles(imagePath); if (!Directory.Exists(Server.MapPath("./Images1/" + SiteID))) { Directory.CreateDirectory(Server.MapPath("./Images1/" + SiteID)); } foreach (string file in files) { if (!System.IO.File.Exists(Server.MapPath("./Images1/" + SiteID + "/" + System.IO.Path.GetFileName(file)))) { System.IO.File.Copy(file, System.IO.Path.Combine(Server.MapPath("./Images1/" + SiteID), System.IO.Path.GetFileName(file))); } } LoadComplete = true; litAppHTML.Text = imagesReplaced; litAppHTML.Text = litAppHTML.Text.Replace("<link href=\"CSS/FabrikStyle.css\" rel=\"stylesheet\" type=\"text/css\">", ""); //litAppHTML.Text = litAppHTML.Text.Replace("<link href=\"css/realestate_styles.css\" rel=\"stylesheet\" type=\"text/css\">", ""); backgroundPopup.Visible = false; } } else if (ofbBiz.IsSweepstakesAppModel(QSVars["ADID"].ToString()) == "SWEEPSTAKES") // Check if Sweepstake CampaignType { if (ofbBiz.IsSweepstakesWinnerDay(QSVars["ADID"].ToString()))// Check if Sweepstake Date is today, redirect to Show Winners { Response.Redirect("SweepstakesWinners.aspx?ADID=" + Convert.ToString(QSVars["ADID"]), false); } else { string Enddate = ofbBiz.GetSweepstakesEndDate(QSVars["ADID"].ToString()); if (!string.IsNullOrEmpty(Enddate)) { DateTime sd = DateTime.Parse(Enddate); Enddate = sd.ToString("dd/M/yyyy"); } //litAppHTML.Text = "Sweepstakes Contest is over. Results will be shown on ..."; apppathLink.InnerText = "Sweepstakes Contest is over. Winners will be announced on " + Enddate; popupContact.Style.Add("margin-left", "250px"); } } else { AppExpired.Visible = true; litAppHTML.Text = ""; popupContact.Visible = false; } } } else { oDCAppUser.AppConfigDID = Session["ADID"].ToString(); hdnAppConfigD.Value = oDCAppUser.AppConfigDID; oDCAppUser.SonetID = Session["UserID"].ToString(); hdnUserID.Value = oDCAppUser.SonetID; hdnAppID.Value = Session["AppID"].ToString(); Session["UserID"] = hdnUserID.Value; Session["AppID"] = hdnAppID.Value; oDCAppUser = ofbBiz.GetAppUser(osonetpie, Session["ADID"].ToString(), Session["UserID"].ToString()); //populate the AppProduct encapsulation based on app that is loaded AppProduct oAppProduct = new AppProduct(); FaceBook facebook = new FaceBook(); oAppProduct = ofbBiz.GetActiveAppProduct(osonetpie, Session["ADID"].ToString()); litHeadBannerCount.Text = GetHeadBannerURL(oAppProduct.DID); // Get the HTML to be shown string HTML = oAppProduct.ProductHTML; // Fill up Config and Custome //Get Custom Tab name string CustTabNAme = fbBizProc.GetCustomTabName(Session["AppID"].ToString()); //Get Share Button for this Product string CommentBox = GetCommentPlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString(), fbBizProc.GetAppPagePath(Convert.ToString(QSVars["app_id"]))); string ShareButton = GetShareButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, Session["AppID"].ToString(), CustTabNAme); string InviteButton = GetInviteButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, Session["AppID"].ToString()); string RecommendButton = GetRecommendButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, Session["AppID"].ToString()); string LikePlugin = GetLikePlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, Session["AppID"].ToString()); string EntryFormPlug = GetEntryForm(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, Session["ADID"].ToString(), Session["UserID"].ToString().ToString()); string LeadPlugin = GetLeadButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); string TwitterButton = GetTwitterShareURL(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["app_id"].ToString()); //if HTML contains SHARE and Widgets are present if (oAppProduct.CommentsWidgetAdded.Equals(TRUE)) { addCOMMENT = HTML.Replace("CommBox", CommentBox); } else { addCOMMENT = HTML.Replace("CommBox", ""); } if (oAppProduct.ShareWidgetAdded.Equals(TRUE)) { addSHARE = addCOMMENT.Replace("ShButton", ShareButton); } else { addSHARE = addCOMMENT.Replace("ShButton", ""); } if (oAppProduct.TwitterWidgetAdded.Equals(TRUE)) { addTwitter = addSHARE.Replace("TwButton", TwitterButton); } else { addTwitter = addSHARE.Replace("TwButton", string.Empty); } if (ocanvBiz.IsConfigForSweepstakes(oAppProduct.AppConfigDID)) { if (oAppProduct.ReccWidgetAdded.Equals(TRUE)) { addPOST = addTwitter.Replace("ReButton", InviteButton); } else { addPOST = addTwitter.Replace("ReButton", ""); } //if HTML contains LIKE addEntry = addPOST.Replace("Like", EntryFormPlug); litAppHTML.Text = addEntry; hdnStatus.Value = "HIDE"; apppathLink.Visible = false; } else { if (oAppProduct.ReccWidgetAdded.Equals(TRUE)) { addPOST = addTwitter.Replace("ReButton", InviteButton); } else { addPOST = addTwitter.Replace("ReButton", ""); } if (oAppProduct.LikeWidgetAdded.Equals(TRUE)) { addLIKE = addPOST.Replace("Like", LikePlugin); } else { addLIKE = addPOST.Replace("Like", ""); } if (oAppProduct.InquiryWidgetAdded.Equals(TRUE)) { addLead = addLIKE.Replace("Lead", LeadPlugin); } else { addLead = addLIKE.Replace("Lead", ""); } litAppHTML.Text = addLead; hdnStatus.Value = "HIDE"; apppathLink.Visible = false; } } } else if (Request.QueryString.AllKeys.Contains("request_ids")) { apppathLink.HRef = fbBizProc.GetAppPagePath(Convert.ToString(QSVars["app_id"])); Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "window.parent.location.href='" + apppathLink.HRef.ToString() + "'", true); } else { //Nothing to load , show error screen if (QSVars["app_id"] == null) { Server.Transfer("Error.aspx"); } else { apppathLink.HRef = fbBizProc.GetAppPagePath(Convert.ToString(QSVars["app_id"])); if (QSVars.Contains("soNETSrc")) { if (!(Convert.ToString(QSVars["soNETSrc"].ToString()).Equals("NULL"))) { Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "window.parent.close();", true); } else { Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "window.parent.location.href='" + apppathLink.HRef.ToString() + "'", true); } } } if (Request.Url.Query.Contains("fb_source")) { Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "window.parent.location.href='" + apppathLink.HRef.ToString() + "'", true); } } //saranya if (Request.QueryString.AllKeys.Contains("request_ids")) { apppathLink.HRef = fbBizProc.GetAppPagePath(Convert.ToString(QSVars["app_id"])); Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "window.parent.location.href='" + apppathLink.HRef.ToString() + "'", true); } } catch (Exception ex) { CommonUtility commUtil = new CommonUtility(); commUtil.SendErrorMail(ex.Message, ex.StackTrace, System.Reflection.MethodBase.GetCurrentMethod().Name.ToString(), System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.ToString(), SessionData.Customer.CustomerID); } }
protected void btnPublish_Click(object sender, EventArgs e) { try { //SessionData.Config = new AppConfiguration(); if (SessionData.PrefData.TaskTwo1.Equals(MICROSITE)) { CopyToMicrosites(SessionData.UserAction.SiteID1, txtSubDomainName.Text.Trim()); } if (SessionData.PrefData.TaskTwo1.Equals(YOUTUBE)) { //ask for uploading video and save in Userfiles if (fileYoutubeVideo.HasFile) { string filename = fileYoutubeVideo.FileName; string path = Server.MapPath("./Youtube/" + SessionData.UserAction.SiteID1); if (!Directory.Exists(path)) { Directory.CreateDirectory(path); } string strFinalFileName = Path.GetFileName(fileYoutubeVideo.FileName); long FileLength = fileYoutubeVideo.PostedFile.ContentLength; fileYoutubeVideo.PostedFile.SaveAs(path + "/" + filename); if (UploadToYoutube(filename)) { //Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "alert(\"Youtube video uploaded !\")", true); SessionData.UserAction.TaskComplete = YOUTUBE; } } } SessionData.Product = new AppProduct(); SessionData.Product.DID = GetNewDIDWithPrefix(); //Prepare file system directory to store Images string pathToCreate = "~/Images/" + SessionData.Product.DID; if (!Directory.Exists(Server.MapPath(pathToCreate))) { Directory.CreateDirectory(Server.MapPath(pathToCreate)); } //Fetch Template Data dsTemplateData = canv.GetTempData(Convert.ToInt32(templateID)); //REVISIT hdnTrmplateID.Value = templateID; hdnPDID.Value = SessionData.Product.DID; hdnfield.Value = CDID; if (!Directory.Exists(Server.MapPath(pathToCreate))) { Directory.CreateDirectory(Server.MapPath(pathToCreate)); } //Caption //if (!string.IsNullOrEmpty(txtHeaderText.Text)) //{ // SessionData.Product.AppCaption = txtHeaderText.Text; //} SessionData.Product.ProductCategory = WH_CREATED; //Start Date, Expiry Date FacebookBizProcess fbBiz = new FacebookBizProcess(); if (fbBiz.IsAppCreationAllowed(SessionData.Customer.CustomerID)) //check if user is allowed to create Promos etc under his current plan ***************************************************************** { SessionData.Config = new AppConfiguration(); AppConfiguration oAppAvaila = new AppConfiguration(); oAppAvaila = fbBiz.GetAvailableConfig(CDID); SessionData.Config = oAppAvaila; SessionData.Config.DID = GetNewDID("AN"); //Custom Tab Name if (!txtCustomTabNamePromoVid.Text.Trim().Equals(string.Empty)) { SessionData.Config.SCustomtTabName = txtCustomTabNamePromoVid.Text.Trim(); SessionData.UserAction.CustomTabName1 = txtCustomTabNamePromoVid.Text.Trim(); } SessionData.Config.STemplatePage = TEMPLATE_PAGE; } else { Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "alert(\"You can only create 3 Campaigns with a TRIAL account !\")", true); } FaceBook ofacebook = new FaceBook(); AppUser oAppUser = new AppUser(); SessionData.Config.SSiteID = SiteID; SessionData.Config.STemplateID = SessionData.PrefData.TemplateID1; SessionData.Product.ProductLogo = "https://www.sonetreach.com/Images/" + SessionData.Product.DID + "/Logo" + SessionData.Product.ProductLogo; SessionData.Product.SProductContentImage = "Body" + hdnContent.Value; if (!(SessionData.Config == null)) { //Now fill up the Config and get Product data. SessionData.Config.SCampaignType = Video; if (fbBiz.SetNewConfigDetails(SessionData.Config, SessionData.Config.SCustomtTabName, Video)) { //Update expiry date fbBiz.UpdateConfigExpiryForWH(SessionData.Config.DID); ////********If user comes here we know we should set up a Product Info, So, create a row in AppProduct and assign these values to SessionData******** SessionData.Product.AppConfigDID = SessionData.Config.DID; SessionData.Product.ProductName = SessionData.Config.AppName; SessionData.Product.ProductHTML = ""; fbBiz.SetNewProductDetails(SessionData.Product); SessionData.Product = fbBiz.GetAppProductDetails(); } } else { //No configs allowed Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "alert(\"Config Not Available. Please Contact HELPDESK.\");", true); } if (SessionData.Config.SAppPageTabSelected == null) { StringBuilder oSBPageSElector = new StringBuilder(); oSBPageSElector.Append("window.open('http://www.facebook.com/dialog/permissions.request?app_id="); oSBPageSElector.Append(SessionData.Config.AppID + "&redirect_uri=" + ActiveURL + SessionData.Config.AppID + "&response_type=code&perms=user_birthday,user_location,email,manage_pages\','name','height=140,width=790,menubar=0,toolbar=0,statusbar=0,scrollbars=0,resizable=0');"); litLogin.Text = oSBPageSElector.ToString(); } } catch (Exception ex) { //commonUtil.SendErrorMail(ex.Message, ex.StackTrace, System.Reflection.MethodBase.GetCurrentMethod().Name.ToString(), System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.ToString(), SessionData.Customer.CustomerID); throw ex; } }
protected void Page_Load(object sender, EventArgs e) { //litOGTags.Text = GetOGMetaTags(); NotifyURL = ConfigurationSettings.AppSettings["NotifyURL"]; if (Request["acc_tok"] != null) { access_tok = Request["acc_tok"].ToString(); } if (Request["uID"] != null) { userID = Request["uID"].ToString(); } if (Request["app_id"] != null) { app_id = Request["app_id"].ToString(); } litEnableFBJS.Text = GetInitializedJS(); //string id = hdnUserID.Value; FaceBook facebook = new FaceBook(); if (!string.IsNullOrEmpty(access_tok)) { oDCAppUser = facebook.GetUserDetail(userID, access_tok, oDCAppUser); } oDCAppUser.AppConfigDID = fbBiz.GetConfigDEED(app_id); ADID = oDCAppUser.AppConfigDID; //Now INSERT User details to AppUser table if (Request.UserAgent.ToLower().Contains("iphone") || Request.UserAgent.ToLower().Contains("android")) { oDCAppUser.SonetSRC = MOBILE_USER; } else { oDCAppUser.SonetSRC = TAB_USER; if (Request.UserAgent.ToLower().Contains("ipad")) { //modify css to suit width } } if (string.IsNullOrEmpty(oDCAppUser.SonetID)) { oDCAppUser.SonetID = userID; } if (!fbBiz.IsAppUserExistMobile(oDCAppUser)) { if (fbBiz.SetAppUserAuthorize(oDCAppUser, ADID)) // { } } bool ISPageLiked; if (!string.IsNullOrEmpty(access_tok)) { ISPageLiked = facebook.IsPageLiked("314911595222628", access_tok); } else { ISPageLiked = false; } //show HTML, LIKE gatewat if (!fbBiz.IsLikeGatewayAdded(app_id)) // If Already liked show page else Force user to like, iff like gateway was selected { SessionData.Config = new AppConfiguration(); SessionData.Config.DID = fbBiz.GetConfigDEED(app_id); //check if configuration is still good- that means not EXPIRED if (!fbBiz.IsConfigurationExpired(SessionData.Config.DID)) { //populate the AppProduct encapsulation based on app that is loaded AppProduct oAppProduct = new AppProduct(); oAppProduct = fbBiz.GetActiveAppProduct(osonetpie, SessionData.Config.DID); string HTML = oAppProduct.ProductHTML; //Get Custom Tab name string CustTabNAme = fbBiz.GetCustomTabName(app_id); //Get Share Button for this Product string CommentBox = GetCommentPlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, app_id, fbBiz.GetAppPagePath(app_id)); string ShareButton = GetShareButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, app_id, CustTabNAme); string InviteButton = GetInviteButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, app_id); string RecommendButton = GetRecommendButtonForMobile(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, app_id); string LikePlugin = GetLikePlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, app_id); string PrintButton = GetPrint(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, app_id); string EmailButton = GetEmail(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, app_id); //string TwitterButton = GetTwitterShareURL(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, app_id); // Get the HTML to be shown if (!oAppProduct.ProductCategory.Equals("WebHutColl.")) { if (oAppProduct.CommentsWidgetAdded.Equals(TRUE)) { addCOMMENT = HTML.Replace("CommBox", CommentBox); } else { addCOMMENT = HTML.Replace("CommBox", ""); } if (oAppProduct.ShareWidgetAdded.Equals(TRUE)) { addSHARE = addCOMMENT.Replace("ShButton", ShareButton); } else { addSHARE = addCOMMENT.Replace("ShButton", ""); } if (oAppProduct.ReccWidgetAdded.Equals(TRUE)) { if (canv.IsConfigForSweepstakes(oAppProduct.AppConfigDID)) { addCaption = addSHARE.Replace("ReButton", InviteButton); } else { addCaption = addSHARE.Replace("ReButton", RecommendButton); } } else { addCaption = addSHARE.Replace("ReButton", ""); } addLead = addCaption.Replace("Lead", ""); addLIKE = addLead.Replace("Like", LikePlugin); addPOST = addLIKE.Replace("Caption", oAppProduct.AppCaption); addTwitter = addPOST.Replace("TwButton", ""); litHTML.Text = addTwitter; } else { headRow.Style.Remove("background-color"); mainRow.Style.Remove("background-color"); //render Webhut template SiteID = fbBiz.GetSiteIDForConfig(Convert.ToString(ADID)); SessionData.Config = new AppConfiguration(); SessionData.Config.SSiteID = SiteID; int TemplateID = fbBiz.GetTemplateIDForConfig(Convert.ToString(ADID)); pageToLoad = "index.html"; StreamReader streamReader = new StreamReader(Server.MapPath("Sites\\Final\\" + SiteID + "\\" + pageToLoad)); string text = streamReader.ReadToEnd(); streamReader.Close(); //check for DirtyPage string Query = "select DirtyPage from Sites where SiteId=" + SiteID; DataSet oDataSet = new DataSet(); SqlHelper.FillDataset(ConfigurationSettings.AppSettings["SoConn"].ToString(), CommandType.Text, Query, oDataSet, new string[] { "SiteDetails" }); string isDirty = Convert.ToString(oDataSet.Tables["SiteDetails"].Rows[0]["DirtyPage"]); if (isDirty.Equals("Y")) { text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_facebook.png\">", ShareButton); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_recommend.png\">", RecommendButton); text = text.Replace("<img class=\"dynamic\" src=\"images/fb-like-button.png\">", LikePlugin); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_twitter.png\">", ""); if (TemplateID == 11) { text = text.Replace("<img class=\"ActionImg\" src=\"Images/email.png\" />", EmailButton); text = text.Replace("<img class=\"ActionImg\" src=\"Images/print.png\" />", PrintButton); } } else { text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_facebook.png\" />", ShareButton); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_recommend.png\" />", RecommendButton); text = text.Replace("<img class=\"dynamic\" src=\"images/fb-like-button.png\" />", LikePlugin); text = text.Replace("<img class=\"dynamic\" src=\"images/SNR_twitter.png\" />", ""); if (TemplateID == 11) { text = text.Replace("<img class=\"ActionImg\" src=\"Images/email.png\" />", EmailButton); text = text.Replace("<img class=\"ActionImg\" src=\"Images/print.png\" />", PrintButton); } } //fix all Image tags string imagesReplaced = text.Replace("images", "images1/" + SiteID); String style; if (TemplateID == 12) { style = "/CSS/RStore_style.css"; SessionData.PrefData.TemplateID1 = TemplateID; } else if (TemplateID == 13) { style = "/CSS/FabrikStyle.css"; SessionData.PrefData.TemplateID1 = TemplateID; } else if (TemplateID == 11) { style = "/CSS/CouponsStyle.css"; SessionData.PrefData.TemplateID1 = TemplateID; } else if (TemplateID == 14) { style = "/css/realestate_styles.css"; SessionData.PrefData.TemplateID1 = TemplateID; } else { style = "/css/PFstyle.css"; SessionData.PrefData.TemplateID1 = TemplateID; } //get all the Images, Styles in System.IO.StreamReader StreamReader1 = new System.IO.StreamReader(Server.MapPath("./Sites/Final/" + SiteID + style)); string ReadStyle = StreamReader1.ReadToEnd(); StreamReader1.Close(); if (TemplateID == 14) { HtmlLink linking = Page.FindControl("facebookIDStyleSheets") as HtmlLink; linking.Href = "./Sites/Final/" + SiteID + style; } System.IO.StreamReader StreamReader2 = new System.IO.StreamReader(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); string CleanStyle = StreamReader2.ReadToEnd(); CleanStyle = string.Empty; StreamReader2.Close(); System.IO.StreamWriter StreamWriter2 = new System.IO.StreamWriter(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); StreamWriter2.WriteLine(CleanStyle); StreamWriter2.Close(); System.IO.StreamWriter StreamWriter1 = new System.IO.StreamWriter(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); StreamWriter1.WriteLine(ReadStyle); StreamWriter1.Close(); ////saranya //System.IO.StreamReader sr = new System.IO.StreamReader(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); //String fileContents = sr.ReadToEnd(); //sr.Close(); //System.IO.StreamWriter sw = new System.IO.StreamWriter(Server.MapPath("./ScriptsSonetReach/Facebookstyles.css")); //fileContents = fileContents.Replace("images", "images1/" + SiteID + ""); //sw.WriteLine(fileContents); //sw.Close(); ///NOW process all the images string imagePath = Server.MapPath("./Sites/Final/" + SiteID + "/Images/"); string[] files = System.IO.Directory.GetFiles(imagePath); if (!Directory.Exists(Server.MapPath("./Images1/" + SiteID))) { Directory.CreateDirectory(Server.MapPath("./Images1/" + SiteID)); } foreach (string file in files) { if (!System.IO.File.Exists(Server.MapPath("./Images1/" + SiteID + "/" + System.IO.Path.GetFileName(file)))) { System.IO.File.Copy(file, System.IO.Path.Combine(Server.MapPath("./Images1/" + SiteID), System.IO.Path.GetFileName(file))); } } LoadComplete = true; litHTML.Text = imagesReplaced; if (TemplateID == 13) { litHTML.Text = litHTML.Text.Replace("<link href=\"CSS/FabrikStyle.css\" rel=\"stylesheet\" type=\"text/css\">", ""); } else if (TemplateID == 11) { litHTML.Text = litHTML.Text.Replace("<link href=\"CSS/CouponsStyle.css\" rel=\"stylesheet\" type=\"text/css\" />", ""); } } } } else { if (ISPageLiked) { SessionData.Config = new AppConfiguration(); SessionData.Config.DID = fbBiz.GetConfigDEED(app_id); //check if configuration is still good- that means not EXPIRED if (!fbBiz.IsConfigurationExpired(SessionData.Config.DID)) { //populate the AppProduct encapsulation based on app that is loaded AppProduct oAppProduct = new AppProduct(); oAppProduct = fbBiz.GetActiveAppProduct(osonetpie, SessionData.Config.DID); // Get the HTML to be shown string HTML = oAppProduct.ProductHTML; //Get Custom Tab name string CustTabNAme = fbBiz.GetCustomTabName(app_id); //Get Share Button for this Product string CommentBox = GetCommentPlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, app_id, fbBiz.GetAppPagePath(app_id)); string ShareButton = GetShareButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, app_id, CustTabNAme); string InviteButton = GetInviteButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, app_id); string RecommendButton = GetRecommendButtonForMobile(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, app_id); string LikePlugin = GetLikePlugin(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, app_id); //string EntryFormPlug = GetEntryForm(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["ADID"].ToString(), QSVars["user_id"].ToString()); //string LeadPlugin = GetLeadButton(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["AppID"].ToString()); //string PrintButton = GetPrint(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["AppID"].ToString()); //string EmailButton = GetEmail(oAppProduct.DID, oAppProduct.ProductName, oAppProduct.ProductLogo, oAppProduct.ProductShortDesc, QSVars["AppID"].ToString()); if (oAppProduct.CommentsWidgetAdded.Equals(TRUE)) { addCOMMENT = HTML.Replace("CommBox", CommentBox); } else { addCOMMENT = HTML.Replace("CommBox", ""); } if (oAppProduct.ShareWidgetAdded.Equals(TRUE)) { addSHARE = addCOMMENT.Replace("ShButton", ShareButton); } else { addSHARE = addCOMMENT.Replace("ShButton", ""); } if (oAppProduct.ReccWidgetAdded.Equals(TRUE)) { if (canv.IsConfigForSweepstakes(oAppProduct.AppConfigDID)) { addCaption = addSHARE.Replace("ReButton", InviteButton); } else { addCaption = addSHARE.Replace("ReButton", RecommendButton); } } else { addCaption = addSHARE.Replace("ReButton", ""); } addLead = addCaption.Replace("Lead", ""); addLIKE = addLead.Replace("Like", LikePlugin); addPOST = addLIKE.Replace("Caption", oAppProduct.AppCaption); addTwitter = addPOST.Replace("TwButton", ""); litHTML.Text = addTwitter; } else { litHTML.Text = "Oops! Looks like your aplication expired. Please buy credits to continue."; } } else { if ((Request.QueryString.Count == 1 && Request.QueryString["app_id"] != null) || (!string.IsNullOrEmpty(access_tok))) { //string pagePath = fbBiz.GetAppPath(Request["app_id"].ToString()); //Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "window.parent.location.href='" + pagePath + "'", true); } else { litHTML.Text = " <div class=\"fb-like\" data-href=\"https://www.testsonetreach.com/MobileRedirect.aspx?app_id=295889527140091\" data-send=\"false\" data-width=\"400\" data-show-faces=\"true\"></div>"; } } } }
protected void btnPageSelect_Click(object sender, EventArgs e) { try { DataTable dtNewPages = new DataTable(); DataColumn[] dcPage = new DataColumn[3]; dcPage[0] = new DataColumn("pid", System.Type.GetType("System.String")); dtNewPages.Columns.Add(dcPage[0]); dcPage[1] = new DataColumn("pname", System.Type.GetType("System.String")); dtNewPages.Columns.Add(dcPage[1]); dcPage[2] = new DataColumn("pacctoken", System.Type.GetType("System.String")); dtNewPages.Columns.Add(dcPage[2]); dtNewPages = (DataTable)(Cache["PageDetails"]); DataView dv; dv = new DataView((DataTable)(Cache["PageDetails"])); dv.RowFilter = "pname= '" + ddlPageSelect.SelectedItem.ToString() + "'"; //fetch the custom tab name FacebookBizProcess fbBiz = new FacebookBizProcess(); string custTabName = fbBiz.GetCustomTabName(SessionData.Config.AppID); StringBuilder _sbPostToWallPostData = new StringBuilder(); _sbPostToWallPostData.Append("custom_name=" + custTabName); string pagetab = "https://graph.facebook.com/" + dv[0]["pid"].ToString().Replace("\"", "") + "/tabs?method=POST&app_id=" + SessionData.Config.AppID + "&access_token=" + ddlPageSelect.SelectedValue.ToString().Replace("\"", ""); FaceBook fabo = new FaceBook(); fabo.CallWebRequest("POST", pagetab, _sbPostToWallPostData.ToString()); //generate URL for page tab //string pageName = CallPageTabs(dv[0]["pid"].ToString()); StringBuilder oSBAppPath = new StringBuilder(); oSBAppPath.Append("https://www.facebook.com/pages/"); oSBAppPath.Append(ddlPageSelect.SelectedItem.ToString() + "/"); oSBAppPath.Append(dv[0]["pid"].ToString() + "/"); oSBAppPath.Append("?sk=app_" + SessionData.Config.AppID); lblResult.Text = "Campaign uploaded. Click"; if (SessionData.UserAction.TaskComplete.Equals("M")) { lblInformation.Text = "Your Microsite has been processed ! Please find the details in your Email inbox."; } else if (SessionData.UserAction.TaskComplete.Equals("Y")) { lblInformation.Text = "Your Microsite has been processed ! Please find the details in your Email inbox."; } else { lblInformation.Text = string.Empty; } fbBiz.UpdateAppPagePath(oSBAppPath.ToString(), SessionData.Config.AppID, dv[0]["pid"].ToString()); linkToCamp.HRef = oSBAppPath.ToString(); tblPageSelect.Visible = false; tblResult.Visible = true; if (bEnableTwitter == true) { tblTweet.Visible = true; } //Response.Redirect("CanvasArea.aspx?CDID=" + SessionData.Customer.CustomerID+"&pageSelected=T&TID=0",true); } catch (Exception ex) { CommonUtility commUtil = new CommonUtility(); commUtil.SendErrorMail(ex.Message, ex.StackTrace, System.Reflection.MethodBase.GetCurrentMethod().Name.ToString(), System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.ToString(), SessionData.Customer.CustomerID); } }
protected void Page_Load(object sender, EventArgs e) { try { if (!IsPostBack) { ActiveURL = ConfigurationSettings.AppSettings["ActiveURL"]; if (Request["app_id"] != null) { appID = Request["app_id"].ToString(); } if (Request["code"] != null) { Dictionary<string, string> token = new Dictionary<string, string>(); //fetch secret key for app_id FacebookBizProcess fbBiz = new FacebookBizProcess(); appSecret = fbBiz.GetAppSecret(appID); token = GetAccessToken(Request["code"].ToString(), "manage_pages,publish_stream", ActiveURL + appID, appID, appSecret); //Get List of Pages FaceBook fb = new FaceBook(); string sPages = fb.GetPageAccessToken(token["access_token"].ToString()); SessionData.Config = fbBiz.GetAppConfiguration("", appID); string pagetab = string.Empty; DataColumn[] dcPage = new DataColumn[3]; dcPage[0] = new DataColumn("pid", System.Type.GetType("System.String")); dtPage.Columns.Add(dcPage[0]); dcPage[1] = new DataColumn("pname", System.Type.GetType("System.String")); dtPage.Columns.Add(dcPage[1]); dcPage[2] = new DataColumn("pacctoken", System.Type.GetType("System.String")); dtPage.Columns.Add(dcPage[2]); System.Web.Script.Serialization.JavaScriptSerializer _oJavaScriptSerializerJason = new System.Web.Script.Serialization.JavaScriptSerializer(); JObject objJason = JObject.Parse(sPages); foreach (var i in objJason["data"].Children()) { if ((i["category"].ToString().Replace("\"", "")) != "Application") { DataRow drPage = dtPage.NewRow(); drPage["pid"] = i["id"].ToString().Replace("\"", ""); drPage["pname"] = i["name"].ToString().Replace("\"", ""); drPage["pacctoken"] = i["access_token"].ToString().Replace("\"", ""); dtPage.Rows.Add(drPage); } } dsPage.Tables.Add(dtPage); //now bind all pages to drop down if (dtPage.Rows.Count > 0) { foreach (DataRow dr in dtPage.Rows) { ddlPageSelect.Items.Add(new ListItem(dr["pname"].ToString(), dr["pacctoken"].ToString())); } Cache["PageDetails"] = dtPage; ddlPageSelect.DataTextField = "pname"; ddlPageSelect.DataValueField = "pacctoken"; } else { pageSelect.Visible = false; noPageFound.Visible = true; lblNoPage.Text = "You are not admin of any pages"; } } } if (Request["Twitter"] != null) { bEnableTwitter = true; //litEnableTweet.Text = GetTwitterShareURL(); } } catch (Exception ex) { CommonUtility commUtil = new CommonUtility(); commUtil.SendErrorMail(ex.Message, ex.StackTrace, System.Reflection.MethodBase.GetCurrentMethod().Name.ToString(), System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.ToString(), SessionData.Customer.CustomerID); } }
protected override void OnPreRender(EventArgs e) { base.OnPreRender(e); //Initialize API Core FaceBook oFacebook = new FaceBook(); //Initialize KOKO SonetPie osonetpie = new SonetPie(); osonetpie.QSvarsString = GetQsVarsCollection(); osonetpie.AbsolutePath = AbsolutePagePath; //Load app settings oDCAppUser = ofbBiz.GetAppUser(osonetpie, QSVars["ADID"].ToString(), QSVars["user_id"].ToString()); //Prefill Email id if (oDCAppUser != null) txtLeadEmailID.Text = oDCAppUser.EmailID; GetSiteDetails(); string strUrl = Server.MapPath(oSiteDetails.FolderPathTool) + "\\index.html"; HtmlDocument doc = new HtmlDocument(); doc.Load(strUrl, Encoding.UTF8); //load the HTML located at strURL //now take out HTML where class="row-2" as this is the html we want User to print/email //var divToEmail = from myHTML in doc.DocumentNode.SelectNodes("//div[@class='row-2']") select myHTML; HtmlNode node = doc.DocumentNode.SelectSingleNode("//div[starts-with(@class, 'row-2')]"); var images = node.SelectNodes("//img/@src").ToList(); string final = images[6].OuterHtml; string[] splitFinal = final.Split('"'); imgSRC = splitFinal[3].ToString(); Session["imgSRC"] = oSiteDetails.FolderPathTool+ imgSRC; string[] filenameSplit = imgSRC.Split('/'); string filename = filenameSplit[1].ToString(); litEmailbody.Text = node.InnerHtml.Replace(imgSRC,"images1/"+oSiteDetails.SiteID+"/"+filename); litEmailbody.Text = litEmailbody.Text.Replace("~/Template/Amalgam v1.0/", ""); }
protected void btnStep3Complete_Click(object sender, EventArgs e) { try { //Fetch Template Data dsTemplateData = canv.GetTempData(Convert.ToInt32(templateID)); //REVISIT hdnTrmplateID.Value = templateID; //Save Widgets info and Cust Tab name, then move to FB tab //Custom Tab Name if (!txtCustomTabNamePromoVid.Text.Trim().Equals(string.Empty)) { SessionData.Config.SCustomtTabName = txtCustomTabNamePromoVid.Text.Trim(); } //Widgets if (chkShareButton.Checked) { SessionData.Product.ShareWidgetAdded = "Y"; } if (chkInquiry.Checked) { SessionData.Product.InquiryWidgetAdded = "Y"; } if (chkRecc.Checked) { SessionData.Product.ReccWidgetAdded = "Y"; } if (chkComment.Checked) { SessionData.Product.CommentsWidgetAdded = "Y"; } if (chkLike.Checked) { SessionData.Product.LikeWidgetAdded = "Y"; } if (chkTweeter.Checked) { SessionData.Product.TwitterWidgetAdded = "Y"; } //Like Gateway if (chkLikeGateway.Checked) { SessionData.Product.LikeGatewayAdded = "Y"; //Save LikeGateway Image if (filePromo2LikeGateWayImage.HasFile) { if (filePromo2LikeGateWayImage.PostedFile.ContentType == "image/jpeg" || filePromo2LikeGateWayImage.PostedFile.ContentType == "image/png" || filePromo2LikeGateWayImage.PostedFile.ContentType == "image/jpg" || filePromo2LikeGateWayImage.PostedFile.ContentType == "image/pjpeg") { if (filePromo2LikeGateWayImage.FileBytes.Length < ONE_MB) { string filenamePromo2Logo = Path.GetFileName(filePromo2LikeGateWayImage.FileName); Bitmap sourceImage = new Bitmap(filePromo2LikeGateWayImage.PostedFile.InputStream); SaveImageFile(sourceImage, Server.MapPath(pathToCreate + "/LikeGateway" + filenamePromo2Logo), 111, 74); hdnFooterLogo.Value = filenamePromo2Logo; SessionData.Product.ProductLogo = filenamePromo2Logo; //NOW SAVE TO PRODUCT TABLE------> PRODUCTFOOTER } else { spnErrorfileLikeGateWayImage.InnerHtml = "File size should not be greater than 1 MB"; spnErrorfileLikeGateWayImage.Style.Add("color", "Red"); errCount++; } } else { spnErrorfileLikeGateWayImage.InnerHtml = "Upload status: Only JPEG, PNG files are accepted!"; spnErrorfileLikeGateWayImage.Style.Add("color", "Red"); errCount++; } } } FacebookBizProcess fbBiz = new FacebookBizProcess(); FaceBook ofacebook = new FaceBook(); AppUser oAppUser = new AppUser(); if ((Regex.IsMatch(txtVideoURL.Text.Trim(), @"(http|https)://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?")) && (txtVideoURL.Text.Trim().Contains("youtube"))) { iframecontent = ofacebook.GetEmbedURL(txtVideoURL.Text.Trim(), oAppUser); string fixedURL = FixVideoURL(iframecontent); //Now save the Video details fbBiz.InsertVideoShareData(SessionData.Config.DID, txtVideoURL.Text.Trim(), fixedURL, txtDescription.Text.Trim()); if (!iframecontent.Equals(string.Empty)) { string[] newEmbedURL = iframecontent.Split(' '); string finalURL = newEmbedURL[3].Remove(0, 4); if (!txtVideoURL.Text.Contains("autoplay")) { if (!txtVideoURL.Text.Contains("?")) { string tempData6 = dsTemplateData.Tables[0].Rows[0]["thtml"].ToString(); //Fill up Preview Data string HeaderBannerURLReplaced = tempData6.Replace(" <a id=\"aHeadBanner\" href=\"\" target=\"_blank\">", "<a id=\"aHeadBanner\" href=" + txtBannerURL.Text + " target=\"_blank\" >"); // Replace Banner URL string HeaderBannerReplaced = HeaderBannerURLReplaced.Replace("<img id=\"imgBanner\" alt=\"\" src=\"\" style=\"width: 500px; height: 100px;\" />", "<img id=\"imgBanner\" alt=\"\" src=\"Images/" + SessionData.Product.DID + "/" + "Banner" + hdnBanner.Value + "\" style=\"width: 500px; height: 100px;\"/>"); // Replace Banner Image string ParamAdded = HeaderBannerReplaced.Replace("<paramss>", "<param name=\"movie\" value=\"" + finalURL + "?autoplay=0\">"); string ObjectAdded = ParamAdded.Replace("<iframe>", fixedURL); string DescriptionAdded = ObjectAdded.Replace("</span>", txtDescription.Text.Trim().Replace("'", "''") + "</span>"); using (CanvasBizProcess canvasBiz = new CanvasBizProcess()) { canvasBiz.InsertPreviewHTML(DescriptionAdded, SessionData.Customer.CustomerID, SessionData.Product.DID); } varCount++; } else { string tempData6 = dsTemplateData.Tables[0].Rows[0]["thtml"].ToString(); //Fill up Preview Data string HeaderBannerURLReplaced = tempData6.Replace(" <a id=\"aHeadBanner\" href=\"\" target=\"_blank\">", "<a id=\"aHeadBanner\" href=" + txtBannerURL.Text + " target=\"_blank\" >"); // Replace Banner URL string HeaderBannerReplaced = HeaderBannerURLReplaced.Replace("<img id=\"imgBanner\" alt=\"\" src=\"\" style=\"width: 500px; height: 100px;\" />", "<img id=\"imgBanner\" alt=\"\" src=\"Images/" + SessionData.Product.DID + "/" + "Banner" + hdnBanner.Value + "\" style=\"width: 500px; height: 100px;\"/>"); // Replace Banner Image string ParamAdded = HeaderBannerReplaced.Replace("<paramss>", "<param name=\"movie\" value=" + "\"" + finalURL + "&autoplay=0\">"); string ObjectAdded = ParamAdded.Replace("<iframe>", fixedURL); string DescriptionAdded = ObjectAdded.Replace("NIOTPESRIC", txtDescription.Text.Trim().Replace("'", "''")); using (CanvasBizProcess canvasBiz = new CanvasBizProcess()) { canvasBiz.InsertPreviewHTML(DescriptionAdded, SessionData.Customer.CustomerID, SessionData.Product.DID); } varCount++; } } else { string tempData6 = dsTemplateData.Tables[0].Rows[0]["thtml"].ToString(); //Fill up Preview Data string HeaderBannerURLReplaced = tempData6.Replace(" <a id=\"aHeadBanner\" href=\"\" target=\"_blank\">", "<a id=\"aHeadBanner\" href=" + txtBannerURL.Text + " target=\"_blank\" >"); // Replace Banner URL string HeaderBannerReplaced = HeaderBannerURLReplaced.Replace("<img id=\"imgBanner\" alt=\"\" src=\"\" style=\"width: 500px; height: 100px;\" />", "<img id=\"imgBanner\" alt=\"\" src=\"Images/" + SessionData.Product.DID + "/" + "Banner" + hdnBanner.Value + "\" style=\"width: 500px; height: 100px;\"/>"); // Replace Banner Image string ParamAdded = HeaderBannerReplaced.Replace("<paramss>", "<param name=\"movie\" value=\"" + finalURL + "\">"); string ObjectAdded = ParamAdded.Replace("<iframe>", iframecontent); string DescriptionAdded = ObjectAdded.Replace("NIOTPESRIC", txtDescription.Text.Trim().Replace("'", "''")); //make all videos play automatically string autoPlayed = DescriptionAdded.Replace("autoplay=0", "autoplay=0"); using (CanvasBizProcess canvasBiz = new CanvasBizProcess()) { canvasBiz.InsertPreviewHTML(autoPlayed, SessionData.Customer.CustomerID, SessionData.Product.DID); } varCount++; } } else { } } else { } // Set Header Banner URL and Header Image in Product SessionData.Product.SHeaderBannerURL = txtBannerURL.Text; SessionData.Product.SHeaderBannerImg = hdnBanner.Value; SessionData.Product.ProductLogo = "https://www.sonetreach.com/Images/" + SessionData.Product.DID + "/Logo" + SessionData.Product.ProductLogo; SessionData.Product.SProductContentImage = "Body" + hdnContent.Value; if (!(SessionData.Config == null)) { //Apply Campaign Dates to Config if (datepickerStart.Value != "") { SessionData.Config.SAppStartDT = SQLSafeDates(datepickerStart.Value, true); SessionData.Config.AppExpiryDT = SQLSafeDates(datepickerEnd.Value, true); } //Now fill up the Config and get Product data. SessionData.Config.SCampaignType = Video; if (fbBiz.SetNewConfigDetails(SessionData.Config, SessionData.Config.SCustomtTabName,Video)) { ////********If user comes here we know we should set up a Product Info, So, create a row in AppProduct and assign these values to SessionData******** SessionData.Product.AppConfigDID = SessionData.Config.DID; SessionData.Product.ProductName = SessionData.Config.AppName; SessionData.Product.ProductHTML = canv.FetchFinalHTML(SessionData.Product.DID, CDID); fbBiz.SetNewProductDetails(SessionData.Product); SessionData.Product = fbBiz.GetAppProductDetails(); // Now Enable the Facebook Tab } } else { //No configs allowed Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "alert(\"Config Not Available. Please Contact HELPDESK.\")", true); } HtmlGenericControl fbookShow = new HtmlGenericControl(); fbookShow = (HtmlGenericControl)MainList.FindControl("FacebookDet"); fbookShow.Style.Add("display", "block"); hdnTabStatus.Value = STEP_THREE_COMPLETE; } catch (Exception ex) { commonUtil.SendErrorMail(ex.Message, ex.StackTrace, System.Reflection.MethodBase.GetCurrentMethod().Name.ToString(), System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.ToString(), SessionData.Customer.CustomerID); } }
protected override void OnPreRender(EventArgs e) { base.OnPreRender(e); //Initialize API Core FaceBook oFacebook = new FaceBook(); //Initialize KOKO SonetPie osonetpie = new SonetPie(); QSVars.Add("NTYP", "LEAD"); osonetpie.QSvarsString = GetQsVarsCollection(); osonetpie.AbsolutePath = AbsolutePagePath; //Load app settings oDCAppUser = fbBizProc.GetAppUser(osonetpie, QSVars["ADID"].ToString(), QSVars["user_id"].ToString()); oAppProduct = fbBizProc.GetAppProductDetails(osonetpie, QSVars["PDID"].ToString()); //get Inquiry Email if exists //fetch Inmquiry EMAIL data string inquiryEmail; inquiryEmail = fbBizProc.GetInquiryEmail(Convert.ToString(QSVars["ADID"])); //Bind Post content at runtime if (oAppProduct.DID.Equals("AP006KV63YSPT0ZDHTMD")) { txtLeadContent.Text = "I am interested to know more on this event."; } else if (oAppProduct.DID.Equals("AP000CH69W22X9KDGZTT") || oAppProduct.DID.Equals("AP001CS762FRSC4BPCV3") || oAppProduct.DID.Equals("AP005S976CL8C85Y2HV5") || oAppProduct.DID.Equals("AP002PX605GMMMG9MQ59")) { txtLeadContent.Text = "I am interested to know more on this product."; } lblProductSummary.Text = GetProductSummary(); //Prefill product context if (oAppProduct != null) { if (oAppProduct.DID.Equals("AP006KV63YSPT0ZDHTMD")) { txtLeadContext.Text = oAppProduct.ProductName + " event inquiry"; } else if (oAppProduct.DID.Equals("AP000CH69W22X9KDGZTT") || oAppProduct.DID.Equals("AP001CS762FRSC4BPCV3") || oAppProduct.DID.Equals("AP005S976CL8C85Y2HV5") || oAppProduct.DID.Equals("AP002PX605GMMMG9MQ59")) { txtLeadContext.Text = oAppProduct.ProductName + " product inquiry"; } } else txtLeadContext.Text = "product inquiry"; //Prefill Email id if (!string.IsNullOrEmpty(inquiryEmail)) txtLeadEmailID.Text = oDCAppUser.EmailID; //Clear Error text lblValidationSummary.Text = string.Empty; //Perform Post to wall friends & Store notifierDID stat if (this.IsPostBack && oAppProduct != null && AppCustomer != null && AppConfig != null) { if (FormVars.Contains("BtnSubmit")) { if (Convert.ToString(FormVars["txtLeadEmailID"]).Trim().Length <= 0) Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "alert(\"Specify email id.\")", true); else if (Convert.ToString(FormVars["txtLeadContext"]).Trim().Length <= 0) lblValidationSummary.Text = "Specify email subject."; else if (Convert.ToString(FormVars["txtLeadContent"]).Trim().Length <= 0) lblValidationSummary.Text = "Specify email content."; else { AppLeadData oAppLeadData = new AppLeadData(); oAppLeadData.EmailID = Convert.ToString(FormVars["txtLeadEmailID"]); oAppLeadData.Subject = Convert.ToString(FormVars["txtLeadContext"]); oAppLeadData.Body = Convert.ToString(FormVars["txtLeadContent"]); string _sNotifierDID = new AppNotifier().GetNewDIDWithPrefix(); if (QSVars.Contains("NDID")) QSVars["NDID"] = _sNotifierDID; else QSVars.Add("NDID", _sNotifierDID); if (fbBizProc.RaiseAppNotifier(oDCAppUser, "LEAD", QSVars["UDID"].ToString(), QSVars["PDID"].ToString(), QSVars["NDID"].ToString(), oAppLeadData, string.Empty)) { //Now send email CommonUtility comUtil = new CommonUtility(); custTabName = fbBizProc.GetCustomTabName(Convert.ToString(QSVars["app_id"])); comUtil.SendEnquiryMail(inquiryEmail, oAppLeadData.Subject, oAppLeadData.Body, custTabName, oAppProduct,oDCAppUser.EmailID); Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "window.close()", true); } } } } //Set error message section if (!string.IsNullOrEmpty(lblValidationSummary.Text)) trErrorMsg.Visible = true; else trErrorMsg.Visible = false; }