コード例 #1
0
        public Victim Get(String id)
        {
            VictimPersistence pp = new VictimPersistence();
            Victim            p  = pp.getVictim(id);

            if (p == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.NotFound));
            }
            return(p);
        }
コード例 #2
0
        public Object[] Post(bool value, string id, [FromBody] Victim victimOBJ)
        {
            DangerMode dmObj = new DangerMode();

            if (value)
            {
                VictimPersistence vp = new VictimPersistence();
                vp.saveUser(victimOBJ);
                dmObj.isDangerModeOn = true;
                dmObj.islive         = true;
                dmObj.FBID           = id;
                dmObj.Latitude       = victimOBJ.Latitude;
                dmObj.Longitude      = victimOBJ.Longitude;
                dmObj.isAppLive();
                AllUsersDM.audmInstance.addnewUser(dmObj); //listan
            }
            else
            {
                AllUsersDM.audmInstance.removeUser(id);
            }

            return(AllUsersDM.audmInstance.userslist.ToArray());
        }
コード例 #3
0
        // POST: api/Victim
        public async System.Threading.Tasks.Task <HttpResponseMessage> Post(string pns, [FromBody] Victim value, string to_tag)
        {
            var user = value.FBID;


            string[] userTag = new string[2];
            userTag[0] = "username:"******"T"
            FriendsPersistence fp      = new FriendsPersistence();
            ArrayList          friends = fp.getFriends(value.FBID);


            foreach (Friends f in friends)
            {
                switch (pns.ToLower())
                {
                case "wns":
                    // Windows 8.1 / Windows Phone 8.1
                    var toast = @"<toast><visual><binding template=""ToastText01""><text id=""1"">" +
                                "From " + user + ": " + "wns=message" + "</text></binding></visual></toast>";
                    outcome = await Notifications.Instance.Hub.SendWindowsNativeNotificationAsync(toast, to_tag);

                    break;

                case "apns":
                    // iOS
                    var alert = "{\"aps\":{\"alert\":\"" + "From " + user + ": " + "apns=message" + "\"}}";
                    outcome = await Notifications.Instance.Hub.SendAppleNativeNotificationAsync(alert, userTag);

                    break;

                case "gcm":
                    // Android
                    //value.UserName + " Need Help from you. The User ID =" + value.FBID
                    var notif = "{ \"data\" : {\"message\":\"" + "From " + value.UserName + " Need Help from you. The User ID =" + value.FBID + "\"}}";
                    outcome = await Notifications.Instance.Hub.SendGcmNativeNotificationAsync(notif, f.FriendFBID + "T");

                    break;
                }

                if (outcome != null)
                {
                    if (!((outcome.State == Microsoft.Azure.NotificationHubs.NotificationOutcomeState.Abandoned) ||
                          (outcome.State == Microsoft.Azure.NotificationHubs.NotificationOutcomeState.Unknown)))
                    {
                        ret = HttpStatusCode.OK;
                    }
                }
            }
            // return Request.CreateResponse(ret);
            /////////////////////////////////////////////////////////here for every friend-End



            VictimPersistence pp = new VictimPersistence();
            String            id;

            id = pp.saveUser(value);

            /*
             * // Get the settings for the server project.
             * HttpConfiguration config = this.Configuration;
             * MobileAppSettingsDictionary settings =
             *  this.Configuration.GetMobileAppSettingsProvider().GetMobileAppSettings();
             *
             * // Get the Notification Hubs credentials for the Mobile App.
             * string notificationHubName = settings.NotificationHubName;
             * string notificationHubConnection = settings
             *  .Connections[MobileAppSettingsKeys.NotificationHubConnectionString].ConnectionString;
             *
             * // Create a new Notification Hub client.
             * NotificationHubClient hub = NotificationHubClient
             * .CreateClientFromConnectionString(notificationHubConnection, notificationHubName);
             *
             * // Sending the message so that all template registrations that contain "messageParam"
             * // will receive the notifications. This includes APNS, GCM, WNS, and MPNS template registrations.
             * Dictionary<string, string> templateParams = new Dictionary<string, string>();
             * templateParams["messageParam"] = value.UserName + " Need Help from you. The User ID =" + value.FBID;
             *
             * try
             * {
             *  // Send the push notification and log the results.
             *  var result = await hub.SendTemplateNotificationAsync(templateParams);
             *
             *  // Write the success result to the logs.
             *  config.Services.GetTraceWriter().Info(result.State.ToString());
             * }
             * catch (System.Exception ex)
             * {
             *  // Write the failure result to the logs.
             *  config.Services.GetTraceWriter()
             *      .Error(ex.Message, null, "Push.SendAsync Error");
             * }
             */
            value.FBID = id;
            HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.Created);

            response.Headers.Location = new Uri(Request.RequestUri, String.Format("/user/{0}", id));
            return(response);
        }
コード例 #4
0
        // GET: api/Victim
        public ArrayList Get()
        {
            VictimPersistence pp = new VictimPersistence();

            return(pp.getVictims());
        }