mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-19 11:39:42 +01:00
Improvements to be done: MVVM emoji picker horizontal design Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
613 lines
26 KiB
Java
613 lines
26 KiB
Java
/*
|
|
* Nextcloud Talk application
|
|
*
|
|
* @author Mario Danic
|
|
* @author Marcel Hibbe
|
|
* @author Tim Krüger
|
|
* Copyright (C) 2017 Mario Danic (mario@lovelyhq.com)
|
|
* Copyright (C) 2021 Marcel Hibbe <dev@mhibbe.de>
|
|
* Copyright (C) 2021 Tim Krüger <t@timkrueger.me>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package com.nextcloud.talk.api;
|
|
|
|
import com.nextcloud.talk.models.json.capabilities.CapabilitiesOverall;
|
|
import com.nextcloud.talk.models.json.chat.ChatOverall;
|
|
import com.nextcloud.talk.models.json.chat.ChatOverallSingleMessage;
|
|
import com.nextcloud.talk.models.json.chat.ChatShareOverall;
|
|
import com.nextcloud.talk.models.json.chat.ChatShareOverviewOverall;
|
|
import com.nextcloud.talk.models.json.conversations.RoomOverall;
|
|
import com.nextcloud.talk.models.json.conversations.RoomsOverall;
|
|
import com.nextcloud.talk.models.json.generic.GenericOverall;
|
|
import com.nextcloud.talk.models.json.generic.Status;
|
|
import com.nextcloud.talk.models.json.hovercard.HoverCardOverall;
|
|
import com.nextcloud.talk.models.json.mention.MentionOverall;
|
|
import com.nextcloud.talk.models.json.notifications.NotificationOverall;
|
|
import com.nextcloud.talk.models.json.opengraph.OpenGraphOverall;
|
|
import com.nextcloud.talk.models.json.participants.AddParticipantOverall;
|
|
import com.nextcloud.talk.models.json.participants.ParticipantsOverall;
|
|
import com.nextcloud.talk.models.json.push.PushRegistrationOverall;
|
|
import com.nextcloud.talk.models.json.reactions.ReactionsOverall;
|
|
import com.nextcloud.talk.models.json.search.ContactsByNumberOverall;
|
|
import com.nextcloud.talk.models.json.signaling.SignalingOverall;
|
|
import com.nextcloud.talk.models.json.signaling.settings.SignalingSettingsOverall;
|
|
import com.nextcloud.talk.models.json.status.StatusOverall;
|
|
import com.nextcloud.talk.models.json.unifiedsearch.UnifiedSearchOverall;
|
|
import com.nextcloud.talk.models.json.userprofile.UserProfileFieldsOverall;
|
|
import com.nextcloud.talk.models.json.userprofile.UserProfileOverall;
|
|
import com.nextcloud.talk.polls.repositories.model.PollOverall;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import androidx.annotation.Nullable;
|
|
import io.reactivex.Observable;
|
|
import okhttp3.MultipartBody;
|
|
import okhttp3.RequestBody;
|
|
import okhttp3.ResponseBody;
|
|
import retrofit2.Call;
|
|
import retrofit2.Response;
|
|
import retrofit2.http.Body;
|
|
import retrofit2.http.DELETE;
|
|
import retrofit2.http.Field;
|
|
import retrofit2.http.FieldMap;
|
|
import retrofit2.http.FormUrlEncoded;
|
|
import retrofit2.http.GET;
|
|
import retrofit2.http.HEAD;
|
|
import retrofit2.http.Header;
|
|
import retrofit2.http.Multipart;
|
|
import retrofit2.http.POST;
|
|
import retrofit2.http.PUT;
|
|
import retrofit2.http.Part;
|
|
import retrofit2.http.Query;
|
|
import retrofit2.http.QueryMap;
|
|
import retrofit2.http.Url;
|
|
|
|
public interface NcApi {
|
|
|
|
/*
|
|
QueryMap items are as follows:
|
|
- "format" : "json"
|
|
- "search" : ""
|
|
- "perPage" : "200"
|
|
- "itemType" : "call"
|
|
|
|
Server URL is: baseUrl + ocsApiVersion + /apps/files_sharing/api/v1/sharees
|
|
|
|
or if we're on 14 and up:
|
|
|
|
baseUrl + ocsApiVersion + "/core/autocomplete/get");
|
|
|
|
*/
|
|
@GET
|
|
Observable<ResponseBody> getContactsWithSearchParam(@Header("Authorization") String authorization, @Url String url,
|
|
@Nullable @Query("shareTypes[]") List<String> listOfShareTypes, @QueryMap Map<String, Object> options);
|
|
|
|
|
|
/*
|
|
Server URL is: baseUrl + ocsApiVersion + spreedApiVersion + /room
|
|
*/
|
|
@GET
|
|
Observable<RoomsOverall> getRooms(@Header("Authorization") String authorization, @Url String url,
|
|
@Nullable @Query("includeStatus") Boolean includeStatus);
|
|
|
|
/*
|
|
Server URL is: baseUrl + ocsApiVersion + spreedApiVersion + /room/roomToken
|
|
*/
|
|
@GET
|
|
Observable<RoomOverall> getRoom(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
/*
|
|
QueryMap items are as follows:
|
|
- "roomType" : ""
|
|
- "invite" : ""
|
|
|
|
Server URL is: baseUrl + ocsApiVersion + spreedApiVersion + /room
|
|
*/
|
|
|
|
@POST
|
|
Observable<RoomOverall> createRoom(@Header("Authorization") String authorization, @Url String url,
|
|
@QueryMap Map<String, String> options);
|
|
|
|
/*
|
|
QueryMap items are as follows:
|
|
- "roomName" : "newName"
|
|
|
|
Server URL is: baseUrl + ocsApiVersion + spreedApiVersion + /room/roomToken
|
|
*/
|
|
|
|
@FormUrlEncoded
|
|
@PUT
|
|
Observable<GenericOverall> renameRoom(@Header("Authorization") String authorization, @Url String url,
|
|
@Field("roomName") String roomName);
|
|
|
|
|
|
@FormUrlEncoded
|
|
@PUT
|
|
Observable<GenericOverall> setConversationDescription(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Field("description") String description);
|
|
|
|
/*
|
|
QueryMap items are as follows:
|
|
- "newParticipant" : "user"
|
|
|
|
Server URL is: baseUrl + ocsApiVersion + spreedApiVersion + /room/roomToken/participants
|
|
*/
|
|
@POST
|
|
Observable<AddParticipantOverall> addParticipant(@Header("Authorization") String authorization, @Url String url,
|
|
@QueryMap Map<String, String> options);
|
|
|
|
@POST
|
|
Observable<GenericOverall> resendParticipantInvitations(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
// also used for removing a guest from a conversation
|
|
@Deprecated
|
|
@DELETE
|
|
Observable<GenericOverall> removeParticipantFromConversation(@Header("Authorization") String authorization, @Url String url, @Query("participant") String participantId);
|
|
|
|
@DELETE
|
|
Observable<GenericOverall> removeAttendeeFromConversation(@Header("Authorization") String authorization, @Url String url, @Query("attendeeId") Long attendeeId);
|
|
|
|
@Deprecated
|
|
@POST
|
|
Observable<GenericOverall> promoteUserToModerator(@Header("Authorization") String authorization, @Url String url, @Query("participant") String participantId);
|
|
|
|
@Deprecated
|
|
@DELETE
|
|
Observable<GenericOverall> demoteModeratorToUser(@Header("Authorization") String authorization, @Url String url, @Query("participant") String participantId);
|
|
|
|
@POST
|
|
Observable<GenericOverall> promoteAttendeeToModerator(@Header("Authorization") String authorization, @Url String url, @Query("attendeeId") Long attendeeId);
|
|
|
|
@DELETE
|
|
Observable<GenericOverall> demoteAttendeeFromModerator(@Header("Authorization") String authorization, @Url String url, @Query("attendeeId") Long attendeeId);
|
|
|
|
/*
|
|
Server URL is: baseUrl + ocsApiVersion + spreedApiVersion + /room/roomToken/participants/self
|
|
*/
|
|
|
|
@DELETE
|
|
Observable<GenericOverall> removeSelfFromRoom(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
/*
|
|
Server URL is: baseUrl + ocsApiVersion + spreedApiVersion + /room/roomToken/public
|
|
*/
|
|
@POST
|
|
Observable<GenericOverall> makeRoomPublic(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
/*
|
|
Server URL is: baseUrl + ocsApiVersion + spreedApiVersion + /room/roomToken/public
|
|
*/
|
|
@DELETE
|
|
Observable<GenericOverall> makeRoomPrivate(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
@DELETE
|
|
Observable<GenericOverall> deleteRoom(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
/*
|
|
Server URL is: baseUrl + ocsApiVersion + spreedApiVersion + /call/callToken
|
|
*/
|
|
@GET
|
|
Observable<ParticipantsOverall> getPeersForCall(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
@GET
|
|
Observable<ParticipantsOverall> getPeersForCall(@Header("Authorization") String authorization, @Url String url,
|
|
@QueryMap Map<String, Boolean> fields);
|
|
|
|
@FormUrlEncoded
|
|
@POST
|
|
Observable<RoomOverall> joinRoom(@Nullable @Header("Authorization") String authorization, @Url String url, @Nullable @Field("password") String password);
|
|
|
|
@DELETE
|
|
Observable<GenericOverall> leaveRoom(@Nullable @Header("Authorization") String authorization, @Url String url);
|
|
|
|
/*
|
|
Server URL is: baseUrl + ocsApiVersion + spreedApiVersion + /call/callToken
|
|
*/
|
|
|
|
@FormUrlEncoded
|
|
@POST
|
|
Observable<GenericOverall> joinCall(@Nullable @Header("Authorization") String authorization, @Url String url,
|
|
@Field("flags") Integer inCall,
|
|
@Field("silent") Boolean callWithoutNotification);
|
|
|
|
/*
|
|
Server URL is: baseUrl + ocsApiVersion + spreedApiVersion + /call/callToken
|
|
*/
|
|
@DELETE
|
|
Observable<GenericOverall> leaveCall(@Nullable @Header("Authorization") String authorization, @Url String url);
|
|
|
|
@GET
|
|
Observable<SignalingSettingsOverall> getSignalingSettings(@Nullable @Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
/*
|
|
QueryMap items are as follows:
|
|
- "messages" : "message"
|
|
|
|
Server URL is: baseUrl + ocsApiVersion + spreedApiVersion + /signaling
|
|
*/
|
|
@FormUrlEncoded
|
|
@POST
|
|
Observable<SignalingOverall> sendSignalingMessages(@Nullable @Header("Authorization") String authorization, @Url String url,
|
|
@Field("messages") String messages);
|
|
|
|
/*
|
|
Server URL is: baseUrl + ocsApiVersion + spreedApiVersion + /signaling
|
|
*/
|
|
@GET
|
|
Observable<SignalingOverall> pullSignalingMessages(@Nullable @Header("Authorization") String authorization, @Url
|
|
String
|
|
url);
|
|
|
|
/*
|
|
QueryMap items are as follows:
|
|
- "format" : "json"
|
|
|
|
Server URL is: baseUrl + ocsApiVersion + "/cloud/user"
|
|
*/
|
|
|
|
@GET
|
|
Observable<UserProfileOverall> getUserProfile(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
|
|
@GET
|
|
Observable<UserProfileOverall> getUserData(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
@FormUrlEncoded
|
|
@PUT
|
|
Observable<GenericOverall> setUserData(@Header("Authorization") String authorization, @Url String url,
|
|
@Field("key") String key, @Field("value") String value);
|
|
|
|
|
|
/*
|
|
Server URL is: baseUrl + /status.php
|
|
*/
|
|
@GET
|
|
Observable<Status> getServerStatus(@Url String url);
|
|
|
|
|
|
/*
|
|
QueryMap items are as follows:
|
|
- "format" : "json"
|
|
- "pushTokenHash" : ""
|
|
- "devicePublicKey" : ""
|
|
- "proxyServer" : ""
|
|
|
|
Server URL is: baseUrl + ocsApiVersion + "/apps/notifications/api/v2/push
|
|
*/
|
|
|
|
@POST
|
|
Observable<PushRegistrationOverall> registerDeviceForNotificationsWithNextcloud(@Header("Authorization")
|
|
String authorization,
|
|
@Url String url,
|
|
@QueryMap Map<String,
|
|
String> options);
|
|
|
|
@DELETE
|
|
Observable<GenericOverall> unregisterDeviceForNotificationsWithNextcloud(@Header("Authorization")
|
|
String authorization,
|
|
@Url String url);
|
|
|
|
@FormUrlEncoded
|
|
@POST
|
|
Observable<Void> registerDeviceForNotificationsWithPushProxy(@Url String url,
|
|
@FieldMap Map<String, String> fields);
|
|
|
|
|
|
/*
|
|
QueryMap items are as follows:
|
|
- "deviceIdentifier": "{{deviceIdentifier}}",
|
|
- "deviceIdentifierSignature": "{{signature}}",
|
|
- "userPublicKey": "{{userPublicKey}}"
|
|
*/
|
|
@DELETE
|
|
Observable<Void> unregisterDeviceForNotificationsWithProxy(@Url String url,
|
|
@QueryMap Map<String, String> fields);
|
|
|
|
@FormUrlEncoded
|
|
@PUT
|
|
Observable<GenericOverall> setPassword(@Header("Authorization") String authorization, @Url String url,
|
|
@Field("password") String password);
|
|
|
|
@FormUrlEncoded
|
|
@PUT
|
|
Observable<Response<GenericOverall>> setPassword2(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Field("password") String password);
|
|
|
|
@GET
|
|
Observable<CapabilitiesOverall> getCapabilities(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
/*
|
|
QueryMap items are as follows:
|
|
- "lookIntoFuture": int (0 or 1),
|
|
- "limit" : int, range 100-200,
|
|
- "timeout": used with look into future, 30 default, 60 at most
|
|
- "lastKnownMessageId", int, use one from X-Chat-Last-Given
|
|
*/
|
|
@GET
|
|
Observable<Response<ChatOverall>> pullChatMessages(@Header("Authorization") String authorization, @Url String url,
|
|
@QueryMap Map<String, Integer> fields);
|
|
|
|
/*
|
|
Fieldmap items are as follows:
|
|
- "message": ,
|
|
- "actorDisplayName"
|
|
*/
|
|
|
|
@FormUrlEncoded
|
|
@POST
|
|
Observable<GenericOverall> sendChatMessage(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Field("message") CharSequence message,
|
|
@Field("actorDisplayName") String actorDisplayName,
|
|
@Field("replyTo") Integer replyTo,
|
|
@Field("silent") Boolean sendWithoutNotification);
|
|
|
|
@GET
|
|
Observable<Response<ChatShareOverall>> getSharedItems(@Header("Authorization") String authorization, @Url String url,
|
|
@Query("objectType") String objectType,
|
|
@Nullable @Query("lastKnownMessageId") Integer lastKnownMessageId,
|
|
@Nullable @Query("limit") Integer limit);
|
|
|
|
@GET
|
|
Observable<Response<ChatShareOverviewOverall>> getSharedItemsOverview(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Nullable @Query("limit") Integer limit);
|
|
|
|
|
|
@GET
|
|
Observable<MentionOverall> getMentionAutocompleteSuggestions(@Header("Authorization") String authorization,
|
|
@Url String url, @Query("search") String query,
|
|
@Nullable @Query("limit") Integer limit,
|
|
@QueryMap Map<String, String> fields);
|
|
|
|
// Url is: /api/{apiVersion}/room/{token}/pin
|
|
@POST
|
|
Observable<GenericOverall> addConversationToFavorites(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
// Url is: /api/{apiVersion}/room/{token}/favorites
|
|
@DELETE
|
|
Observable<GenericOverall> removeConversationFromFavorites(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
@GET
|
|
Observable<NotificationOverall> getNcNotification(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
@FormUrlEncoded
|
|
@POST
|
|
Observable<GenericOverall> setNotificationLevel(@Header("Authorization") String authorization, @Url String url, @Field("level") int level);
|
|
|
|
@FormUrlEncoded
|
|
@PUT
|
|
Observable<GenericOverall> setReadOnlyState(@Header("Authorization") String authorization, @Url String url, @Field("state") int state);
|
|
|
|
@FormUrlEncoded
|
|
@POST
|
|
Observable<GenericOverall> createRemoteShare(@Nullable @Header("Authorization") String authorization, @Url String url,
|
|
@Field("path") String remotePath,
|
|
@Field("shareWith") String roomToken,
|
|
@Field("shareType") String shareType,
|
|
@Field("talkMetaData") String talkMetaData);
|
|
|
|
@FormUrlEncoded
|
|
@PUT
|
|
Observable<GenericOverall> setLobbyForConversation(@Header("Authorization") String authorization,
|
|
@Url String url, @Field("state") Integer state,
|
|
@Field("timer") Long timer);
|
|
|
|
@POST
|
|
Observable<GenericOverall> setReadStatusPrivacy(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Body RequestBody body);
|
|
|
|
@POST
|
|
Observable<ContactsByNumberOverall> searchContactsByPhoneNumber(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Body RequestBody search);
|
|
|
|
@PUT
|
|
Observable<Response<GenericOverall>> uploadFile(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Body RequestBody body);
|
|
|
|
@HEAD
|
|
Observable<Response<Void>> checkIfFileExists(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
@GET
|
|
Call<ResponseBody> downloadFile(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
@DELETE
|
|
Observable<ChatOverallSingleMessage> deleteChatMessage(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
@DELETE
|
|
Observable<GenericOverall> deleteAvatar(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
@Multipart
|
|
@POST
|
|
Observable<GenericOverall> uploadAvatar(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Part MultipartBody.Part attachment);
|
|
|
|
@GET
|
|
Observable<UserProfileFieldsOverall> getEditableUserProfileFields(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
@GET
|
|
Call<ResponseBody> downloadResizedImage(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
@FormUrlEncoded
|
|
@POST
|
|
Observable<GenericOverall> sendLocation(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Field("objectType") String objectType,
|
|
@Field("objectId") String objectId,
|
|
@Field("metaData") String metaData);
|
|
|
|
@DELETE
|
|
Observable<GenericOverall> clearChatHistory(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
@FormUrlEncoded
|
|
@POST
|
|
Observable<GenericOverall> notificationCalls(@Header("Authorization") String authorization, @Url String url,
|
|
@Field("level") Integer level);
|
|
|
|
@GET
|
|
Observable<HoverCardOverall> hoverCard(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
// Url is: /api/{apiVersion}/chat/{token}/read
|
|
@FormUrlEncoded
|
|
@POST
|
|
Observable<GenericOverall> setChatReadMarker(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Field("lastReadMessage") int lastReadMessage);
|
|
|
|
// Url is: /api/{apiVersion}/chat/{token}/read
|
|
@DELETE
|
|
Observable<GenericOverall> markRoomAsUnread(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
/*
|
|
Server URL is: baseUrl + ocsApiVersion + spreedApiVersion + /listed-room
|
|
*/
|
|
@GET
|
|
Observable<RoomsOverall> getOpenConversations(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
|
|
/*
|
|
* OCS Status API
|
|
*/
|
|
@GET
|
|
Observable<StatusOverall> status(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
@GET
|
|
Observable<ResponseBody> getPredefinedStatuses(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
@DELETE
|
|
Observable<GenericOverall> statusDeleteMessage(@Header("Authorization") String authorization, @Url String url);
|
|
|
|
|
|
@FormUrlEncoded
|
|
@PUT
|
|
Observable<GenericOverall> setPredefinedStatusMessage(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Field("messageId") String selectedPredefinedMessageId,
|
|
@Field("clearAt") Long clearAt);
|
|
|
|
@FormUrlEncoded
|
|
@PUT
|
|
Observable<GenericOverall> setCustomStatusMessage(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Field("statusIcon") String statusIcon,
|
|
@Field("message") String message,
|
|
@Field("clearAt") Long clearAt);
|
|
|
|
@FormUrlEncoded
|
|
@PUT
|
|
Observable<GenericOverall> setStatusType(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Field("statusType") String statusType);
|
|
|
|
|
|
@POST
|
|
Observable<GenericOverall> sendReaction(@Header("Authorization") String authorization, @Url String url,
|
|
@Query("reaction") String reaction);
|
|
|
|
@DELETE
|
|
Observable<GenericOverall> deleteReaction(@Header("Authorization") String authorization, @Url String url,
|
|
@Query("reaction") String reaction);
|
|
|
|
@GET
|
|
Observable<ReactionsOverall> getReactions(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Query("reaction") String reaction);
|
|
|
|
@GET
|
|
Observable<UnifiedSearchOverall> performUnifiedSearch(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Query("term") String term,
|
|
@Query("from") String fromUrl,
|
|
@Query("limit") Integer limit,
|
|
@Query("cursor") Integer cursor);
|
|
|
|
@GET
|
|
Observable<PollOverall> getPoll(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
@FormUrlEncoded
|
|
@POST
|
|
Observable<PollOverall> createPoll(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Query("question") String question,
|
|
@Field("options[]") List<String> options,
|
|
@Query("resultMode") Integer resultMode,
|
|
@Query("maxVotes") Integer maxVotes);
|
|
|
|
@FormUrlEncoded
|
|
@POST
|
|
Observable<PollOverall> votePoll(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Field("optionIds[]") List<Integer> optionIds);
|
|
|
|
@DELETE
|
|
Observable<PollOverall> closePoll(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
@FormUrlEncoded
|
|
@POST
|
|
Observable<GenericOverall> setMessageExpiration(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Field("seconds") Integer seconds);
|
|
|
|
@GET
|
|
Observable<OpenGraphOverall> getOpenGraph(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Query("reference") String urlToFindPreviewFor);
|
|
|
|
@FormUrlEncoded
|
|
@POST
|
|
Observable<GenericOverall> startRecording(@Header("Authorization") String authorization,
|
|
@Url String url,
|
|
@Field("status") Integer status);
|
|
|
|
@DELETE
|
|
Observable<GenericOverall> stopRecording(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
@POST
|
|
Observable<GenericOverall> requestAssistance(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
@DELETE
|
|
Observable<GenericOverall> withdrawRequestAssistance(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
@POST
|
|
Observable<GenericOverall> sendCommonPostRequest(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
|
|
@DELETE
|
|
Observable<GenericOverall> sendCommonDeleteRequest(@Header("Authorization") String authorization,
|
|
@Url String url);
|
|
}
|