import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:solian/models/channel.dart'; import 'package:solian/providers/auth.dart'; import 'package:solian/widgets/account/relative_select.dart'; import 'package:uuid/uuid.dart'; class ChannelProvider extends GetxController { RxBool isLoading = false.obs; RxList availableChannels = RxList.empty(growable: true); List get groupChannels => availableChannels.where((x) => x.type == 0).toList(); List get directChannels => availableChannels.where((x) => x.type == 1).toList(); Future refreshAvailableChannel() async { final AuthProvider auth = Get.find(); if (auth.isAuthorized.isFalse) throw Exception('unauthorized'); isLoading.value = true; final resp = await listAvailableChannel(); isLoading.value = false; availableChannels.value = resp.body.map((x) => Channel.fromJson(x)).toList().cast(); availableChannels.refresh(); } Future getChannel(String alias, {String realm = 'global'}) async { final AuthProvider auth = Get.find(); if (auth.isAuthorized.isFalse) throw Exception('unauthorized'); final client = auth.configureClient('messaging'); final resp = await client.get('/channels/$realm/$alias'); if (resp.statusCode != 200) { throw Exception(resp.bodyString); } return resp; } Future getMyChannelProfile(String alias, {String realm = 'global'}) async { final AuthProvider auth = Get.find(); if (auth.isAuthorized.isFalse) throw Exception('unauthorized'); final client = auth.configureClient('messaging'); final resp = await client.get('/channels/$realm/$alias/me'); if (resp.statusCode != 200) { throw Exception(resp.bodyString); } return resp; } Future getChannelOngoingCall(String alias, {String realm = 'global'}) async { final AuthProvider auth = Get.find(); if (auth.isAuthorized.isFalse) throw Exception('unauthorized'); final client = auth.configureClient('messaging'); final resp = await client.get('/channels/$realm/$alias/calls/ongoing'); if (resp.statusCode == 404) { return null; } else if (resp.statusCode != 200) { throw Exception(resp.bodyString); } return resp; } Future listChannel({String scope = 'global'}) async { final AuthProvider auth = Get.find(); if (auth.isAuthorized.isFalse) throw Exception('unauthorized'); final client = auth.configureClient('messaging'); final resp = await client.get('/channels/$scope'); if (resp.statusCode != 200) { throw Exception(resp.bodyString); } return resp; } Future listAvailableChannel({String realm = 'global'}) async { final AuthProvider auth = Get.find(); if (auth.isAuthorized.isFalse) throw Exception('unauthorized'); final client = auth.configureClient('messaging'); final resp = await client.get('/channels/$realm/me/available'); if (resp.statusCode != 200) { throw Exception(resp.bodyString); } return resp; } Future createChannel(String scope, dynamic payload) async { final AuthProvider auth = Get.find(); if (auth.isAuthorized.isFalse) throw Exception('unauthorized'); final client = auth.configureClient('messaging'); final resp = await client.post('/channels/$scope', payload); if (resp.statusCode != 200) { throw Exception(resp.bodyString); } return resp; } Future createDirectChannel( BuildContext context, String scope) async { final AuthProvider auth = Get.find(); if (auth.isAuthorized.isFalse) throw Exception('unauthorized'); final related = await showModalBottomSheet( useRootNavigator: true, context: context, builder: (context) => RelativeSelector( title: 'channelOrganizeDirectHint'.tr, ), ); if (related == null) return null; final prof = auth.userProfile.value!; final client = auth.configureClient('messaging'); final resp = await client.post('/channels/$scope/dm', { 'alias': const Uuid().v4().replaceAll('-', '').substring(0, 12), 'name': 'DM', 'description': 'A direct message channel between @${prof['name']} and @${related.name}', 'related_user': related.id, 'is_encrypted': false, }); if (resp.statusCode != 200) { throw Exception(resp.bodyString); } return resp; } Future updateChannel(String scope, int id, dynamic payload) async { final AuthProvider auth = Get.find(); if (auth.isAuthorized.isFalse) throw Exception('unauthorized'); final client = auth.configureClient('messaging'); final resp = await client.put('/channels/$scope/$id', payload); if (resp.statusCode != 200) { throw Exception(resp.bodyString); } return resp; } }