Twidere-App-Android-Twitter.../twidere.component.common/src/main/java/org/mariotaku/microblog/library/twitter/api/DirectMessagesResources.java

72 lines
3.3 KiB
Java
Raw Normal View History

2014-07-03 07:48:39 +02:00
/*
* Twidere - Twitter client for Android
2014-07-03 07:48:39 +02:00
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
2014-07-03 07:48:39 +02:00
*
* http://www.apache.org/licenses/LICENSE-2.0
2014-07-03 07:48:39 +02:00
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
2014-07-03 07:48:39 +02:00
*/
2016-05-13 07:08:02 +02:00
package org.mariotaku.microblog.library.twitter.api;
2014-07-03 07:48:39 +02:00
import org.mariotaku.restfu.annotation.method.GET;
import org.mariotaku.restfu.annotation.method.POST;
2016-01-20 04:52:08 +01:00
import org.mariotaku.restfu.annotation.param.KeyValue;
import org.mariotaku.restfu.annotation.param.Param;
import org.mariotaku.restfu.annotation.param.Queries;
import org.mariotaku.restfu.annotation.param.Query;
import org.mariotaku.restfu.http.BodyType;
2016-05-13 07:08:02 +02:00
import org.mariotaku.microblog.library.MicroBlogException;
import org.mariotaku.microblog.library.twitter.model.DirectMessage;
import org.mariotaku.microblog.library.twitter.model.Paging;
import org.mariotaku.microblog.library.twitter.model.ResponseList;
2014-07-03 07:48:39 +02:00
2015-05-09 07:20:47 +02:00
@SuppressWarnings("RedundantThrows")
2016-01-20 04:52:08 +01:00
@Queries({@KeyValue(key = "full_text", valueKey = "full_text"),
@KeyValue(key = "include_entities", valueKey = "include_entities"),
@KeyValue(key = "include_cards", valueKey = "include_cards"),
@KeyValue(key = "cards_platform", valueKey = "cards_platform")})
2014-07-03 07:48:39 +02:00
public interface DirectMessagesResources {
2015-05-06 21:47:09 +02:00
@POST("/direct_messages/destroy.json")
2016-01-20 04:52:08 +01:00
@BodyType(BodyType.FORM)
2016-05-13 07:08:02 +02:00
DirectMessage destroyDirectMessage(@Param("id") String id) throws MicroBlogException;
2015-05-06 21:47:09 +02:00
@GET("/direct_messages.json")
2016-05-13 07:08:02 +02:00
ResponseList<DirectMessage> getDirectMessages(@Query Paging paging) throws MicroBlogException;
2014-07-03 07:48:39 +02:00
2015-05-06 21:47:09 +02:00
@GET("/direct_messages/sent.json")
2016-05-13 07:08:02 +02:00
ResponseList<DirectMessage> getSentDirectMessages(@Query Paging paging) throws MicroBlogException;
2014-07-03 07:48:39 +02:00
2015-05-06 21:47:09 +02:00
@POST("/direct_messages/new.json")
2016-03-10 05:23:04 +01:00
DirectMessage sendDirectMessage(@Param("user_id") String userId, @Param("text") String text)
2016-05-13 07:08:02 +02:00
throws MicroBlogException;
2014-07-03 07:48:39 +02:00
2015-05-06 21:47:09 +02:00
@POST("/direct_messages/new.json")
2016-03-10 05:23:04 +01:00
DirectMessage sendDirectMessage(@Param("user_id") String userId, @Param("text") String text,
2016-05-13 07:08:02 +02:00
@Param("media_id") String mediaId) throws MicroBlogException;
2014-07-03 07:48:39 +02:00
2015-05-06 21:47:09 +02:00
@POST("/direct_messages/new.json")
DirectMessage sendDirectMessageToScreenName(@Param("screen_name") String screenName, @Param("text") String text)
2016-05-13 07:08:02 +02:00
throws MicroBlogException;
2014-07-03 07:48:39 +02:00
2015-05-06 21:47:09 +02:00
@POST("/direct_messages/new.json")
DirectMessage sendDirectMessageToScreenName(@Param("screen_name") String screenName, @Param("text") String text,
2016-05-13 07:08:02 +02:00
@Param("media_id") String mediaId) throws MicroBlogException;
2014-07-03 07:48:39 +02:00
2015-05-07 17:40:59 +02:00
@GET("/direct_messages/show.json")
2016-05-13 07:08:02 +02:00
DirectMessage showDirectMessage(@Query("id") String id) throws MicroBlogException;
2014-07-03 07:48:39 +02:00
}