musicus_mobile/client/lib/src/client.dart

502 lines
12 KiB
Dart
Raw Normal View History

2020-04-25 13:22:19 +02:00
import 'dart:convert';
import 'dart:io';
2020-04-25 13:22:19 +02:00
import 'package:http/http.dart' as http;
import 'package:meta/meta.dart';
2020-04-25 13:22:19 +02:00
import 'package:musicus_database/musicus_database.dart';
2020-05-08 19:02:39 +02:00
/// A user of the Musicus API.
class User {
/// Username.
final String name;
/// An optional email address.
final String email;
/// The user's password.
final String password;
User({
this.name,
this.email,
this.password,
});
Map<String, dynamic> toJson() => {
'name': name,
'email': email,
'password': password,
};
}
2020-04-25 13:22:19 +02:00
/// A simple http client for the Musicus server.
class MusicusClient {
/// URI scheme to use for the connection.
///
/// This will be used as the scheme parameter when creating Uri objects.
final String scheme;
/// The host name of the Musicus server to connect to.
///
/// This will be used as the host parameter when creating Uri objects.
2020-04-25 13:22:19 +02:00
final String host;
/// This will be used as the port parameter when creating Uri objects.
final int port;
2020-05-01 16:30:14 +02:00
/// Base path to the root location of the Musicus API.
final String basePath;
2020-05-08 19:02:39 +02:00
User _user;
/// The user to login.
User get user => _user;
set user(User user) {
_user = user;
_token = null;
}
2020-04-25 13:22:19 +02:00
final _client = http.Client();
2020-05-08 19:02:39 +02:00
/// The last retrieved access token.
String _token;
MusicusClient({
this.scheme = 'https',
@required this.host,
2020-05-01 16:30:14 +02:00
this.port = 443,
this.basePath,
2020-05-08 19:02:39 +02:00
User user,
}) : assert(scheme != null),
assert(port != null),
2020-05-08 19:02:39 +02:00
assert(host != null),
_user = user;
2020-05-01 16:30:14 +02:00
/// Create an URI using member variables and parameters.
Uri createUri({
@required String path,
Map<String, String> params,
}) {
return Uri(
scheme: scheme,
host: host,
port: port,
path: basePath != null ? basePath + path : path,
queryParameters: params,
);
}
2020-05-08 19:02:39 +02:00
/// Register a new user.
///
/// This will return true, if the action was successful. Subsequent requests
/// will automatically be made as the new user.
Future<bool> register(User newUser) async {
final response = await _client.post(
createUri(
path: '/register',
),
headers: {'Content-Type': 'application/json'},
body: jsonEncode(newUser.toJson()),
);
if (response.statusCode == HttpStatus.ok) {
_user = newUser;
_token = null;
return true;
} else {
return false;
}
}
/// Retrieve an access token for [user].
///
/// The token will land in [_token]. If the login failed, a
/// [MusicusLoginFailedException] will be thrown.
Future<void> _login() async {
final response = await _client.post(
createUri(
path: '/login',
),
headers: {'Content-Type': 'application/json'},
body: jsonEncode(user.toJson()),
);
if (response.statusCode == HttpStatus.ok) {
_token = response.body;
} else {
throw MusicusLoginFailedException();
}
}
/// Make a request with authorization.
///
/// This will ensure, that the request will be made with a valid
/// authorization header. If [user] is null, this will throw a
/// [MusicusNotLoggedInException]. If it is neccessary, this will login the
/// user and throw a [MusicusLoginFailedException] if that failed. If the
/// user is not authorized to perform the requested action, this will throw
/// a [MusicusNotAuthorizedException].
Future<http.Response> _authorized(String method, Uri uri,
{Map<String, String> headers, String body}) async {
if (_user != null) {
Future<http.Response> _request() async {
final request = http.Request(method, uri);
request.headers.addAll(headers);
request.headers['Authorization'] = 'Bearer $_token';
request.body = body;
return await http.Response.fromStream(await _client.send(request));
}
http.Response response;
if (_token != null) {
response = await _request();
if (response.statusCode == HttpStatus.unauthorized) {
await _login();
response = await _request();
}
} else {
await _login();
response = await _request();
}
if (response.statusCode == HttpStatus.forbidden) {
throw MusicusNotAuthorizedException();
} else {
return response;
}
} else {
throw MusicusNotLoggedInException();
}
}
/// Get a list of persons.
///
/// You can get another page using the [page] parameter. If a non empty
/// [search] string is provided, the persons will get filtered based on that
/// string.
Future<List<Person>> getPersons([int page, String search]) async {
final params = <String, String>{};
if (page != null) {
params['p'] = page.toString();
}
if (search != null) {
params['s'] = search;
}
2020-05-01 16:30:14 +02:00
final response = await _client.get(createUri(
path: '/persons',
2020-05-01 16:30:14 +02:00
params: params,
));
2020-04-25 13:22:19 +02:00
final json = jsonDecode(response.body);
return json.map<Person>((j) => Person.fromJson(j)).toList();
}
/// Get a person by ID.
Future<Person> getPerson(int id) async {
2020-05-01 16:30:14 +02:00
final response = await _client.get(createUri(
path: '/persons/$id',
));
2020-04-25 13:22:19 +02:00
final json = jsonDecode(response.body);
return Person.fromJson(json);
}
/// Delete a person by ID.
Future<void> deletePerson(int id) async {
2020-05-08 19:02:39 +02:00
await _authorized(
'DELETE',
createUri(
path: '/persons/$id',
),
);
}
2020-04-25 13:22:19 +02:00
/// Create or update a person.
///
/// Returns true, if the operation was successful.
Future<bool> putPerson(Person person) async {
2020-05-08 19:02:39 +02:00
final response = await _authorized(
'PUT',
createUri(
path: '/persons/${person.id}',
),
headers: {'Content-Type': 'application/json'},
body: jsonEncode(person.toJson()),
);
return response.statusCode == HttpStatus.ok;
2020-04-25 13:22:19 +02:00
}
/// Get a list of instruments.
///
/// You can get another page using the [page] parameter. If a non empty
/// [search] string is provided, the results will get filtered based on that
/// string.
Future<List<Instrument>> getInstruments([int page, String search]) async {
final params = <String, String>{};
if (page != null) {
params['p'] = page.toString();
}
if (search != null) {
params['s'] = search;
}
2020-05-01 16:30:14 +02:00
final response = await _client.get(createUri(
path: '/instruments',
2020-05-01 16:30:14 +02:00
params: params,
));
2020-04-25 13:22:19 +02:00
final json = jsonDecode(response.body);
return json.map<Instrument>((j) => Instrument.fromJson(j)).toList();
}
/// Get an instrument by ID.
Future<Instrument> getInstrument(int id) async {
2020-05-01 16:30:14 +02:00
final response = await _client.get(createUri(
path: '/instruments/$id',
));
2020-04-25 13:22:19 +02:00
final json = jsonDecode(response.body);
return Instrument.fromJson(json);
}
/// Create or update an instrument.
///
/// Returns true, if the operation was successful.
Future<bool> putInstrument(Instrument instrument) async {
2020-05-08 19:02:39 +02:00
final response = await _authorized(
'PUT',
createUri(
path: '/instruments/${instrument.id}',
),
headers: {'Content-Type': 'application/json'},
body: jsonEncode(instrument.toJson()),
);
return response.statusCode == HttpStatus.ok;
2020-04-25 13:22:19 +02:00
}
/// Delete an instrument by ID.
Future<void> deleteInstrument(int id) async {
2020-05-08 19:02:39 +02:00
await _authorized(
'DELETE',
createUri(
path: '/instruments/$id',
),
);
}
/// Get a list of works written by the person with the ID [personId].
///
/// You can get another page using the [page] parameter. If a non empty
/// [search] string is provided, the results will get filtered based on that
/// string.
Future<List<WorkInfo>> getWorks(int personId,
[int page, String search]) async {
final params = <String, String>{};
if (page != null) {
params['p'] = page.toString();
}
if (search != null) {
params['s'] = search;
}
2020-05-01 16:30:14 +02:00
final response = await _client.get(createUri(
path: '/persons/$personId/works',
2020-05-01 16:30:14 +02:00
params: params,
));
2020-04-25 13:22:19 +02:00
final json = jsonDecode(response.body);
return json.map<WorkInfo>((j) => WorkInfo.fromJson(j)).toList();
2020-04-25 13:22:19 +02:00
}
/// Get a work by ID.
Future<WorkInfo> getWork(int id) async {
2020-05-01 16:30:14 +02:00
final response = await _client.get(createUri(
path: '/works/$id',
));
2020-04-25 13:22:19 +02:00
final json = jsonDecode(response.body);
return WorkInfo.fromJson(json);
2020-04-25 13:22:19 +02:00
}
/// Delete a work by ID.
Future<void> deleteWork(int id) async {
2020-05-08 19:02:39 +02:00
await _authorized(
'DELETE',
createUri(
path: '/works/$id',
),
);
}
/// Get a list of recordings of the work with the ID [workId].
///
/// You can get another page using the [page] parameter.
Future<List<RecordingInfo>> getRecordings(int workId, [int page]) async {
final params = <String, String>{};
if (page != null) {
params['p'] = page.toString();
}
2020-05-01 16:30:14 +02:00
final response = await _client.get(createUri(
path: '/works/$workId/recordings',
2020-05-01 16:30:14 +02:00
params: params,
));
2020-04-25 13:22:19 +02:00
final json = jsonDecode(response.body);
return json.map<RecordingInfo>((j) => RecordingInfo.fromJson(j)).toList();
2020-04-25 13:22:19 +02:00
}
/// Create or update a work.
///
/// Returns true, if the operation was successful.
Future<bool> putWork(WorkInfo workInfo) async {
2020-05-08 19:02:39 +02:00
final response = await _authorized(
'PUT',
createUri(
path: '/works/${workInfo.work.id}',
),
headers: {'Content-Type': 'application/json'},
body: jsonEncode(workInfo.toJson()),
);
return response.statusCode == HttpStatus.ok;
2020-04-25 13:22:19 +02:00
}
/// Get a list of ensembles.
///
/// You can get another page using the [page] parameter. If a non empty
/// [search] string is provided, the results will get filtered based on that
/// string.
Future<List<Ensemble>> getEnsembles([int page, String search]) async {
final params = <String, String>{};
if (page != null) {
params['p'] = page.toString();
}
if (search != null) {
params['s'] = search;
}
2020-05-01 16:30:14 +02:00
final response = await _client.get(createUri(
path: '/ensembles',
2020-05-01 16:30:14 +02:00
params: params,
));
2020-04-25 13:22:19 +02:00
final json = jsonDecode(response.body);
return json.map<Ensemble>((j) => Ensemble.fromJson(j)).toList();
}
/// Get an ensemble by ID.
Future<Ensemble> getEnsemble(int id) async {
2020-05-01 16:30:14 +02:00
final response = await _client.get(createUri(
path: '/ensembles/$id',
));
2020-04-25 13:22:19 +02:00
final json = jsonDecode(response.body);
return Ensemble.fromJson(json);
}
/// Create or update an ensemble.
///
/// Returns true, if the operation was successful.
Future<bool> putEnsemble(Ensemble ensemble) async {
2020-05-08 19:02:39 +02:00
final response = await _authorized(
'PUT',
createUri(
path: '/ensembles/${ensemble.id}',
),
headers: {'Content-Type': 'application/json'},
body: jsonEncode(ensemble.toJson()),
);
return response.statusCode == HttpStatus.ok;
2020-04-25 13:22:19 +02:00
}
/// Delete an ensemble by ID.
Future<void> deleteEnsemble(int id) async {
2020-05-08 19:02:39 +02:00
await _authorized(
'DELETE',
createUri(
path: '/ensembles/$id',
),
);
}
2020-04-25 13:22:19 +02:00
/// Get a recording by ID.
Future<RecordingInfo> getRecording(int id) async {
2020-05-01 16:30:14 +02:00
final response = await _client.get(createUri(
path: '/recordings/$id',
));
2020-04-25 13:22:19 +02:00
final json = jsonDecode(response.body);
return RecordingInfo.fromJson(json);
2020-04-25 13:22:19 +02:00
}
/// Create or update a recording.
///
/// Returns true, if the operation was successful.
Future<bool> putRecording(RecordingInfo recordingInfo) async {
2020-05-08 19:02:39 +02:00
final response = await _authorized(
'PUT',
createUri(
path: '/recordings/${recordingInfo.recording.id}',
),
headers: {'Content-Type': 'application/json'},
body: jsonEncode(recordingInfo.toJson()),
);
return response.statusCode == HttpStatus.ok;
2020-04-25 13:22:19 +02:00
}
/// Delete a recording by ID.
Future<void> deleteRecording(int id) async {
2020-05-08 19:02:39 +02:00
await _authorized(
'DELETE',
createUri(
path: '/recordings/$id',
),
);
}
2020-04-25 13:22:19 +02:00
/// Close the internal http client.
void dispose() {
_client.close();
}
}
2020-05-08 19:02:39 +02:00
class MusicusLoginFailedException implements Exception {
MusicusLoginFailedException();
String toString() => 'MusicusLoginFailedException: The username or password '
'was wrong.';
}
class MusicusNotLoggedInException implements Exception {
MusicusNotLoggedInException();
String toString() =>
'MusicusNotLoggedInException: The user must be logged in to perform '
'this action.';
}
class MusicusNotAuthorizedException implements Exception {
MusicusNotAuthorizedException();
String toString() =>
'MusicusNotAuthorizedException: The logged in user is not allowed to '
'perform this action.';
}