/// <summary>
        /// Execute
        /// </summary>
        /// <returns></returns>
        protected override bool Execute()
        {
            if (SamAccountName != null)
            {
                Response.error = Label.Get("error.firebase.alreadySubscribed", DTO.LngIsoCode);
                return(false);
            }

            else
            {
                if (!API.Firebase.Authenticate(DTO.Uid, DTO.AccessToken))
                {
                    Response.error = Label.Get("error.authentication", DTO.LngIsoCode);
                    return(false);
                }
            }

            Subscriber_ADO ado  = new Subscriber_ADO(Ado);
            Subscriber_BSO sBso = new Subscriber_BSO();

            string newKey = sBso.GetSubscriberKey(DTO.Uid);

            if (ado.UpdateKey(DTO.Uid, newKey))
            {
                Response.data = JSONRPC.success;
                return(true);
            }
            Log.Instance.Debug("Can't update Subscriber Key");
            Response.error = Label.Get("error.update", DTO.LngIsoCode);
            return(false);
        }
Esempio n. 2
0
        /// <summary>
        /// Execute
        /// </summary>
        /// <returns></returns>
        protected override bool Execute()
        {
            string subscriberUserId;

            if (SamAccountName != null)
            {
                Response.error = Label.Get("error.firebase.alreadySubscribed", DTO.LngIsoCode);
                return(false);
            }

            else
            {
                if (!API.Firebase.Authenticate(DTO.Uid, DTO.AccessToken))
                {
                    Response.error = Label.Get("error.authentication");
                    return(false);
                }
                subscriberUserId = DTO.Uid;
            }

            Subscriber_ADO ado = new Subscriber_ADO(Ado);

            if (ado.Update(subscriberUserId, DTO.LngIsoCode, DTO.SbrPreference))
            {
                Response.data = JSONRPC.success;
                return(true);
            }
            Log.Instance.Debug("Can't update Subscriber");
            Response.error = Label.Get("error.update");
            return(false);
        }
Esempio n. 3
0
        internal bool Delete(ADO Ado, string subscriberUserId)
        {
            Subscriber_ADO ado = new Subscriber_ADO(Ado);

            if (ado.Delete(subscriberUserId))
            {
                RefreshSubscriberKeyCache(Ado);
                return(true);
            }
            return(false);
        }
Esempio n. 4
0
        /// <summary>
        /// The Subscriber Key Cache is used for throttling traffic
        /// This method refreshes the Subscriber Key Cache
        /// </summary>
        /// <param name="ado"></param>
        internal void RefreshSubscriberKeyCache(ADO ado)
        {
            Subscriber_ADO sAdo     = new Subscriber_ADO(ado);
            var            response = sAdo.ReadSubscriberKeys();

            if (response.Count > 0)
            {
                List <string> sList = new List <string>();
                foreach (var item in response)
                {
                    sList.Add(item.SbrKey);
                }
                MemCacheD.Store_BSO("PxStat.Subscription", "Subscriber_BSO", "RefreshSubscriberKeyCache", "RefreshSubscriberKeyCache", sList, default(DateTime));
            }
        }
Esempio n. 5
0
        internal bool Create(ADO Ado, string sbrPreference, string firebaseId, string lngIsoCode)
        {
            Subscriber_ADO ado           = new Subscriber_ADO(Ado);
            string         subscriberKey = GetSubscriberKey(firebaseId);

            if (ado.Create(sbrPreference, firebaseId, lngIsoCode, subscriberKey))
            {
                //Refresh the cache of valid subscriber keys
                //These are used for throttling
                RefreshSubscriberKeyCache(Ado);
                return(true);
            }
            else
            {
                return(false);
            }
        }
Esempio n. 6
0
        /// <summary>
        /// Reads one or all subscribers
        /// set userId to a value if you only want to read one subscriber (this is not cached)
        /// set readCache to false if you want to NOT read the cache otherwise true or null
        /// </summary>
        /// <param name="ado"></param>
        /// <param name="userId"></param>
        /// <param name="readCache"></param>
        /// <returns></returns>
        internal List <dynamic> GetSubscribers(ADO ado, string userId = null, bool?readCache = true)
        {
            //We may also read the subscriber data from the cache under certain circumstances
            if ((bool)readCache && userId == null)
            {
                var subs = MemCacheD.Get_BSO("PxStat.Subscription", "Subscriber_BSO", "GetSubscribers", "GetSubscribers");
                if (subs.hasData)
                {
                    return(subs.data.ToObject <List <dynamic> >());;
                }
            }


            IDictionary <string, dynamic> fbUsers = API.Firebase.GetAllUsers();
            Subscriber_ADO sAdo = new Subscriber_ADO(ado);


            var subscribers = sAdo.Read(userId);
            var adUsers     = ActiveDirectory.List();

            foreach (var s in subscribers.data)
            {
                string email       = null;
                string displayName = null;
                if (s.CcnEmail == DBNull.Value)
                {
                    string adEntry = adUsers.Keys.Where(x => x.Equals(s.SbrUserId, StringComparison.InvariantCultureIgnoreCase)).FirstOrDefault();
                    if (adEntry != null)
                    {
                        var ad = adUsers[adEntry];
                        if (ad != null)
                        {
                            email = ad.EmailAddress.Value;
                            if (ad.GivenName != null && ad.Surname != null)
                            {
                                displayName = ad.GivenName + " " + ad.Surname;
                            }
                        }
                    }
                    else
                    {
                        var fbEntry = fbUsers.Keys.Where(y => y.Equals(s.SbrUserId)).FirstOrDefault();
                        if (fbEntry != null)
                        {
                            if (fbUsers.ContainsKey(fbEntry))
                            {
                                var fb = fbUsers[fbEntry];
                                if (fb != null)
                                {
                                    email       = fb.Email;
                                    displayName = fb.DisplayName;
                                }
                            }
                        }
                    }
                    s.CcnEmail    = email;
                    s.DisplayName = displayName;
                }
            }
            if (userId == null && subscribers.data.Count > 0)
            {
                MemCacheD.Store_BSO("PxStat.Subscription", "Subscriber_BSO", "GetSubscribers", "GetSubscribers", subscribers.data, DateTime.Now.AddHours(24));
            }

            return(subscribers.data);
        }