Skip to content

Instantly share code, notes, and snippets.

@afucher
Created April 16, 2018 22:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save afucher/3d946e1c6c8e6f2bec8a1b515c9b407d to your computer and use it in GitHub Desktop.
Save afucher/3d946e1c6c8e6f2bec8a1b515c9b407d to your computer and use it in GitHub Desktop.
'use strict';
const CreateGroupList = require('../utils/GroupsListPDF');
const Group = require('../models').Group;
const Client = require('../models').Client;
const Course = require('../models').Course;
const ClientGroup = require('../models').ClientGroup;
const Boom = require('boom');
const moment = require('moment');
const fields = ['id','start_date','end_date','start_hour','end_hour','course_id','classes','teacher_id','classes'];
const teacher = {model: Client, as: 'Teacher', attributes: ['name']}
const course = {model: Course, as: 'Course', attributes: ['name']}
const getOneOptions = {
include: [{
model: Client, as: 'Students', through: {
attributes: ['attendance']
}, attributes : ['id', 'name']
},
course,
teacher],
attributes : fields
};
const getGroupWithAllInfo = {
include: [{
model: Client, as: 'Students', through: {
attributes: []
}, attributes : ['id', 'name']
},
course,
teacher],
attributes : fields,
order: [[{model: Client, as: 'Students'}, 'name']]
};
const getAllOptions = {attributes:fields};
const updateOptions = (id) => {
return {
where: {
id
},
fields:['start_date','end_date','start_hour','end_hour']
}
}
const GroupController = {};
GroupController.getAll = () => Group.findAll(getAllOptions);
GroupController.get = (id) => Group.findById(id, getOneOptions);
GroupController.delete = (id) => Group.destroy({ where: { id: id } });
GroupController.addStudent = (id, student_id) => {
return Group.findById(id)
.then((g) => new Promise((resolve, reject) => {
if(g){
g.addStudent(student_id,{attendance:0})
.then(r => {
r.length > 0 ? resolve(r[0]) : reject(Boom.badRequest(`Student ${student_id} already in Group`))
});
}else{
reject(Boom.notFound(`Group ${id} not Found`));
}
}));
};
GroupController.getStudents = (id) => Group.findById(id, includeStudents);
GroupController.getGroupList = id => {
return Group.findById(id,getGroupWithAllInfo)
.then(CreateGroupList);
}
module.exports = GroupController;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment