mirror of
https://github.com/Ratstail91/sineQL.git
synced 2025-11-29 02:34:28 +11:00
93 lines
2.6 KiB
JavaScript
93 lines
2.6 KiB
JavaScript
const database = require('./database.js');
|
|
|
|
/* DOCS: The handler module connects the database to simpleQL.
|
|
* this will be user-implemented, but for now uses a fake database provided in database.js
|
|
* The 'scalars' will be objects containing a name and theh type for each scalar field requested by a query.
|
|
* This can be used in several ways...
|
|
*
|
|
* The handlers should only handle scalar fields - compound fields will be queried separately by simpleQL.
|
|
*/
|
|
|
|
//the handler routines
|
|
const handler = {
|
|
Book: (parent, scalars) => {
|
|
//takes an object which is the result of the parent query, if there is one { typeName: 'Author', scalars: [scalars], context: the parent object, match: I am being matched }
|
|
//takes an array of scalar types as objects: { typeName: 'String', name: 'title', match: filter }
|
|
//must return an array of objects containing the results
|
|
|
|
let books = database.books;
|
|
|
|
//if this is a sub-query of Author, use the parent to narrow the search
|
|
if (parent && parent.typeName == 'Author') {
|
|
//filter based on parent object
|
|
books = books.filter(b => b.author.name == parent.context.name);
|
|
}
|
|
|
|
//if this query has a matched scalar, filter by that match
|
|
books = books.filter(b => {
|
|
return scalars.every(s => {
|
|
return !s.match || b[s.name].toUpperCase() === s.match.toUpperCase(); //other filter methods, such as ranges of numbers, can also be implemented
|
|
});
|
|
});
|
|
|
|
//return all book fields after filtering
|
|
const fields = scalars.map(s => s.name);
|
|
return books.map(b => {
|
|
const ret = {};
|
|
|
|
if (fields.includes('title')) {
|
|
ret.title = b.title;
|
|
}
|
|
|
|
if (fields.includes('published')) {
|
|
ret.published = b.published;
|
|
}
|
|
|
|
return ret;
|
|
});
|
|
},
|
|
|
|
Author: (parent, scalars) => {
|
|
let authors = database.authors;
|
|
|
|
//if this is a sub-query of Book, use the parent to find the author
|
|
if (parent && parent.typeName == 'Book') {
|
|
//filter based on parent object
|
|
authors = authors.filter(a => a.books.some(b => b.title === parent.context.title));
|
|
}
|
|
|
|
//if this query has a matched scalar, filter by that match
|
|
authors = authors.filter(a => {
|
|
return scalars.every(s => {
|
|
return !s.match || a[s.name].toUpperCase() === s.match.toUpperCase(); //other filter methods, such as ranges of numbers, can also be implemented
|
|
});
|
|
});
|
|
|
|
//return all author fields after filtering
|
|
const fields = scalars.map(s => s.name);
|
|
return authors.map(a => {
|
|
const ret = {};
|
|
|
|
if (fields.includes('name')) {
|
|
ret.name = a.name;
|
|
}
|
|
|
|
return ret;
|
|
});
|
|
},
|
|
|
|
create: (matches, sets) => {
|
|
//TODO
|
|
},
|
|
|
|
update: (matches, sets) => {
|
|
//TODO
|
|
},
|
|
|
|
delete: matches => {
|
|
//TODO
|
|
},
|
|
};
|
|
|
|
module.exports = handler;
|