public static Dictionary <string, string> UpdatePluckPhotoDetails(string appName, Pluck.Config.PluckConfigElement pluckConfig, string description, string title, string tags, string photoKey) { var requests = new RequestBatch(); #region Add UpdatePhotoActionRequest to batch var updateRequest = new UpdatePhotoActionRequest { Description = description, Title = title, Tags = tags, PhotoKey = new PhotoKey { Key = photoKey } }; requests.AddRequest(updateRequest); #endregion #region Add UpdateDiscoveryFilterFlagActionRequest to batch ////Make the photo not discoverable UpdateDiscoveryFilterFlagActionRequest discAction = new UpdateDiscoveryFilterFlagActionRequest(); discAction.BaseKey = updateRequest.PhotoKey; discAction.ExcludeFromDiscovery = true; requests.AddRequest(discAction); #endregion #region Add PhotoRequest to batch requests.AddRequest(new PhotoRequest { PhotoKey = updateRequest.PhotoKey }); #endregion var pluckService = new PluckService(pluckConfig.apiUrl); var authToken = new UserAuthenticationToken(pluckConfig.userKey, pluckConfig.userNickname, pluckConfig.userEmail, pluckConfig.sharedSecret); ResponseBatch responseBatch = pluckService.SendRequest(requests, authToken); Dictionary <string, string> resultURI = new Dictionary <string, string>(); if (responseBatch != null) { if (responseBatch.Envelopes[0].Payload.ResponseStatus.Exceptions != null && responseBatch.Envelopes[0].Payload.ResponseStatus.Exceptions.Length > 0) { throw new ApplicationException(responseBatch.Envelopes[0].Payload.ResponseStatus.Exceptions[0].ExceptionMessage); } IResponse photoObject = responseBatch.Envelopes[2].GetResponse(); PhotoResponse photoDetails = (PhotoResponse)photoObject; resultURI.Add("tiny", photoDetails.Photo.Image.Tiny); resultURI.Add("full", photoDetails.Photo.Image.Full); resultURI.Add("small", photoDetails.Photo.Image.Small); //60x60 resultURI.Add("medium", photoDetails.Photo.Image.Medium); //h=200 } return(resultURI); }
public static Dictionary<string, string> UpdatePluckPhotoDetails(string appName, Pluck.Config.PluckConfigElement pluckConfig, string description, string title, string tags, string photoKey) { var requests = new RequestBatch(); #region Add UpdatePhotoActionRequest to batch var updateRequest = new UpdatePhotoActionRequest { Description = description, Title = title, Tags = tags, PhotoKey = new PhotoKey { Key = photoKey } }; requests.AddRequest(updateRequest); #endregion #region Add UpdateDiscoveryFilterFlagActionRequest to batch ////Make the photo not discoverable UpdateDiscoveryFilterFlagActionRequest discAction = new UpdateDiscoveryFilterFlagActionRequest(); discAction.BaseKey = updateRequest.PhotoKey; discAction.ExcludeFromDiscovery = true; requests.AddRequest(discAction); #endregion #region Add PhotoRequest to batch requests.AddRequest(new PhotoRequest { PhotoKey = updateRequest.PhotoKey }); #endregion var pluckService = new PluckService(pluckConfig.apiUrl); var authToken = new UserAuthenticationToken(pluckConfig.userKey, pluckConfig.userNickname, pluckConfig.userEmail, pluckConfig.sharedSecret); ResponseBatch responseBatch = pluckService.SendRequest(requests, authToken); Dictionary<string, string> resultURI = new Dictionary<string, string>(); if (responseBatch != null) { if (responseBatch.Envelopes[0].Payload.ResponseStatus.Exceptions != null && responseBatch.Envelopes[0].Payload.ResponseStatus.Exceptions.Length > 0) { throw new ApplicationException(responseBatch.Envelopes[0].Payload.ResponseStatus.Exceptions[0].ExceptionMessage); } IResponse photoObject = responseBatch.Envelopes[2].GetResponse(); PhotoResponse photoDetails = (PhotoResponse)photoObject; resultURI.Add("tiny", photoDetails.Photo.Image.Tiny); resultURI.Add("full", photoDetails.Photo.Image.Full); resultURI.Add("small", photoDetails.Photo.Image.Small);//60x60 resultURI.Add("medium", photoDetails.Photo.Image.Medium);//h=200 } return resultURI; }