1
0
Fork 0
mirror of synced 2024-09-12 23:53:15 +12:00
appwrite/app/sdks/flutter-dart/lib/services/teams.dart

133 lines
5.7 KiB
Dart
Raw Normal View History

2020-03-27 02:20:07 +13:00
import 'dart:html';
2020-01-31 05:18:59 +13:00
import "package:appwrite/service.dart";
import "package:appwrite/client.dart";
import 'package:dio/dio.dart';
2020-03-27 02:20:07 +13:00
import 'package:meta/meta.dart';
import '../enums.dart';
2020-01-31 05:18:59 +13:00
class Teams extends Service {
Teams(Client client): super(client);
/// Get a list of all the current user teams. You can use the query params to
/// filter your results. On admin mode, this endpoint will return a list of all
/// of the project teams. [Learn more about different API modes](/docs/admin).
2020-03-27 02:20:07 +13:00
Future<Response> list({String search = null, int limit = 25, int offset = null, String orderType = 'ASC'}) async {
2020-01-31 05:18:59 +13:00
String path = '/teams';
Map<String, dynamic> params = {
'search': search,
'limit': limit,
'offset': offset,
'orderType': orderType,
};
2020-03-27 02:20:07 +13:00
return await this.client.call(HttpMethod.get, path: path, params: params);
2020-01-31 05:18:59 +13:00
}
/// Create a new team. The user who creates the team will automatically be
/// assigned as the owner of the team. The team owner can invite new members,
/// who will be able add new owners and update or delete the team from your
/// project.
2020-03-27 02:20:07 +13:00
Future<Response> create({@required String name, List roles = const ["owner"]}) async {
2020-01-31 05:18:59 +13:00
String path = '/teams';
Map<String, dynamic> params = {
'name': name,
'roles': roles,
};
2020-03-27 02:20:07 +13:00
return await this.client.call(HttpMethod.post, path: path, params: params);
2020-01-31 05:18:59 +13:00
}
/// Get team by its unique ID. All team members have read access for this
/// resource.
2020-03-27 02:20:07 +13:00
Future<Response> get({@required String teamId}) async {
2020-01-31 05:18:59 +13:00
String path = '/teams/{teamId}'.replaceAll(RegExp('{teamId}'), teamId);
Map<String, dynamic> params = {
};
2020-03-27 02:20:07 +13:00
return await this.client.call(HttpMethod.get, path: path, params: params);
2020-01-31 05:18:59 +13:00
}
/// Update team by its unique ID. Only team owners have write access for this
/// resource.
2020-03-27 02:20:07 +13:00
Future<Response> update({@required String teamId, @required String name}) async {
2020-01-31 05:18:59 +13:00
String path = '/teams/{teamId}'.replaceAll(RegExp('{teamId}'), teamId);
Map<String, dynamic> params = {
'name': name,
};
2020-03-27 02:20:07 +13:00
return await this.client.call(HttpMethod.put, path: path, params: params);
2020-01-31 05:18:59 +13:00
}
/// Delete team by its unique ID. Only team owners have write access for this
/// resource.
2020-03-27 02:20:07 +13:00
Future<Response> delete({@required String teamId}) async {
2020-01-31 05:18:59 +13:00
String path = '/teams/{teamId}'.replaceAll(RegExp('{teamId}'), teamId);
Map<String, dynamic> params = {
};
2020-03-27 02:20:07 +13:00
return await this.client.call(HttpMethod.delete, path: path, params: params);
2020-01-31 05:18:59 +13:00
}
/// Get team members by the team unique ID. All team members have read access
/// for this list of resources.
2020-03-27 02:20:07 +13:00
Future<Response> getMemberships({@required String teamId}) async {
2020-01-31 05:18:59 +13:00
String path = '/teams/{teamId}/memberships'.replaceAll(RegExp('{teamId}'), teamId);
Map<String, dynamic> params = {
};
2020-03-27 02:20:07 +13:00
return await this.client.call(HttpMethod.get, path: path, params: params);
2020-01-31 05:18:59 +13:00
}
2020-02-14 19:28:54 +13:00
/// Use this endpoint to invite a new member to join your team. An email with a
/// link to join the team will be sent to the new member email address if the
/// member doesn't exist in the project it will be created automatically.
2020-01-31 05:18:59 +13:00
///
2020-02-14 19:28:54 +13:00
/// Use the 'URL' parameter to redirect the user from the invitation email back
2020-01-31 05:18:59 +13:00
/// to your app. When the user is redirected, use the [Update Team Membership
2020-02-14 19:28:54 +13:00
/// Status](/docs/teams#updateMembershipStatus) endpoint to allow the user to
/// accept the invitation to the team.
2020-01-31 05:18:59 +13:00
///
/// Please note that in order to avoid a [Redirect
/// Attacks](https://github.com/OWASP/CheatSheetSeries/blob/master/cheatsheets/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.md)
/// the only valid redirect URL's are the once from domains you have set when
/// added your platforms in the console interface.
2020-03-27 02:20:07 +13:00
Future<Response> createMembership({@required String teamId, @required String email, @required List roles, @required String url, String name = null}) async {
2020-01-31 05:18:59 +13:00
String path = '/teams/{teamId}/memberships'.replaceAll(RegExp('{teamId}'), teamId);
Map<String, dynamic> params = {
'email': email,
'name': name,
'roles': roles,
'url': url,
};
2020-03-27 02:20:07 +13:00
return await this.client.call(HttpMethod.post, path: path, params: params);
2020-01-31 05:18:59 +13:00
}
/// This endpoint allows a user to leave a team or for a team owner to delete
/// the membership of any other team member. You can also use this endpoint to
/// delete a user membership even if he didn't accept it.
2020-03-27 02:20:07 +13:00
Future<Response> deleteMembership({@required String teamId, @required String inviteId}) async {
2020-01-31 05:18:59 +13:00
String path = '/teams/{teamId}/memberships/{inviteId}'.replaceAll(RegExp('{teamId}'), teamId).replaceAll(RegExp('{inviteId}'), inviteId);
Map<String, dynamic> params = {
};
2020-03-27 02:20:07 +13:00
return await this.client.call(HttpMethod.delete, path: path, params: params);
2020-01-31 05:18:59 +13:00
}
2020-02-14 19:28:54 +13:00
/// Use this endpoint to allow a user to accept an invitation to join a team
/// after he is being redirected back to your app from the invitation email he
/// was sent.
2020-03-27 02:20:07 +13:00
Future<Response> updateMembershipStatus({@required String teamId, @required String inviteId, @required String userId, @required String secret}) async {
2020-01-31 05:18:59 +13:00
String path = '/teams/{teamId}/memberships/{inviteId}/status'.replaceAll(RegExp('{teamId}'), teamId).replaceAll(RegExp('{inviteId}'), inviteId);
Map<String, dynamic> params = {
'userId': userId,
'secret': secret,
};
2020-03-27 02:20:07 +13:00
return await this.client.call(HttpMethod.patch, path: path, params: params);
2020-01-31 05:18:59 +13:00
}
}