mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
32 lines
1.0 KiB
Dart
32 lines
1.0 KiB
Dart
import 'package:comunic/helpers/groups_helper.dart';
|
|
import 'package:comunic/helpers/users_helper.dart';
|
|
import 'package:comunic/models/advanced_user_info.dart';
|
|
import 'package:comunic/models/api_request.dart';
|
|
import 'package:comunic/models/group.dart';
|
|
|
|
/// Forez groups helper
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class ForezGroupsHelper {
|
|
static Future<List<Group>> getForezGroups() async {
|
|
return (await APIRequest.withLogin("forez/get_groups").execWithThrow())
|
|
.getArray()
|
|
.cast<Map<String, dynamic>>()
|
|
.map(GroupsHelper.getGroupFromAPI)
|
|
.toList();
|
|
}
|
|
|
|
/// Get advanced information about a Forez member
|
|
///
|
|
/// This methods throws an exception in case of failure
|
|
static Future<AdvancedUserInfo> getMemberInfo(int groupID, int userID) async {
|
|
final response = await APIRequest.withLogin("forez/get_member_info")
|
|
.addInt("group", groupID)
|
|
.addInt("user", userID)
|
|
.execWithThrowGetObject();
|
|
|
|
return UsersHelper.apiToAdvancedUserInfo(response);
|
|
}
|
|
}
|