public override bool Equals(Object obj)
        {
            //Check for null and compare run-time types.
            if ((obj == null) || !this.GetType().Equals(obj.GetType()))
            {
                return(false);
            }
            else
            {
                GloebitSubscription s = (GloebitSubscription)obj;
                // TODO: remove these info logs once we understand why things are not always equal
                // m_log.InfoFormat("[GLOEBITMONEYMODULE] Subscription.Equals()");
                // m_log.InfoFormat("ObjectID:{0}", (ObjectID == s.ObjectID));
                // m_log.InfoFormat("AppKey:{0}", (AppKey == s.AppKey));
                // m_log.InfoFormat("GlbApiUrl:{0}", (GlbApiUrl == s.GlbApiUrl));
                // m_log.InfoFormat("ObjectName:{0}", (ObjectName == s.ObjectName));
                // m_log.InfoFormat("Description:{0}", (Description == s.Description));
                // m_log.InfoFormat("SubscriptionID:{0}", (SubscriptionID == s.SubscriptionID));
                // m_log.InfoFormat("Enabled:{0}", (Enabled == s.Enabled));
                // m_log.InfoFormat("ctime:{0}", (ctime == s.ctime));
                // m_log.InfoFormat("ctime Equals:{0}", (ctime.Equals(s.ctime)));
                // m_log.InfoFormat("ctime CompareTo:{0}", (ctime.CompareTo(s.ctime)));
                // m_log.InfoFormat("ctime ticks:{0} == {1}", ctime.Ticks, s.ctime.Ticks);

                // NOTE: intentionally does not compare ctime as db truncates miliseconds to zero.
                return((ObjectID == s.ObjectID) &&
                       (AppKey == s.AppKey) &&
                       (GlbApiUrl == s.GlbApiUrl) &&
                       (ObjectName == s.ObjectName) &&
                       (Description == s.Description) &&
                       (SubscriptionID == s.SubscriptionID) &&
                       (Enabled == s.Enabled));
            }
        }
Exemple #2
0
        /// <summary>
        /// Processes the user response (click of button on dialog) to a PendingSubscriptionAuthorizationDialog.
        /// --- Ignore: does nothing.
        /// --- Report Fraud: sends fraud report to Gloebit
        /// --- Authorize: Delivers authorization link to user
        /// </summary>
        /// <param name="client">IClientAPI of sender of response</param>
        /// <param name="chat">response sent</param>
        protected override void ProcessResponse(IClientAPI client, OSChatMessage chat)
        {
            switch (chat.Message)
            {
            case "Ignore":
                // User actively ignored.  remove from our message listener
                break;

            case "Respond":
                // Resend authorization link

                string subscriptionIDStr = SubscriptionID.ToString();
                string apiUrl            = apiW.m_url.ToString();
                GloebitSubscription sub  = GloebitSubscription.GetBySubscriptionID(subscriptionIDStr, apiUrl);
                // TODO: Do we need to check if this is null?  Shouldn't happen.

                // Send Authorize URL
                apiW.AuthorizeSubscription(client.AgentId, SubscriptionAuthorizationID.ToString(), sub, false);

                break;

            case "Report Fraud":
                // Report to Gloebit
                // TODO: fire off fraud report to Gloebit
                break;

            default:
                m_log.ErrorFormat("[GLOEBITMONEYMODULE] PendingSubscriptionAuthorizationDialog.ProcessResponse Received unexpected dialog response message:{0}", chat.Message);
                break;
            }
        }
Exemple #3
0
        /// <summary>
        /// Processes the user response (click of button on dialog) to a CreateSubscriptionAuthorizationDialog.
        /// --- Ignore: does nothing.
        /// --- Report Fraud: sends fraud report to Gloebit
        /// --- Authorize: Creates pending authorization subscription for this user and the referenced subscription
        /// </summary>
        /// <param name="client">IClientAPI of sender of response</param>
        /// <param name="chat">response sent</param>
        protected override void ProcessResponse(IClientAPI client, OSChatMessage chat)
        {
            switch (chat.Message)
            {
            case "Ignore":
                // User actively ignored.  remove from our message listener
                break;

            case "Authorize":
                // Create authorization

                string subscriptionIDStr = SubscriptionID.ToString();
                string apiUrl            = apiW.m_url.ToString();

                GloebitSubscription sub = GloebitSubscription.GetBySubscriptionID(subscriptionIDStr, apiUrl);
                // IF null, there was a db error on storing this -- test store functions for db impl
                if (sub == null)
                {
                    string msg = String.Format("[GLOEBITMONEYMODULE] CreateSubscriptionAuthorizationDialog.ProcessResponse Could not retrieve subscription.  Likely DB error when storing subID:{0}", subscriptionIDStr);
                    m_log.Error(msg);
                    throw new Exception(msg);
                }
                apiW.AuthorizeSubscription(AgentID, String.Empty, sub, false);
                break;

            case "Report Fraud":
                // Report to Gloebit
                // TODO: fire off fraud report to Gloebit
                break;

            default:
                m_log.ErrorFormat("[GLOEBITMONEYMODULE] CreateSubscriptionAuthorizationDialog.ProcessResponse Received unexpected dialog response message:{0}", chat.Message);
                break;
            }
        }
        public static GloebitSubscription GetBySubscriptionID(string subscriptionIDStr, string apiUrl)
        {
            m_log.InfoFormat("[GLOEBITMONEYMODULE] in GloebitSubscription.GetBySubscriptionID");
            GloebitSubscription subscription = null;
            GloebitSubscription localSub     = null;


            m_log.DebugFormat("[GLOEBITMONEYMODULE] Looking for prior subscription for {0} {1}", subscriptionIDStr, apiUrl);
            string[] keys   = new string[] { "SubscriptionID", "GlbApiUrl" };
            string[] values = new string[] { subscriptionIDStr, apiUrl };
            GloebitSubscription[] subscriptions = GloebitSubscriptionData.Instance.Get(keys, values);


            switch (subscriptions.Length)
            {
            case 1:
                subscription = subscriptions[0];
                m_log.DebugFormat("[GLOEBITMONEYMODULE] FOUND SUBSCRIPTION in DB! oID:{0} appKey:{1} url:{2} sID:{3} oN:{4} oD:{5}", subscription.ObjectID, subscription.AppKey, subscription.GlbApiUrl, subscription.SubscriptionID, subscription.ObjectName, subscription.Description);
                lock (s_subscriptionMap) {
                    s_subscriptionMap.TryGetValue(subscription.ObjectID.ToString(), out localSub);
                    if (localSub == null)
                    {
                        s_subscriptionMap[subscription.ObjectID.ToString()] = subscription;
                    }
                }
                if (localSub == null)
                {
                    // do nothing.  already added subscription to cache in lock
                }
                else if (localSub.Equals(subscription))
                {
                    // return cached sub instead of new sub from DB
                    subscription = localSub;
                }
                else
                {
                    m_log.ErrorFormat("[GLOEBITMONEYMODULE] mapped Subscription is not equal to DB return --- shouldn't happen.  Investigate.");
                    m_log.ErrorFormat("Local Sub\n sID:{0}\n oID:{1}\n appKey:{2}\n apiUrl:{3}\n oN:{4}\n oD:{5}\n enabled:{6}\n ctime:{7}", localSub.SubscriptionID, localSub.ObjectID, localSub.AppKey, localSub.GlbApiUrl, localSub.ObjectName, localSub.Description, localSub.Enabled, localSub.cTime);
                    m_log.ErrorFormat("DB Sub\n sID:{0}\n oID:{1}\n appKey:{2}\n apiUrl:{3}\n oN:{4}\n oD:{5}\n enabled:{6}\n ctime:{7}", subscription.SubscriptionID, subscription.ObjectID, subscription.AppKey, subscription.GlbApiUrl, subscription.ObjectName, subscription.Description, subscription.Enabled, subscription.cTime);
                    // still return cached sub instead of new sub from DB
                    subscription = localSub;
                }
                return(subscription);

            case 0:
                m_log.DebugFormat("[GLOEBITMONEYMODULE] Could not find subscription matching sID:{0} apiUrl:{1}", subscriptionIDStr, apiUrl);
                return(null);

            default:
                throw new Exception(String.Format("[GLOEBITMONEYMODULE] Failed to find exactly one subscription for {0} {1}", subscriptionIDStr, apiUrl));
                return(null);
            }
            m_log.DebugFormat("[GLOEBITMONEYMODULE] FOUND SUBSCRIPTION in cache! oID:{0} appKey:{1} url:{2} sID:{3} oN:{4} oD:{5}", subscription.ObjectID, subscription.AppKey, subscription.GlbApiUrl, subscription.SubscriptionID, subscription.ObjectName, subscription.Description);
            return(subscription);
        }
        public static GloebitSubscription Init(UUID objectID, string appKey, string apiUrl, string objectName, string objectDescription)
        {
            string objectIDstr = objectID.ToString();

            GloebitSubscription s = new GloebitSubscription(objectID, appKey, apiUrl, objectName, objectDescription);

            lock (s_subscriptionMap) {
                s_subscriptionMap[objectIDstr] = s;
            }
            GloebitSubscriptionData.Instance.Store(s);
            return(s);
        }
        public static GloebitSubscription Get(string objectIDStr, string appKey, string apiUrl)
        {
            m_log.InfoFormat("[GLOEBITMONEYMODULE] in GloebitSubscription.Get");
            GloebitSubscription subscription = null;

            lock (s_subscriptionMap) {
                s_subscriptionMap.TryGetValue(objectIDStr, out subscription);
            }

            if (subscription == null)
            {
                m_log.DebugFormat("[GLOEBITMONEYMODULE] Looking for prior subscription for {0} {1} {2}", objectIDStr, appKey, apiUrl);
                string[] keys   = new string[] { "ObjectID", "AppKey", "GlbApiUrl" };
                string[] values = new string[] { objectIDStr, appKey, apiUrl };
                GloebitSubscription[] subscriptions = GloebitSubscriptionData.Instance.Get(keys, values);

                switch (subscriptions.Length)
                {
                case 1:
                    subscription = subscriptions[0];
                    m_log.DebugFormat("[GLOEBITMONEYMODULE] FOUND SUBSCRIPTION in DB! oID:{0} appKey:{1} url:{2} sID:{3} oN:{4} oD:{5}", subscription.ObjectID, subscription.AppKey, subscription.GlbApiUrl, subscription.SubscriptionID, subscription.ObjectName, subscription.Description);
                    lock (s_subscriptionMap) {
                        s_subscriptionMap[objectIDStr] = subscription;
                    }
                    return(subscription);

                case 0:
                    m_log.DebugFormat("[GLOEBITMONEYMODULE] Could not find subscription matching oID:{0} appKey:{1} apiUrl:{2}", objectIDStr, appKey, apiUrl);
                    return(null);

                default:
                    throw new Exception(String.Format("[GLOEBITMONEYMODULE] Failed to find exactly one subscription for {0} {1} {2}", objectIDStr, appKey, apiUrl));
                    return(null);
                }
            }
            m_log.DebugFormat("[GLOEBITMONEYMODULE] FOUND SUBSCRIPTION in cache! oID:{0} appKey:{1} url:{2} sID:{3} oN:{4} oD:{5}", subscription.ObjectID, subscription.AppKey, subscription.GlbApiUrl, subscription.SubscriptionID, subscription.ObjectName, subscription.Description);
            return(subscription);
        }
        public static GloebitSubscription[] Get(string objectIDStr)
        {
            m_log.InfoFormat("[GLOEBITMONEYMODULE] in Subscription.Get");
            GloebitSubscription subscription = null;

            lock (s_subscriptionMap) {
                s_subscriptionMap.TryGetValue(objectIDStr, out subscription);
            }

            /*if(subscription == null) {*/
            m_log.DebugFormat("[GLOEBITMONEYMODULE] Looking for subscriptions for {0}", objectIDStr);
            GloebitSubscription[] subscriptions = GloebitSubscriptionData.Instance.Get("ObjectID", objectIDStr);

            /*
             *      Subscription[] subsForAppWithKey = new Subscription[];
             *      foreach (Subscription sub in subscriptions) {
             *          if (sub.AppKey = "appkey" && sub.GlbApiUrl = "url") {
             *              subsForAppWithKey.Append(sub);
             *          }
             *      }
             */
            bool cacheDuplicate = false;

            m_log.DebugFormat("[GLOEBITMONEYMODULE] Found {0} subscriptions for {0} saved in the DB", subscriptions.Length, objectIDStr);
            if (subscription != null)
            {
                m_log.DebugFormat("[GLOEBITMONEYMODULE] Found 1 cached subscriptions for {0}", subscriptions.Length, objectIDStr);
                if (subscriptions.Length == 0)
                {
                    subscriptions    = new GloebitSubscription[1];
                    subscriptions[0] = subscription;
                }
                else
                {
                    for (int i = 0; i < subscriptions.Length; i++)
                    {
                        if (subscriptions[i].ObjectID == subscription.ObjectID &&
                            subscriptions[i].AppKey == subscription.AppKey &&
                            subscriptions[i].GlbApiUrl == subscription.GlbApiUrl)
                        {
                            cacheDuplicate   = true;
                            subscriptions[i] = subscription;
                            m_log.DebugFormat("[GLOEBITMONEYMODULE] Cached subscription was in db.  Replacing with cached version.");
                            break;
                        }
                    }
                    if (!cacheDuplicate)
                    {
                        m_log.DebugFormat("[GLOEBITMONEYMODULE] Combining Cached subscription with those from db.");
                        GloebitSubscription[] dbSubs = subscriptions;
                        subscriptions    = new GloebitSubscription[dbSubs.Length + 1];
                        subscriptions[0] = subscription;
                        for (int i = 1; i < subscriptions.Length; i++)
                        {
                            subscriptions[i] = dbSubs[i - 1];
                        }
                    }
                }
            }
            else
            {
                m_log.DebugFormat("[GLOEBITMONEYMODULE] Found no cached subscriptions for {0}", subscriptions.Length, objectIDStr);
            }

            m_log.DebugFormat("[GLOEBITMONEYMODULE] Returning {0} subscriptions for {0}", subscriptions.Length, objectIDStr);
            return(subscriptions);

            /*
             *      switch(subscriptions.Length) {
             *          case 1:
             *              subscription = subsForAppWithKey[0];
             *              m_log.InfoFormat("[GLOEBITMONEYMODULE] FOUND SUBSCRIPTION! {0} {1} {2} {3}", subscription.ObjectID, subscription.AppKey, subscription.GlbApiUrl, subscription.SubscriptionID);
             *              lock(s_subscriptionMap) {
             *                  s_subscriptionMap[objectIDStr] = subscription;
             *              }
             *              return subscription;
             *          case 0:
             *              m_log.InfoFormat("[GLOEBITMONEYMODULE] Could not find subscription matching oID:{0}", objectIDStr);
             *              return null;
             *          default:
             *              throw new Exception(String.Format("[GLOEBITMONEYMODULE] Failed to find exactly one subscription for {0} {1} {2}", objectIDStr));
             *              return null;
             *      }
             *  }
             *
             *  return subscription;
             */
        }