76 lines
2.2 KiB
Dart
76 lines
2.2 KiB
Dart
import 'package:get/get.dart';
|
|
import 'package:solian/models/account.dart';
|
|
import 'package:solian/models/relations.dart';
|
|
import 'package:solian/providers/auth.dart';
|
|
|
|
class RelationshipProvider extends GetxController {
|
|
final RxList<Relationship> _friends = RxList.empty(growable: true);
|
|
|
|
Future<void> refreshFriendList() async {
|
|
final resp = await listRelationWithStatus(1);
|
|
_friends.value = resp.body
|
|
.map((e) => Relationship.fromJson(e))
|
|
.toList()
|
|
.cast<Relationship>();
|
|
_friends.refresh();
|
|
}
|
|
|
|
bool hasFriend(Account account) {
|
|
final auth = Get.find<AuthProvider>();
|
|
if (auth.userProfile.value!['id'] == account.id) return true;
|
|
return _friends.any((x) => x.relatedId == account.id);
|
|
}
|
|
|
|
Future<Response> listRelation() {
|
|
final AuthProvider auth = Get.find();
|
|
final client = auth.configureClient('auth');
|
|
return client.get('/users/me/relations');
|
|
}
|
|
|
|
Future<Response> listRelationWithStatus(int status) {
|
|
final AuthProvider auth = Get.find();
|
|
final client = auth.configureClient('auth');
|
|
return client.get('/users/me/relations?status=$status');
|
|
}
|
|
|
|
Future<Response> makeFriend(String username) async {
|
|
final AuthProvider auth = Get.find();
|
|
final client = auth.configureClient('auth');
|
|
final resp = await client.post('/users/me/relations?related=$username', {});
|
|
if (resp.statusCode != 200) {
|
|
throw Exception(resp.bodyString);
|
|
}
|
|
|
|
return resp;
|
|
}
|
|
|
|
Future<Response> handleRelation(
|
|
Relationship relationship, bool doAccept) async {
|
|
final AuthProvider auth = Get.find();
|
|
final client = auth.configureClient('auth');
|
|
final resp = await client.post(
|
|
'/users/me/relations/${relationship.relatedId}/${doAccept ? 'accept' : 'decline'}',
|
|
{},
|
|
);
|
|
if (resp.statusCode != 200) {
|
|
throw Exception(resp.bodyString);
|
|
}
|
|
|
|
return resp;
|
|
}
|
|
|
|
Future<Response> editRelation(Relationship relationship, int status) async {
|
|
final AuthProvider auth = Get.find();
|
|
final client = auth.configureClient('auth');
|
|
final resp = await client.patch(
|
|
'/users/me/relations/${relationship.relatedId}',
|
|
{'status': status},
|
|
);
|
|
if (resp.statusCode != 200) {
|
|
throw Exception(resp.bodyString);
|
|
}
|
|
|
|
return resp;
|
|
}
|
|
}
|