Mastodon: remove the follows endpoint

The /v1/follows endpoint was removed. To follow a remote user, it is the
same as following a local user. Then, `FollowsResources` is no useful
anymore.

See: fb8ff632ee (diff-09f2c00f7872304c56d60bb926df6498)

Fix #1277
This commit is contained in:
François Magimel 2020-04-30 16:20:13 +02:00
parent 567dce9702
commit d29e102919
2 changed files with 0 additions and 46 deletions

View File

@ -1,40 +0,0 @@
/*
* Twidere - Twitter client for Android
*
* Copyright 2012-2017 Mariotaku Lee <mariotaku.lee@gmail.com>
*
* Licensed 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*/
package org.mariotaku.microblog.library.api.mastodon;
import org.mariotaku.microblog.library.MicroBlogException;
import org.mariotaku.microblog.library.model.mastodon.Account;
import org.mariotaku.restfu.annotation.method.POST;
import org.mariotaku.restfu.annotation.param.Param;
/**
* Created by mariotaku on 2017/4/17.
*/
public interface FollowsResources {
/**
* Following a remote user
*
* @param uri {@code username@domain} of the person you want to follow
* @return The local representation of the followed account, as an {@link Account}.
*/
@POST("/v1/follows")
Account followRemoteUser(@Param("uri") String uri) throws MicroBlogException;
}

View File

@ -111,12 +111,6 @@ class FriendshipPromises private constructor(val application: Application) {
}
AccountType.MASTODON -> {
val mastodon = account.newMicroBlogInstance(application, Mastodon::class.java)
if (account.key.host != userKey.host) {
if (screenName == null)
throw MicroBlogException("Screen name required to follow remote user")
return@then mastodon.followRemoteUser("$screenName@${userKey.host}")
.toParcelable(account)
}
mastodon.followUser(userKey.id)
return@then mastodon.getAccount(userKey.id).toParcelable(account)
}