actions-test/lib/backend/request.dart
Jakob Meier 596c8cc4eb
Started working on Join Room Screen
Work already done:
- moving the New Room screen to a different endpoint
- fetching public rooms using the post API
- displaying public rooms

Suggestion for user interaction:
1. click on room
2. open bottomSheet with information and join button
3. click "join" to join room
2023-03-20 21:19:25 +01:00

63 lines
1.8 KiB
Dart

import 'package:http/http.dart' as http;
import 'dart:convert';
import './resolve_url.dart';
import './user.dart';
enum Result { ok, err }
class Response {
final Map<String, dynamic> body;
final Result res;
const Response({required this.body, required this.res});
}
Future<Response> usePostApi(
{required OutbagServer target,
String path = '',
required Map<String, String> headers,
required Map<String, dynamic> body}) async {
final resp = await http.post(Uri.parse('${target.base}api/$path'),
headers: headers, body: jsonEncode({'data': body}));
final json = jsonDecode(resp.body);
return Response(
body: json, res: resp.statusCode == 200 ? Result.ok : Result.err);
}
Future<Response> postWithCreadentials(
{required OutbagServer target,
String path = '',
required Map<String, dynamic> body,
required User credentials}) async {
Map<String, String> headers = {
"Content-Type": "application/json",
'Authorization':
'Digest name=${credentials.username} server=${target.tag} accountKey=${credentials.password}'
};
return await usePostApi(
target: target, path: path, headers: headers, body: body);
}
Future<Response> postWithToken(
{required OutbagServer target,
String path = '',
required Map<String, dynamic> body,
required String token}) async {
Map<String, String> headers = {
"Content-Type": "application/json",
'Authorization': 'Bearer $token'
};
return await usePostApi(
target: target, path: path, headers: headers, body: body);
}
Future<Response> postUnauthorized(
{required OutbagServer target,
String path = '',
required Map<String, dynamic> body}) async {
Map<String, String> headers = {
"Content-Type": "application/json",
};
return await usePostApi(
target: target, path: path, headers: headers, body: body);
}