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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/*
* Copyright (C) 2008-2023, Juick
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.juick.www.api;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.juick.model.User;
import com.juick.service.UserService;
import com.juick.www.WebApp;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.http.MediaType;
import org.springframework.security.oauth2.core.AuthorizationGrantType;
import org.springframework.security.oauth2.core.ClientAuthenticationMethod;
import org.springframework.security.oauth2.server.authorization.client.RegisteredClient;
import org.springframework.security.oauth2.server.authorization.client.RegisteredClientRepository;
import org.springframework.security.oauth2.server.authorization.settings.ClientSettings;
import org.springframework.web.bind.annotation.*;
import javax.inject.Inject;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.UUID;
@RestController
public class Mastodon {
@Value("${web_domain:localhost}")
private String domain;
@Inject
WebApp webApp;
@Inject
UserService userService;
@Inject
RegisteredClientRepository registeredClientRepository;
public record ApplicationRequest(@JsonProperty("client_name") String clientName,
@JsonProperty("redirect_uris") String redirectUris,
@JsonProperty("scopes") String scopes) {
}
public record ApplicationResponse(String id,
@JsonProperty("client_name") String name,
@JsonProperty("redirect_uri") String redirectUri,
@JsonProperty("client_id") String clientId,
@JsonProperty("client_secret") String clientSecret) {
}
public record CredentialAccount(String id, String username, String acct,
@JsonProperty("display_name") String displayName,
@JsonProperty("followers_count") Integer followersCount,
@JsonProperty("following_count") Integer followingCount,
String avatar) {
}
private Collection<String> parseScopes(String s) {
return s != null ? Arrays.asList(s.split(" ")) : Collections.emptyList();
}
@PostMapping(value = "/api/v1/apps", consumes = { MediaType.APPLICATION_JSON_VALUE })
public ApplicationResponse apps(@RequestBody ApplicationRequest application) {
return apps(application.clientName(), application.redirectUris(), application.scopes());
}
@PostMapping(value = "/api/v1/apps", consumes = { MediaType.APPLICATION_FORM_URLENCODED_VALUE, MediaType.MULTIPART_FORM_DATA_VALUE })
public ApplicationResponse apps(@RequestParam("client_name") String clientName,
@RequestParam("redirect_uris") String redirectUris,
@RequestParam("scopes") String scopes) {
var secret = UUID.randomUUID().toString();
RegisteredClient registeredClient = RegisteredClient.withId(UUID.randomUUID().toString())
.clientId(UUID.randomUUID().toString())
.clientSecret("{noop}" + secret)
.clientName(clientName)
.clientAuthenticationMethods(coll -> coll.addAll(List.of(
ClientAuthenticationMethod.CLIENT_SECRET_POST,
ClientAuthenticationMethod.CLIENT_SECRET_BASIC
)))
.authorizationGrantType(AuthorizationGrantType.AUTHORIZATION_CODE)
.redirectUri(redirectUris)
.scopes((coll) -> coll.addAll(parseScopes(scopes)))
.clientSettings(ClientSettings.builder().requireAuthorizationConsent(true).build()).build();
registeredClientRepository.save(registeredClient);
return new ApplicationResponse(
registeredClient.getId(),
registeredClient.getClientName(),
String.join(",", registeredClient.getRedirectUris()),
registeredClient.getClientId(),
secret
);
}
public record Instance(String domain) {}
@GetMapping("/api/v1/instance")
public Instance getInstance() {
return new Instance(domain);
}
@GetMapping("/api/v1/accounts/verify_credentials")
public CredentialAccount account(@ModelAttribute User visitor) {
return new CredentialAccount(
String.valueOf(visitor.getUid()),
visitor.getName(),
visitor.getName(),
visitor.getFullName(),
userService.getUserReaders(visitor.getUid()).size(),
userService.getUserFriends(visitor.getUid()).size(),
webApp.getAvatarUrl(visitor)
);
}
}
|