-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathUserService.swift
98 lines (82 loc) · 3.1 KB
/
UserService.swift
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
import Foundation
import Combine
import WordPressAPI
import WordPressUI
/// UserService is responsible for fetching user acounts via the .org REST API – it's the replacement for `UsersService` (the XMLRPC-based approach)
///
actor UserService: UserServiceProtocol, UserDataStoreProvider {
private let client: WordPressClient
private let _dataStore: InMemoryDataStore<DisplayUser> = .init()
var userDataStore: any DataStore<DisplayUser> { _dataStore }
private var _currentUser: UserWithEditContext?
private var currentUser: UserWithEditContext? {
get async {
if _currentUser == nil {
_currentUser = try? await self.client.api.users.retrieveMeWithEditContext().data
}
return _currentUser
}
}
init(client: WordPressClient) {
self.client = client
}
func fetchUsers() async throws {
let sequence = await client.api.users.sequenceWithEditContext(params: .init(perPage: 100))
var started = false
for try await users in sequence {
if !started {
try await _dataStore.delete(query: .all)
}
try await _dataStore.store(users.compactMap { DisplayUser(user: $0) })
started = true
}
}
func isCurrentUserCapableOf(_ capability: String) async -> Bool {
await currentUser?.capabilities.keys.contains(capability) == true
}
func deleteUser(id: Int32, reassigningPostsTo newUserId: Int32) async throws {
let result = try await client.api.users.delete(
userId: id,
params: UserDeleteParams(reassign: newUserId)
).data
// Remove the deleted user from the cached users list.
if result.deleted {
try await _dataStore.delete(query: .identifier(in: [id]))
}
}
func setNewPassword(id: Int32, newPassword: String) async throws {
_ = try await client.api.users.update(
userId: Int32(id),
params: UserUpdateParams(password: newPassword)
)
}
}
private extension DisplayUser {
init?(user: UserWithEditContext) {
guard let role = user.roles.first else {
return nil
}
self.init(
id: user.id,
handle: user.slug,
username: user.username,
firstName: user.firstName,
lastName: user.lastName,
displayName: user.name,
profilePhotoUrl: Self.profilePhotoUrl(for: user),
role: role,
emailAddress: user.email,
websiteUrl: user.link,
biography: user.description
)
}
static func profilePhotoUrl(for user: UserWithEditContext) -> URL? {
// The key is the size of the avatar. Get the largetst one, which is 96x96px.
// https://github.com/WordPress/wordpress-develop/blob/6.6.2/src/wp-includes/rest-api.php#L1253-L1260
guard let url = user.avatarUrls?
.max(by: { $0.key.compare($1.key, options: .numeric) == .orderedAscending } )?
.value
else { return nil }
return URL(string: url)
}
}