mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-01 22:19:26 +00:00
52 lines
789 B
JavaScript
52 lines
789 B
JavaScript
'use strict';
|
|
|
|
const DatabaseConnectionPool = require('./DatabaseConnectionPool');
|
|
|
|
class Subject {
|
|
/**
|
|
* The id of the subject
|
|
* @type {number}
|
|
*/
|
|
id;
|
|
|
|
/**
|
|
* The name of the subject
|
|
* @type {string}
|
|
*/
|
|
name;
|
|
|
|
/**
|
|
* @param {number} subjectID - The id of the subject to fetch
|
|
*/
|
|
constructor(subjectId) {
|
|
const sql = `
|
|
select
|
|
subjectId as id,
|
|
name
|
|
from
|
|
subject
|
|
where
|
|
subjectId = ?;
|
|
`;
|
|
|
|
return (async () => {
|
|
const conn = await new DatabaseConnectionPool();
|
|
const record = await conn.runQuery(sql, [
|
|
subjectId,
|
|
]);
|
|
|
|
conn.close();
|
|
|
|
if (!record.length)
|
|
throw new Error('No subject found');
|
|
|
|
for (const [ k, v ] of Object.entries(record[0]))
|
|
this[k] = v;
|
|
|
|
return this;
|
|
})();
|
|
}
|
|
}
|
|
|
|
module.exports = Subject;
|