summaryrefslogtreecommitdiff
path: root/alarm/node_modules/pronote-api/src/data/periods.js
diff options
context:
space:
mode:
Diffstat (limited to 'alarm/node_modules/pronote-api/src/data/periods.js')
-rw-r--r--alarm/node_modules/pronote-api/src/data/periods.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/alarm/node_modules/pronote-api/src/data/periods.js b/alarm/node_modules/pronote-api/src/data/periods.js
new file mode 100644
index 0000000..a13039d
--- /dev/null
+++ b/alarm/node_modules/pronote-api/src/data/periods.js
@@ -0,0 +1,24 @@
+function getPeriodBy(session, period, type = null)
+{
+ const Type = ['trimester', 'semester', 'year'];
+ const periods = session.params.periods;
+ if (!type || Type.indexOf(type) === -1) {
+ type = 'trimester'
+ }
+ if (!period) {
+ const now = Date.now();
+ return periods.find(p => now >= p.from && now <= p.to && p.kind === type) || periods[5];
+ } else if (typeof period === 'string') {
+ for (const p of periods) {
+ if (p.name === period) {
+ return p;
+ }
+ }
+ }
+
+ return period;
+}
+
+module.exports = {
+ getPeriodBy
+};