mirror of
https://github.com/johrpan/musicus_mobile.git
synced 2025-10-27 03:07:26 +01:00
Add basic http server
This commit is contained in:
parent
a43bd91922
commit
d77f49a21b
17 changed files with 340 additions and 0 deletions
26
server/lib/src/works.dart
Normal file
26
server/lib/src/works.dart
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
import 'package:aqueduct/aqueduct.dart';
|
||||
import 'package:musicus_database/musicus_database.dart';
|
||||
|
||||
class WorksController extends ResourceController {
|
||||
final Database db;
|
||||
|
||||
WorksController(this.db);
|
||||
|
||||
@Operation.get('id')
|
||||
Future<Response> getWork(@Bind.path('id') int id) async {
|
||||
final work = await db.workById(id).getSingle();
|
||||
if (work != null) {
|
||||
return Response.ok(work);
|
||||
} else {
|
||||
return Response.notFound();
|
||||
}
|
||||
}
|
||||
|
||||
@Operation.put('id')
|
||||
Future<Response> putWork(
|
||||
@Bind.path('id') int id, @Bind.body() Map<String, dynamic> json) async {
|
||||
final data = WorkData.fromJson(json);
|
||||
await db.updateWork(data);
|
||||
return Response.ok(null);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue