summaryrefslogtreecommitdiffstats
path: root/app/src/main/java/app/fedilab/android/client/endpoints/MastodonTagService.java
blob: a3f6e46692a2be3c890203ba8869f4551cfd2495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package app.fedilab.android.client.endpoints;
/* Copyright 2022 Thomas Schneider
 *
 * This file is a part of Fedilab
 *
 * 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.
 *
 * Fedilab 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 Fedilab; if not,
 * see <http://www.gnu.org/licenses>. */


import java.util.List;

import app.fedilab.android.client.entities.api.Tag;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Header;
import retrofit2.http.POST;
import retrofit2.http.Path;

public interface MastodonTagService {

    //Get followed tags
    @GET("followed_tags")
    Call<List<Tag>> getFollowedTags(
            @Header("Authorization") String token
    );


    //Get followed tags
    @GET("tags/{name}")
    Call<Tag> getTag(
            @Header("Authorization") String token,
            @Path("name") String name
    );

    //Follow tag
    @POST("tags/{name}/follow")
    Call<Tag> follow(
            @Header("Authorization") String app_token,
            @Path("name") String name
    );

    //Unfollow tag
    @POST("tags/{name}/unfollow")
    Call<Tag> unfollow(
            @Header("Authorization") String app_token,
            @Path("name") String name
    );
}