2016-06-13 17:13:02 +02:00
|
|
|
library titama.server;
|
|
|
|
|
|
|
|
import 'package:rpc/rpc.dart';
|
|
|
|
|
|
|
|
import '../common/messages.dart';
|
|
|
|
|
|
|
|
@ApiClass(version: 'v1')
|
|
|
|
class TitamaApi {
|
|
|
|
|
|
|
|
final List<Course> _courses = new List<Course>();
|
|
|
|
|
|
|
|
TitamaApi() {
|
|
|
|
// example course, to remove once the database connection is implemented
|
|
|
|
Course course = new Course();
|
|
|
|
course
|
|
|
|
..title = "UlmAPI"
|
|
|
|
..time = "18:00"
|
|
|
|
..day = "Monday"
|
|
|
|
..id = 0
|
|
|
|
..kind = "Lab"
|
|
|
|
..place = "O27/343"
|
|
|
|
..prof = ""
|
|
|
|
..turnin = "";
|
|
|
|
_courses.add(course);
|
2016-06-14 21:46:42 +02:00
|
|
|
Course course2 = new Course();
|
|
|
|
course2
|
|
|
|
..title = "CCC Ulm"
|
|
|
|
..time = "20:00"
|
|
|
|
..day = "Monday"
|
|
|
|
..id = 1
|
|
|
|
..kind = "Meeting"
|
|
|
|
..place = "Cafe Einstein"
|
|
|
|
..prof = ""
|
|
|
|
..turnin = "";
|
|
|
|
_courses.add(course2);
|
2016-06-13 17:13:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@ApiMethod(path: 'courses')
|
|
|
|
List<Course> listCourses() {
|
2016-06-14 22:04:04 +02:00
|
|
|
if (_courses.isEmpty) {
|
|
|
|
throw new NotFoundError('Could not find any courses.');
|
|
|
|
}
|
2016-06-13 17:13:02 +02:00
|
|
|
return _courses;
|
|
|
|
}
|
|
|
|
|
2016-06-14 21:47:25 +02:00
|
|
|
@ApiMethod(path: 'course/{id}')
|
|
|
|
Course getCourse(int id) {
|
|
|
|
for (Course course in _courses) {
|
|
|
|
if (course.id == id) {
|
|
|
|
return course;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw new NotFoundError('Could not find course \'$id\'.');
|
|
|
|
}
|
2016-06-13 17:13:02 +02:00
|
|
|
|
2016-06-19 12:40:21 +02:00
|
|
|
@ApiMethod(method: 'DELETE', path: 'course/{id}')
|
|
|
|
List<Course> deleteCourse(int id) {
|
|
|
|
_courses.removeWhere((course) => course.id == id);
|
|
|
|
return _courses;
|
|
|
|
}
|
|
|
|
|
2016-06-18 23:41:51 +02:00
|
|
|
@ApiMethod(method: 'POST', path: 'course')
|
|
|
|
Course addCourse (Course newCourse) {
|
|
|
|
newCourse.id = _courses.length;
|
|
|
|
_courses.add(newCourse);
|
|
|
|
|
|
|
|
return newCourse;
|
|
|
|
}
|
2016-06-19 13:19:22 +02:00
|
|
|
|
|
|
|
@ApiMethod(method: 'PUT', path: 'course/{id}')
|
|
|
|
Course updateCourse(int id, Course course) {
|
|
|
|
course.id = id;
|
|
|
|
int index = _courses.indexOf(_courses.singleWhere((crs) => crs.id == id));
|
|
|
|
_courses.replaceRange(index, index + 1, [course]);
|
|
|
|
return course;
|
|
|
|
}
|
2016-06-13 17:13:02 +02:00
|
|
|
}
|
2016-06-18 23:41:51 +02:00
|
|
|
|