├── .idea
├── .gitignore
├── misc.xml
├── vcs.xml
├── jsLibraryMappings.xml
├── modules.xml
├── NodeJS-Booking-App.iml
└── $PRODUCT_WORKSPACE_FILE$
├── .gitattributes
├── .gitignore
├── JSDoc
├── fonts
│ ├── OpenSans-Bold-webfont.eot
│ ├── OpenSans-Bold-webfont.woff
│ ├── OpenSans-Light-webfont.eot
│ ├── OpenSans-Italic-webfont.eot
│ ├── OpenSans-Italic-webfont.woff
│ ├── OpenSans-Light-webfont.woff
│ ├── OpenSans-Regular-webfont.eot
│ ├── OpenSans-Regular-webfont.woff
│ ├── OpenSans-BoldItalic-webfont.eot
│ ├── OpenSans-BoldItalic-webfont.woff
│ ├── OpenSans-LightItalic-webfont.eot
│ └── OpenSans-LightItalic-webfont.woff
├── scripts
│ ├── linenumber.js
│ └── prettify
│ │ ├── lang-css.js
│ │ ├── Apache-License-2.0.txt
│ │ └── prettify.js
├── styles
│ ├── prettify-jsdoc.css
│ ├── prettify-tomorrow.css
│ └── jsdoc-default.css
├── Utility_appUtil.js.html
├── server.js.html
├── ReqHandlers_GET-Handlers_timeslots.js.html
├── ReqHandlers_POST-Handlers_book.js.html
├── index.html
├── ReqHandlers_GET-Handlers_days.js.html
├── Utility_gcal.js.html
└── Utility_requirement-validator.js.html
├── package.json
├── Utility
├── timeslots.json
├── appUtil.js
├── gcal.js
└── requirement-validator.js
├── server.js
├── ReqHandlers
├── GET-Handlers
│ ├── timeslots.js
│ └── days.js
└── POST-Handlers
│ └── book.js
├── README.md
└── LICENSE
/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /workspace.xml
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.html linguist-vendored
2 | *.css linguist-vendored
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /node_modules/
3 | /Utility/credentials.json
4 | /Utility/token.json
--------------------------------------------------------------------------------
/JSDoc/fonts/OpenSans-Bold-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arytek/NodeJS-Booking-App/HEAD/JSDoc/fonts/OpenSans-Bold-webfont.eot
--------------------------------------------------------------------------------
/JSDoc/fonts/OpenSans-Bold-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arytek/NodeJS-Booking-App/HEAD/JSDoc/fonts/OpenSans-Bold-webfont.woff
--------------------------------------------------------------------------------
/JSDoc/fonts/OpenSans-Light-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arytek/NodeJS-Booking-App/HEAD/JSDoc/fonts/OpenSans-Light-webfont.eot
--------------------------------------------------------------------------------
/JSDoc/fonts/OpenSans-Italic-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arytek/NodeJS-Booking-App/HEAD/JSDoc/fonts/OpenSans-Italic-webfont.eot
--------------------------------------------------------------------------------
/JSDoc/fonts/OpenSans-Italic-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arytek/NodeJS-Booking-App/HEAD/JSDoc/fonts/OpenSans-Italic-webfont.woff
--------------------------------------------------------------------------------
/JSDoc/fonts/OpenSans-Light-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arytek/NodeJS-Booking-App/HEAD/JSDoc/fonts/OpenSans-Light-webfont.woff
--------------------------------------------------------------------------------
/JSDoc/fonts/OpenSans-Regular-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arytek/NodeJS-Booking-App/HEAD/JSDoc/fonts/OpenSans-Regular-webfont.eot
--------------------------------------------------------------------------------
/JSDoc/fonts/OpenSans-Regular-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arytek/NodeJS-Booking-App/HEAD/JSDoc/fonts/OpenSans-Regular-webfont.woff
--------------------------------------------------------------------------------
/JSDoc/fonts/OpenSans-BoldItalic-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arytek/NodeJS-Booking-App/HEAD/JSDoc/fonts/OpenSans-BoldItalic-webfont.eot
--------------------------------------------------------------------------------
/JSDoc/fonts/OpenSans-BoldItalic-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arytek/NodeJS-Booking-App/HEAD/JSDoc/fonts/OpenSans-BoldItalic-webfont.woff
--------------------------------------------------------------------------------
/JSDoc/fonts/OpenSans-LightItalic-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arytek/NodeJS-Booking-App/HEAD/JSDoc/fonts/OpenSans-LightItalic-webfont.eot
--------------------------------------------------------------------------------
/JSDoc/fonts/OpenSans-LightItalic-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arytek/NodeJS-Booking-App/HEAD/JSDoc/fonts/OpenSans-LightItalic-webfont.woff
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/jsLibraryMappings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/.idea/NodeJS-Booking-App.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "nodejs-booking-app",
3 | "version": "1.0.0",
4 | "description": "An appointment booking web app written using JavaScript and powered by Node JS.",
5 | "main": "server.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "keywords": [],
10 | "author": "Aryan Nateq",
11 | "license": "GPL-3.0",
12 | "dependencies": {
13 | "express": "^4.17.1",
14 | "googleapis": "^39.2.0"
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/.idea/$PRODUCT_WORKSPACE_FILE$:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | 1.8
8 |
9 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/JSDoc/scripts/linenumber.js:
--------------------------------------------------------------------------------
1 | /*global document */
2 | (() => {
3 | const source = document.getElementsByClassName('prettyprint source linenums');
4 | let i = 0;
5 | let lineNumber = 0;
6 | let lineId;
7 | let lines;
8 | let totalLines;
9 | let anchorHash;
10 |
11 | if (source && source[0]) {
12 | anchorHash = document.location.hash.substring(1);
13 | lines = source[0].getElementsByTagName('li');
14 | totalLines = lines.length;
15 |
16 | for (; i < totalLines; i++) {
17 | lineNumber++;
18 | lineId = `line${lineNumber}`;
19 | lines[i].id = lineId;
20 | if (lineId === anchorHash) {
21 | lines[i].className += ' selected';
22 | }
23 | }
24 | }
25 | })();
26 |
--------------------------------------------------------------------------------
/JSDoc/scripts/prettify/lang-css.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n"]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com",
2 | /^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]);
3 |
--------------------------------------------------------------------------------
/Utility/timeslots.json:
--------------------------------------------------------------------------------
1 | {
2 | "timeslots": [
3 | {
4 | "startTime": "T09:00:00Z",
5 | "endTime": "T09:40:00Z"
6 | },
7 | {
8 | "startTime": "T09:45:00Z",
9 | "endTime": "T10:25:00Z"
10 | },
11 | {
12 | "startTime": "T10:30:00Z",
13 | "endTime": "T11:10:00Z"
14 | },
15 | {
16 | "startTime": "T11:15:00Z",
17 | "endTime": "T11:55:00Z"
18 | },
19 | {
20 | "startTime": "T12:00:00Z",
21 | "endTime": "T12:40:00Z"
22 | },
23 | {
24 | "startTime": "T12:45:00Z",
25 | "endTime": "T13:25:00Z"
26 | },
27 | {
28 | "startTime": "T13:30:00Z",
29 | "endTime": "T14:10:00Z"
30 | },
31 | {
32 | "startTime": "T14:15:00Z",
33 | "endTime": "T14:55:00Z"
34 | },
35 | {
36 | "startTime": "T15:00:00Z",
37 | "endTime": "T15:40:00Z"
38 | },
39 | {
40 | "startTime": "T15:45:00Z",
41 | "endTime": "T16:25:00Z"
42 | },
43 | {
44 | "startTime": "T16:30:00Z",
45 | "endTime": "T17:10:00Z"
46 | }
47 | ]
48 | }
--------------------------------------------------------------------------------
/Utility/appUtil.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Returns the last day of the month.
3 | * @param {number} year The year.
4 | * @param {number} month The month.
5 | * @returns {number} The last day of the month.
6 | */
7 | function getLastDayOfMonth(year, month) {
8 | return (new Date(Date.UTC(year, month, 0))).getUTCDate();
9 | }
10 |
11 | /**
12 | * Returns the current date in the UTC timezone.
13 | * @returns {number}
14 | */
15 | function getCurrDateUTC() {
16 | const currDate = new Date();
17 | return currDate.getUTCDate();
18 | }
19 |
20 | /**
21 | * Returns the date from a given ISOString.
22 | * @param {string} dateISOString The callback for the authorized client.
23 | * @returns {number}
24 | */
25 | function getDateFromISO(dateISOString) {
26 | const date = new Date(dateISOString);
27 | return date.getUTCDate();
28 | }
29 |
30 | /**
31 | * Returns the next date (i.e the day after).
32 | * @param {Date} date The date to get the next day of.
33 | * @returns {Date}
34 | */
35 | function getNextDay(date) {
36 | let tomorrow = new Date(date);
37 | tomorrow.setDate(date.getUTCDate() + 1); // Returns epoch value.
38 | return new Date(tomorrow); // Convert from epoch to Date.
39 | }
40 |
41 | /**
42 | * Creates and returns a Google Calendars 'events resource'.
43 | * @param {string} date A string in the following format: 'Year-month-day'.
44 | * @param {string} startTime The start time to associate with the 'start dateTime'.
45 | * @param {string} endTime The end time to associate with the 'end dateTime'.
46 | * @returns {object} A Google Calendars 'events resource'.
47 | */
48 | function makeEventResource(date, startTime, endTime) {
49 | return {
50 | 'summary': 'appointment',
51 | 'start': {
52 | 'dateTime': date + startTime,
53 | 'timeZone': 'UTC',
54 | },
55 | 'end': {
56 | 'dateTime': date + endTime,
57 | 'timeZone': 'UTC',
58 | }
59 | };
60 | }
61 |
62 | module.exports = {
63 | getLastDayOfMonth,
64 | getCurrDateUTC,
65 | getDateFromISO,
66 | getNextDay,
67 | makeEventResource
68 | };
--------------------------------------------------------------------------------
/JSDoc/styles/prettify-jsdoc.css:
--------------------------------------------------------------------------------
1 | /* JSDoc prettify.js theme */
2 |
3 | /* plain text */
4 | .pln {
5 | color: #000000;
6 | font-weight: normal;
7 | font-style: normal;
8 | }
9 |
10 | /* string content */
11 | .str {
12 | color: #006400;
13 | font-weight: normal;
14 | font-style: normal;
15 | }
16 |
17 | /* a keyword */
18 | .kwd {
19 | color: #000000;
20 | font-weight: bold;
21 | font-style: normal;
22 | }
23 |
24 | /* a comment */
25 | .com {
26 | font-weight: normal;
27 | font-style: italic;
28 | }
29 |
30 | /* a type name */
31 | .typ {
32 | color: #000000;
33 | font-weight: normal;
34 | font-style: normal;
35 | }
36 |
37 | /* a literal value */
38 | .lit {
39 | color: #006400;
40 | font-weight: normal;
41 | font-style: normal;
42 | }
43 |
44 | /* punctuation */
45 | .pun {
46 | color: #000000;
47 | font-weight: bold;
48 | font-style: normal;
49 | }
50 |
51 | /* lisp open bracket */
52 | .opn {
53 | color: #000000;
54 | font-weight: bold;
55 | font-style: normal;
56 | }
57 |
58 | /* lisp close bracket */
59 | .clo {
60 | color: #000000;
61 | font-weight: bold;
62 | font-style: normal;
63 | }
64 |
65 | /* a markup tag name */
66 | .tag {
67 | color: #006400;
68 | font-weight: normal;
69 | font-style: normal;
70 | }
71 |
72 | /* a markup attribute name */
73 | .atn {
74 | color: #006400;
75 | font-weight: normal;
76 | font-style: normal;
77 | }
78 |
79 | /* a markup attribute value */
80 | .atv {
81 | color: #006400;
82 | font-weight: normal;
83 | font-style: normal;
84 | }
85 |
86 | /* a declaration */
87 | .dec {
88 | color: #000000;
89 | font-weight: bold;
90 | font-style: normal;
91 | }
92 |
93 | /* a variable name */
94 | .var {
95 | color: #000000;
96 | font-weight: normal;
97 | font-style: normal;
98 | }
99 |
100 | /* a function name */
101 | .fun {
102 | color: #000000;
103 | font-weight: bold;
104 | font-style: normal;
105 | }
106 |
107 | /* Specify class=linenums on a pre to get line numbering */
108 | ol.linenums {
109 | margin-top: 0;
110 | margin-bottom: 0;
111 | }
112 |
--------------------------------------------------------------------------------
/server.js:
--------------------------------------------------------------------------------
1 | const express = require('express');
2 | const gcal = require('./Utility/gcal.js');
3 |
4 | const days = require('./ReqHandlers/GET-Handlers/days.js');
5 | const timeslots = require('./ReqHandlers/GET-Handlers/timeslots.js');
6 | const book = require('./ReqHandlers/POST-Handlers/book.js');
7 |
8 | const app = express();
9 | const auth = {};
10 |
11 | // Get the OAuth2 client for making Google Calendar API requests.
12 | gcal.initAuthorize(setAuth);
13 |
14 | function setAuth(auth) {
15 | this.auth = auth;
16 | console.log('\nServer is now running... Ctrl+C to end');
17 | }
18 |
19 | /**
20 | * Handles 'days' GET requests.
21 | * @param {object} req The requests object provided by Express. See Express doc.
22 | * @param {object} res The results object provided by Express. See Express doc.
23 | */
24 | function handleGetDays(req, res) {
25 | const year = req.query.year;
26 | const month = req.query.month;
27 | days.getBookableDays(this.auth, year, month)
28 | .then(function(data) {
29 | res.send(data);
30 | })
31 | .catch(function(data) {
32 | res.send(data);
33 | });
34 | }
35 |
36 | /**
37 | * Handles 'timeslots' GET requests.
38 | * @param {object} req The requests object provided by Express. See Express doc.
39 | * @param {object} res The results object provided by Express. See Express doc.
40 | */
41 | function handleGetTimeslots(req, res) {
42 | const year = req.query.year;
43 | const month = req.query.month;
44 | const day = req.query.day;
45 | timeslots.getAvailTimeslots(this.auth, year, month, day)
46 | .then(function(data) {
47 | res.send(data);
48 | })
49 | .catch(function(data) {
50 | res.send(data);
51 | });
52 | }
53 |
54 | /**
55 | * Handles 'book' POST requests.
56 | * @param {object} req The requests object provided by Express. See Express doc.
57 | * @param {object} res The results object provided by Express. See Express doc.
58 | */
59 | function handleBookAppointment(req, res) {
60 | const year = req.query.year;
61 | const month = req.query.month;
62 | const day = req.query.day;
63 | const hour = req.query.hour;
64 | const minute = req.query.minute;
65 | book.bookAppointment(this.auth, year, month, day, hour, minute)
66 | .then(function(data) {
67 | res.send(data);
68 | })
69 | .catch(function(data) {
70 | res.send(data);
71 | });
72 | }
73 |
74 | // Routes.
75 | app.get('/days', handleGetDays);
76 | app.get('/timeslots', handleGetTimeslots);
77 | app.post('/book', handleBookAppointment);
78 |
79 | // Listen on port 8080 for incoming requests to the server.
80 | const server = app.listen(8080, function() {});
--------------------------------------------------------------------------------
/JSDoc/styles/prettify-tomorrow.css:
--------------------------------------------------------------------------------
1 | /* Tomorrow Theme */
2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */
3 | /* Pretty printing styles. Used with prettify.js. */
4 | /* SPAN elements with the classes below are added by prettyprint. */
5 | /* plain text */
6 | .pln {
7 | color: #4d4d4c; }
8 |
9 | @media screen {
10 | /* string content */
11 | .str {
12 | color: #718c00; }
13 |
14 | /* a keyword */
15 | .kwd {
16 | color: #8959a8; }
17 |
18 | /* a comment */
19 | .com {
20 | color: #8e908c; }
21 |
22 | /* a type name */
23 | .typ {
24 | color: #4271ae; }
25 |
26 | /* a literal value */
27 | .lit {
28 | color: #f5871f; }
29 |
30 | /* punctuation */
31 | .pun {
32 | color: #4d4d4c; }
33 |
34 | /* lisp open bracket */
35 | .opn {
36 | color: #4d4d4c; }
37 |
38 | /* lisp close bracket */
39 | .clo {
40 | color: #4d4d4c; }
41 |
42 | /* a markup tag name */
43 | .tag {
44 | color: #c82829; }
45 |
46 | /* a markup attribute name */
47 | .atn {
48 | color: #f5871f; }
49 |
50 | /* a markup attribute value */
51 | .atv {
52 | color: #3e999f; }
53 |
54 | /* a declaration */
55 | .dec {
56 | color: #f5871f; }
57 |
58 | /* a variable name */
59 | .var {
60 | color: #c82829; }
61 |
62 | /* a function name */
63 | .fun {
64 | color: #4271ae; } }
65 | /* Use higher contrast and text-weight for printable form. */
66 | @media print, projection {
67 | .str {
68 | color: #060; }
69 |
70 | .kwd {
71 | color: #006;
72 | font-weight: bold; }
73 |
74 | .com {
75 | color: #600;
76 | font-style: italic; }
77 |
78 | .typ {
79 | color: #404;
80 | font-weight: bold; }
81 |
82 | .lit {
83 | color: #044; }
84 |
85 | .pun, .opn, .clo {
86 | color: #440; }
87 |
88 | .tag {
89 | color: #006;
90 | font-weight: bold; }
91 |
92 | .atn {
93 | color: #404; }
94 |
95 | .atv {
96 | color: #060; } }
97 | /* Style */
98 | /*
99 | pre.prettyprint {
100 | background: white;
101 | font-family: Consolas, Monaco, 'Andale Mono', monospace;
102 | font-size: 12px;
103 | line-height: 1.5;
104 | border: 1px solid #ccc;
105 | padding: 10px; }
106 | */
107 |
108 | /* Specify class=linenums on a pre to get line numbering */
109 | ol.linenums {
110 | margin-top: 0;
111 | margin-bottom: 0; }
112 |
113 | /* IE indents via margin-left */
114 | li.L0,
115 | li.L1,
116 | li.L2,
117 | li.L3,
118 | li.L4,
119 | li.L5,
120 | li.L6,
121 | li.L7,
122 | li.L8,
123 | li.L9 {
124 | /* */ }
125 |
126 | /* Alternate shading for lines */
127 | li.L1,
128 | li.L3,
129 | li.L5,
130 | li.L7,
131 | li.L9 {
132 | /* */ }
133 |
--------------------------------------------------------------------------------
/ReqHandlers/GET-Handlers/timeslots.js:
--------------------------------------------------------------------------------
1 | const fs = require('fs');
2 | const {google} = require('googleapis');
3 | const reqValidator = require('../../Utility/requirement-validator.js');
4 | const appUtil = require('../../Utility/appUtil.js');
5 |
6 | const TIMESLOTS_PATH = './Utility/timeslots.json';
7 |
8 | /**
9 | * Returns an array with timeslots; excluding the timeslots that are booked (appointments).
10 | * @param {object} appointments An Object containing info on the appointments booked in the day.
11 | * @returns {object[]} resultsArr An array containing all the available timeslots in the day.
12 | */
13 | function getResult(appointments) {
14 | const timeslots = (JSON.parse(fs.readFileSync(TIMESLOTS_PATH))).timeslots;
15 | let resultsArr = [];
16 | for (let i = 0; i < timeslots.length; i++) {
17 | const found = appointments.find(function (element) {
18 | const startTime = element.startTime;
19 | const finalStartTime = startTime.substring(startTime.indexOf("T"), startTime.indexOf("Z") + 1);
20 | return timeslots[i].startTime.includes(finalStartTime);
21 | });
22 | if (!found) {
23 | resultsArr.push(timeslots[i]);
24 | }
25 | }
26 | return resultsArr;
27 | }
28 |
29 | /**
30 | * Returns a promise with data containing objects with information of the timeslots in the given day.
31 | * Each object contains the startTime and endTime of the timeslot.
32 | * @param {object} auth The oAuth2Client used for authentication for the Google Calendar API.
33 | * @param {number} year Year to search for.
34 | * @param {number} month Month to search for.
35 | * @param {number} day Day to search for.
36 | * @returns {promise} A promise representing the eventual completion of the getAvailTimeslots() function.
37 | */
38 | function getAvailTimeslots(auth, year, month, day) {
39 | return new Promise(function(resolve, reject) {
40 | const isInvalid = reqValidator.validateGetTimeslots(year, month, day);
41 | if (isInvalid) return reject(isInvalid);
42 |
43 | const startDate = new Date(Date.UTC(year, month-1, day));
44 | const endDate = appUtil.getNextDay(startDate);
45 | const calendar = google.calendar({version: 'v3', auth});
46 | calendar.events.list({
47 | calendarId: 'primary',
48 | timeMin: startDate.toISOString(),
49 | timeMax: endDate.toISOString(),
50 | maxResults: 11,
51 | singleEvents: true,
52 | orderBy: 'startTime',
53 | q: 'appointment'
54 | }, (err, res) => {
55 | if (err) return reject({response: 'The API returned an error: ' + err});
56 | let appointments = res.data.items.map((event, i) => {
57 | return {startTime: event.start.dateTime, endTime: event.end.dateTime};
58 | });
59 | const result = {};
60 | result.timeslots = getResult(appointments);
61 | if (result.timeslots[0]) {
62 | const response = Object.assign({success: true}, result);
63 | return resolve(response);
64 | } else {
65 | const response = Object.assign({success: false}, result);
66 | return reject(response);
67 | }
68 | });
69 | });
70 | }
71 |
72 | module.exports = {
73 | getAvailTimeslots
74 | };
--------------------------------------------------------------------------------
/ReqHandlers/POST-Handlers/book.js:
--------------------------------------------------------------------------------
1 | const fs = require('fs');
2 | const {google} = require('googleapis');
3 | const reqValidator = require('../../Utility/requirement-validator.js');
4 | const appUtil = require('../../Utility/appUtil.js');
5 |
6 | const TIMESLOTS_PATH = './Utility/timeslots.json';
7 | /**
8 | * Searches using the provided date for a timeslot matching the hour and minute specified.
9 | * @param {object} timeslots Object containing info on each timeslot for the day.
10 | * @param {number} year Year of the timeslot to search for.
11 | * @param {number} month Month of the timeslot to search for.
12 | * @param {number} day Day of the timeslot to search for.
13 | * @param {number} hour Hour of the timeslot to search for.
14 | * @param {number} minute Minute of the timeslot to search for.
15 | * @returns {object} The timeslot object that was found. If nothing was found, returns undefined.
16 | */
17 | function findMatchingTimeslot(timeslots, year, month, day, hour, minute) {
18 | const timeslotDate = new Date(Date.UTC(year, month-1, day, hour, minute)).toISOString();
19 | const foundTimeslot = timeslots.find(function (element) {
20 | //const elementDate = new Date(element.startTime).toISOString(); // Ensure matching ISO format.
21 | return element.startTime.includes(hour + ':' + minute + ':00');
22 | });
23 | if (!foundTimeslot) return false;
24 | return {time: foundTimeslot, date: timeslotDate};
25 | }
26 |
27 | /**
28 | * Books an appointment using the given date and time information.
29 | * @param {object} auth The oAuth2Client used for authentication for the Google Calendar API.
30 | * @param {number} year Year of the timeslot to book.
31 | * @param {number} month Month of the timeslot to book.
32 | * @param {number} day Day of the timeslot to book.
33 | * @param {number} hour Hour of the timeslot to book.
34 | * @param {number} minute Minute of the timeslot to book.
35 | * @returns {promise} A promise representing the eventual completion of the bookAppointment() function.
36 | */
37 | function bookAppointment(auth, year, month, day, hour, minute) {
38 | return new Promise(function(resolve, reject) {
39 | const isInvalid = reqValidator.validateBooking(year, month, day, hour, minute);
40 | if (isInvalid) return reject(isInvalid);
41 |
42 | const timeslots = (JSON.parse(fs.readFileSync(TIMESLOTS_PATH))).timeslots;
43 | const timeslot = findMatchingTimeslot(timeslots, year, month, day, hour, minute);
44 | if (!timeslot) return resolve({success: false, message: 'Invalid time slot'});
45 | const date = year + '-' + month + '-' + day;
46 | const event = appUtil.makeEventResource(date, timeslot.time.startTime, timeslot.time.endTime);
47 |
48 | const calendar = google.calendar({version: 'v3', auth});
49 | calendar.events.insert({
50 | auth: auth,
51 | calendarId: 'primary',
52 | resource: event
53 | }, function (err, res) {
54 | if (err) return console.log('Error contacting the Calendar service: ' + err);
55 | const event = res.data;
56 | console.log('Appointment created: ', event.id);
57 | const result = {startTime: event.start.dateTime, endTime: event.end.dateTime};
58 | const response = Object.assign({success: true}, result);
59 | return resolve(response);
60 | });
61 | });
62 | }
63 |
64 | module.exports = {
65 | bookAppointment
66 | };
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # NodeJS Booking App
2 | An appointment booking server application made using Node JS. This application makes use of the Google Calendar API to create appointment timeslots on Google Calender. The appointment timeslots are 40 minutes in length, and a 5 minute break between each timeslot exists. The timeslots are defined from Monday to Friday, 9AM to 6PM. This application meets all of the requirements listed below. The requirements defined in this booking server are easily customizable. For example, if you would like to define your own timeslots, simply edit the timeslots within timeslots.json.
3 |
4 | For a video tutorial on how to setup this application, see this video: https://youtu.be/dWip8MLvEWw
5 | For a video demonstration of this application, see this video: https://youtu.be/IS-V0Xmv1mw
6 |
7 |
Requirements:
8 |
9 |
All appointments are 40 minutes long and have fixed times, starting from 9–9:40 am. :heavy_check_mark:
10 |
Ensure there is always a 5 minute break in between each appointment. :heavy_check_mark:
11 |
Appointments can only be booked during weekdays from 9 am to 6 pm. :heavy_check_mark:
12 |
Bookings can only be made at least 24 hours in advance. :heavy_check_mark:
13 |
Appointments cannot be booked in the past. :heavy_check_mark:
14 |
15 |
16 |
Application contents:
17 |
18 |
ReqHandlers Directory
19 |
20 |
GET-Handlers - A folder containing the GET handlers used in the app.
21 |
POST-Handlers - A folder containing the POST handlers used in the app.
22 |
23 |
24 |
Utility Directory
25 |
26 |
appUtil.js - Provides functionality used throughout the code base, such as date calculation functions.
27 |
gcal.js - Utilises the credentials.json file to generate a token.json file. If a token.json file already exists, then an oAuth2 Client is generated and returned.
28 |
requirements-validator.js - Used to validate requests sent to the server.
29 |
credentials.json - Your credentials.json file used to authenticate the Google Calendar API used by this app.
30 |
token.json - The token file generated by gcal.js after authenticating your credentials.json file.
31 |
32 |
33 |
App Working Directory
34 |
35 |
Node-Modules - Generated when running 'npm-install'. A folder containing the npm modules used throughout the app.
36 |
server.js - The main server file that utilizes express to start a web server.
37 |
package.json - Package.json file used with npm.
38 |
package-lock.json - Package-lock.json file used with npm.
Visit https://developers.google.com/calendar/quickstart/nodejs to activate Google Calander on your Google Account and to generate a credentials.json file if you haven't already done so. Place your credentials.json file into the 'Utility' directory of this application.
47 |
In the newly cloned repository, open your command line and run the 'npm install' command to download the required modules.
48 |
Run the 'node .' command to run the server.
49 |
The booking app is now ready. Try out the following REST requests below.
50 |
51 |
52 |
HTTP REST Routes:
53 |
54 | GET /days?year=yyyy&month=mm
55 |
56 | GET /timeslots?year=yyyy&month=mm&day=dd
57 |
58 | POST /book?year=yyyy&month=MM&day=dd&hour=hh&minute=mm
59 |
60 | ## License
61 |
62 | NodeJS-Booking-App is copyright (c) 2019, Aryan Nateghnia <38933061+aryannateq@users.noreply.github.com>.
63 |
64 | NodeJS-Booking-App is free software, licensed under the GPL, Version 3.0. See the
65 | `LICENSE` file for more details.
66 |
--------------------------------------------------------------------------------
/ReqHandlers/GET-Handlers/days.js:
--------------------------------------------------------------------------------
1 | const {google} = require('googleapis');
2 | const reqValidator = require('../../Utility/requirement-validator.js');
3 | const appUtil = require('../../Utility/appUtil.js');
4 |
5 | /**
6 | * Searches through the given events (appointments), sees which appointments span
7 | * across a full days timeslots (11). If 11 appointment events are found within a
8 | * same day, then the day which those appointments fell on, is added to the bookedDays array.
9 | * @param {number} events Appointment events.
10 | * @returns {number[]} bookedDays An array containing the days that are fully booked.
11 | */
12 | function getBookedDays(events) {
13 | let bookedDays = [];
14 | let date = null;
15 | let prevDate = null;
16 | let dayArr = [];
17 | for (let event of events) {
18 | date = appUtil.getDateFromISO(event.start.dateTime);
19 | if (date === prevDate || prevDate === null) {
20 | dayArr.push(event);
21 | } else {
22 | dayArr = []; // Clear array.
23 | dayArr.push(event);
24 | }
25 | prevDate = appUtil.getDateFromISO(event.start.dateTime);
26 | if (dayArr.length === 11) {
27 | dayArr = []; // Clear array.
28 | bookedDays.push(date);
29 | }
30 | }
31 | return bookedDays;
32 | }
33 |
34 | /**
35 | * Uses the bookedDays value returned from getBookedDays() to create an array containing
36 | * info on whether the day has any timeslots available or not.
37 | * @param {number} endDate End date of the month.
38 | * @param {number[]} bookedDays An array containing the days that are fully booked.
39 | * @returns {object[]} daysArr An array containing objects which represent the days of
40 | * the month, and whether the day has any timeslots available.
41 | */
42 | function makeDaysArr(endDate, bookedDays) {
43 | let daysArr = [];
44 | for (let i = 1; i <= endDate; i++) {
45 | if (bookedDays.includes(i)) {
46 | daysArr.push({"day": i, "hasTimeSlots": false});
47 | } else {
48 | daysArr.push({"day": i, "hasTimeSlots": true});
49 | }
50 | }
51 | return daysArr;
52 | }
53 |
54 | /**
55 | * Returns a promise with data containing objects with information on whether the days in the given
56 | * month have any timeslots available. Days with no timeslots are considered fully booked.
57 | * @param {object} auth The oAuth2Client used for authentication for the Google Calendar API.
58 | * @param {number} year Year to search for.
59 | * @param {number} month Month to search for.
60 | * @returns {promise} A promise representing the eventual completion of the getBookableDays() function.
61 | */
62 | function getBookableDays(auth, year, month) {
63 | return new Promise(function(resolve, reject) {
64 | const isInvalid = reqValidator.validateGetDays(year, month);
65 | if (isInvalid) return reject(isInvalid);
66 |
67 | const startDate = new Date(Date.UTC(year, month-1, appUtil.getCurrDateUTC()));
68 | const endDate = new Date((Date.UTC(year, month)));
69 | const calendar = google.calendar({version: 'v3', auth});
70 | calendar.events.list({
71 | calendarId: 'primary',
72 | timeMin: startDate.toISOString(),
73 | timeMax: endDate.toISOString(),
74 | maxResults: 350,
75 | singleEvents: true,
76 | orderBy: 'startTime',
77 | q: 'appointment'
78 | }, (err, res) => {
79 | if (err) return reject({success: false,
80 | message: 'The API returned an error - ' + err});
81 | const events = res.data.items;
82 | const lastDay = appUtil.getLastDayOfMonth(year, month);
83 | let result = {};
84 | result.days = makeDaysArr(lastDay, getBookedDays(events));
85 | const response = Object.assign({success: true}, result);
86 | resolve(response);
87 | });
88 | });
89 | }
90 |
91 | module.exports = {
92 | getBookableDays
93 | };
--------------------------------------------------------------------------------
/Utility/gcal.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @license
3 | * Copyright Google Inc.
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * https://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 |
18 | const fs = require('fs');
19 | const readline = require('readline');
20 | const {google} = require('googleapis');
21 |
22 | // If modifying these scopes, delete token.json.
23 | const SCOPES = ['https://www.googleapis.com/auth/calendar'];
24 | // The file token.json stores the user's access and refresh tokens, and is
25 | // created automatically when the authorization flow completes for the first
26 | // time.
27 | const TOKEN_PATH = './Utility/token.json';
28 | const CREDENTIALS_PATH = './Utility/credentials.json';
29 |
30 | // Load client secrets from a local file.
31 | function initAuthorize(callback) {
32 | fs.readFile(CREDENTIALS_PATH, (err, content) => {
33 | if (err) {
34 | console.log('The credentials.json file could not be found or was invalid. \n' +
35 | 'Please visit: https://developers.google.com/calendar/quickstart/nodejs \n' +
36 | 'and generate a credentials.json file from that site. Then, place your \n' +
37 | 'credentials file into the "Utility" directory of this application.');
38 | process.exit(1);
39 | }
40 | // Authorize a client with credentials, then call the Google Calendar API.
41 | authorize(JSON.parse(content), callback);
42 | });
43 | }
44 |
45 | /**
46 | * Create an OAuth2 client with the given credentials, and then execute the
47 | * given callback function.
48 | * @param {Object} credentials The authorization client credentials.
49 | * @param {function} callback The callback to call with the authorized client.
50 | */
51 | function authorize(credentials, callback) {
52 | const {client_secret, client_id, redirect_uris} = credentials.installed;
53 | const oAuth2Client = new google.auth.OAuth2(
54 | client_id, client_secret, redirect_uris[0]);
55 |
56 | // Check if we have previously stored a token.
57 | fs.readFile(TOKEN_PATH, (err, token) => {
58 | if (err) return getAccessToken(oAuth2Client, callback);
59 | oAuth2Client.setCredentials(JSON.parse(token));
60 | callback(oAuth2Client);
61 | });
62 | }
63 |
64 | /**
65 | * Get and store new token after prompting for user authorization, and then
66 | * execute the given callback with the authorized OAuth2 client.
67 | * @param {google.auth.OAuth2} oAuth2Client The OAuth2 client to get token for.
68 | * @param {function} callback The callback for the authorized client.
69 | */
70 | function getAccessToken(oAuth2Client, callback) {
71 | const authUrl = oAuth2Client.generateAuthUrl({
72 | access_type: 'offline',
73 | scope: SCOPES,
74 | });
75 | console.log('Authorize this app by visiting this url:', authUrl);
76 | const rl = readline.createInterface({input: process.stdin, output: process.stdout});
77 | rl.question('Enter the code from that page here: ', (code) => {
78 | rl.close();
79 | oAuth2Client.getToken(code, (err, token) => {
80 | if (err) return console.error('Error retrieving access token', err);
81 | oAuth2Client.setCredentials(token);
82 | // Store the token to disk for later program executions
83 | fs.writeFile(TOKEN_PATH, JSON.stringify(token), (err) => {
84 | if (err) return console.error(err);
85 | console.log('Token stored to', TOKEN_PATH);
86 | });
87 | callback(oAuth2Client);
88 | });
89 | });
90 | }
91 |
92 | module.exports = {
93 | SCOPES,
94 | initAuthorize
95 | };
--------------------------------------------------------------------------------
/JSDoc/Utility_appUtil.js.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | JSDoc: Source: Utility/appUtil.js
6 |
7 |
8 |
9 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
Source: Utility/appUtil.js
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
/**
30 | * Returns the last day of the month.
31 | * @param {number} year The year.
32 | * @param {number} month The month.
33 | * @returns {number} The last day of the month.
34 | */
35 | function getLastDayOfMonth(year, month) {
36 | return (new Date(Date.UTC(year, month, 0))).getUTCDate();
37 | }
38 |
39 | /**
40 | * Returns the current date in the UTC timezone.
41 | * @returns {number}
42 | */
43 | function getCurrDateUTC() {
44 | const currDate = new Date();
45 | return currDate.getUTCDate();
46 | }
47 |
48 | /**
49 | * Returns the date from a given ISOString.
50 | * @param {string} dateISOString The callback for the authorized client.
51 | * @returns {number}
52 | */
53 | function getDateFromISO(dateISOString) {
54 | const date = new Date(dateISOString);
55 | return date.getUTCDate();
56 | }
57 |
58 | /**
59 | * Returns the next date (i.e the day after).
60 | * @param {Date} date The date to get the next day of.
61 | * @returns {Date}
62 | */
63 | function getNextDay(date) {
64 | let tomorrow = new Date(date);
65 | tomorrow.setDate(date.getUTCDate() + 1); // Returns epoch value.
66 | return new Date(tomorrow); // Convert from epoch to Date.
67 | }
68 |
69 | /**
70 | * Creates and returns a Google Calendars 'events resource'.
71 | * @param {string} date A string in the following format: 'Year-month-day'.
72 | * @param {string} startTime The start time to associate with the 'start dateTime'.
73 | * @param {string} endTime The end time to associate with the 'end dateTime'.
74 | * @returns {object} A Google Calendars 'events resource'.
75 | */
76 | function makeEventResource(date, startTime, endTime) {
77 | return {
78 | 'summary': 'appointment',
79 | 'start': {
80 | 'dateTime': date + startTime,
81 | 'timeZone': 'UTC',
82 | },
83 | 'end': {
84 | 'dateTime': date + endTime,
85 | 'timeZone': 'UTC',
86 | }
87 | };
88 | }
89 |
90 | module.exports = {
91 | getLastDayOfMonth,
92 | getCurrDateUTC,
93 | getDateFromISO,
94 | getNextDay,
95 | makeEventResource
96 | };
An appointment booking server application made using Node JS. This application makes use of the Google Calendar API to create appointment timeslots on Google Calender. The appointment timeslots are 40 minutes in length, and a 5 minute break between each timeslot exists. The timeslots are defined from Monday to Friday, 9AM to 6PM.
48 |
The full application requirements are given below.
49 |
For a video demonstration of the web app, see this video: https://youtu.be/Wamlp6TsO-E
50 |
Requirements:
51 |
52 |
All appointments are 40 minutes long and have fixed times, starting from 9–9:40 am. :heavy_check_mark:
53 |
Ensure there is always a 5 minute break in between each appointment. :heavy_check_mark:
54 |
Appointments can only be booked during weekdays from 9 am to 6 pm. :heavy_check_mark:
55 |
Bookings can only be made at least 24 hours in advance. :heavy_check_mark:
56 |
Appointments cannot be booked in the past. :heavy_check_mark:
57 |
For simplicity, use UTC time for all bookings and days. :heavy_check_mark:
58 |
59 |
Application contents:
60 |
ReqHandlers Directory
61 |
62 |
GET-Handlers - A folder containing the GET handlers used in the app.
63 |
POST-Handlers - A folder containing the POST handlers used in the app.
64 |
65 |
Utility Directory
66 |
67 |
appUtil.js - Provides functionality used throughout the code base, such as date calculation functions.
68 |
gcal.js - Utilises the credentials.json file to generate a token.json file. If a token.json file already exists, then an oAuth2 Client is generated and returned.
69 |
requirements-validator.js - Used to validate requests sent to the server.
70 |
credentials.json - Your credentials.json file used to authenticate the Google Calendar API used by this app.
71 |
token.json - The token file generated by gcal.js after authenticating your credentials.json file.
72 |
73 |
App Working Directory
74 |
75 |
Node-Modules - Generated when running 'npm-install'. A folder containing the npm modules used throughout the app.
76 |
server.js - The main server file that utilises express to start a web server.
77 |
package.json - Package.json file used with npm.
78 |
package-lock.json - Package-lock.json file used with npm.
79 |
80 |
Installation and Usage
81 |
Instructions:
82 |
83 |
Clone this repository.
84 |
Visit https://developers.google.com/calendar/quickstart/nodejs to activate Google Calander on your Google Account and to generate a credentials.json file if you haven't already done so. Place your credentials.json file into the 'Utility' directory of this application.
85 |
In the newly cloned repository, open your command line and run the 'npm install' command to download the required modules.
86 |
Run the 'node .' command to run the server.
87 |
The booking app is now ready. Try out the following REST requests below.
88 |
89 |
REST Routes:
90 |
GET /days?year=yyyy&month=mm
91 |
92 | GET /timeslots?year=yyyy&month=mm&day=dd
93 |
94 | POST /book?year=yyyy&month=MM&day=dd&hour=hh&minute=mm
95 |
const {google} = require('googleapis');
30 | const reqValidator = require('../../Utility/requirement-validator.js');
31 | const appUtil = require('../../Utility/appUtil.js');
32 |
33 | /**
34 | * Searches through the given events (appointments), sees which appointments span
35 | * across a full days timeslots (11). If 11 appointment events are found within a
36 | * same day, then the day which those appointments fell on, is added to the bookedDays array.
37 | * @param {number} events Appointment events.
38 | * @returns {number[]} bookedDays An array containing the days that are fully booked.
39 | */
40 | function getBookedDays(events) {
41 | let bookedDays = [];
42 | let date = null;
43 | let prevDate = null;
44 | let dayArr = [];
45 | for (let event of events) {
46 | date = appUtil.getDateFromISO(event.start.dateTime);
47 | if (date === prevDate || prevDate === null) {
48 | dayArr.push(event);
49 | } else {
50 | dayArr = []; // Clear array.
51 | dayArr.push(event);
52 | }
53 | prevDate = appUtil.getDateFromISO(event.start.dateTime);
54 | if (dayArr.length === 11) {
55 | dayArr = []; // Clear array.
56 | bookedDays.push(date);
57 | }
58 | }
59 | return bookedDays;
60 | }
61 |
62 | /**
63 | * Uses the bookedDays value returned from getBookedDays() to create an array containing
64 | * info on whether the day has any timeslots available or not.
65 | * @param {number} endDate End date of the month.
66 | * @param {number[]} bookedDays An array containing the days that are fully booked.
67 | * @returns {object[]} daysArr An array containing objects which represent the days of
68 | * the month, and whether the day has any timeslots available.
69 | */
70 | function makeDaysArr(endDate, bookedDays) {
71 | let daysArr = [];
72 | for (let i = 1; i <= endDate; i++) {
73 | if (bookedDays.includes(i)) {
74 | daysArr.push({"day": i, "hasTimeSlots": false});
75 | } else {
76 | daysArr.push({"day": i, "hasTimeSlots": true});
77 | }
78 | }
79 | return daysArr;
80 | }
81 |
82 | /**
83 | * Returns a promise with data containing objects with information on whether the days in the given
84 | * month have any timeslots available. Days with no timeslots are considered fully booked.
85 | * @param {object} auth The oAuth2Client used for authentication for the Google Calendar API.
86 | * @param {number} year Year to search for.
87 | * @param {number} month Month to search for.
88 | * @returns {promise} A promise representing the eventual completion of the getBookableDays() function.
89 | */
90 | function getBookableDays(auth, year, month) {
91 | return new Promise(function(resolve, reject) {
92 | const isInvalid = reqValidator.validateGetDays(year, month);
93 | if (isInvalid) return reject(isInvalid);
94 |
95 | const startDate = new Date(Date.UTC(year, month-1, appUtil.getCurrDateUTC()));
96 | const endDate = new Date((Date.UTC(year, month)));
97 | const calendar = google.calendar({version: 'v3', auth});
98 | calendar.events.list({
99 | calendarId: 'primary',
100 | timeMin: startDate.toISOString(),
101 | timeMax: endDate.toISOString(),
102 | maxResults: 350,
103 | singleEvents: true,
104 | orderBy: 'startTime',
105 | q: 'appointment'
106 | }, (err, res) => {
107 | if (err) return reject({success: false,
108 | message: 'The API returned an error - ' + err});
109 | const events = res.data.items;
110 | const lastDay = appUtil.getLastDayOfMonth(year, month);
111 | let result = {};
112 | result.days = makeDaysArr(lastDay, getBookedDays(events));
113 | const response = Object.assign({success: true}, result);
114 | resolve(response);
115 | });
116 | });
117 | }
118 |
119 | module.exports = {
120 | getBookableDays
121 | };
/**
30 | * @license
31 | * Copyright Google Inc.
32 | *
33 | * Licensed under the Apache License, Version 2.0 (the "License");
34 | * you may not use this file except in compliance with the License.
35 | * You may obtain a copy of the License at
36 | *
37 | * https://www.apache.org/licenses/LICENSE-2.0
38 | *
39 | * Unless required by applicable law or agreed to in writing, software
40 | * distributed under the License is distributed on an "AS IS" BASIS,
41 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
42 | * See the License for the specific language governing permissions and
43 | * limitations under the License.
44 | */
45 |
46 | const fs = require('fs');
47 | const readline = require('readline');
48 | const {google} = require('googleapis');
49 |
50 | // If modifying these scopes, delete token.json.
51 | const SCOPES = ['https://www.googleapis.com/auth/calendar'];
52 | // The file token.json stores the user's access and refresh tokens, and is
53 | // created automatically when the authorization flow completes for the first
54 | // time.
55 | const TOKEN_PATH = './Utility/token.json';
56 | const CREDENTIALS_PATH = './Utility/credentials.json';
57 |
58 | // Load client secrets from a local file.
59 | function initAuthorize(callback) {
60 | fs.readFile(CREDENTIALS_PATH, (err, content) => {
61 | if (err) {
62 | console.log('The credentials.json file could not be found or was invalid. \n' +
63 | 'Please visit: https://developers.google.com/calendar/quickstart/nodejs \n' +
64 | 'and generate a credentials.json file from that site. Then, place your \n' +
65 | 'credentials file into the "Utility" directory of this application.');
66 | process.exit(1);
67 | }
68 | // Authorize a client with credentials, then call the Google Calendar API.
69 | authorize(JSON.parse(content), callback);
70 | });
71 | }
72 |
73 | /**
74 | * Create an OAuth2 client with the given credentials, and then execute the
75 | * given callback function.
76 | * @param {Object} credentials The authorization client credentials.
77 | * @param {function} callback The callback to call with the authorized client.
78 | */
79 | function authorize(credentials, callback) {
80 | const {client_secret, client_id, redirect_uris} = credentials.installed;
81 | const oAuth2Client = new google.auth.OAuth2(
82 | client_id, client_secret, redirect_uris[0]);
83 |
84 | // Check if we have previously stored a token.
85 | fs.readFile(TOKEN_PATH, (err, token) => {
86 | if (err) return getAccessToken(oAuth2Client, callback);
87 | oAuth2Client.setCredentials(JSON.parse(token));
88 | callback(oAuth2Client);
89 | });
90 | }
91 |
92 | /**
93 | * Get and store new token after prompting for user authorization, and then
94 | * execute the given callback with the authorized OAuth2 client.
95 | * @param {google.auth.OAuth2} oAuth2Client The OAuth2 client to get token for.
96 | * @param {function} callback The callback for the authorized client.
97 | */
98 | function getAccessToken(oAuth2Client, callback) {
99 | const authUrl = oAuth2Client.generateAuthUrl({
100 | access_type: 'offline',
101 | scope: SCOPES,
102 | });
103 | console.log('Authorize this app by visiting this url:', authUrl);
104 | const rl = readline.createInterface({input: process.stdin, output: process.stdout});
105 | rl.question('Enter the code from that page here: ', (code) => {
106 | rl.close();
107 | oAuth2Client.getToken(code, (err, token) => {
108 | if (err) return console.error('Error retrieving access token', err);
109 | oAuth2Client.setCredentials(token);
110 | // Store the token to disk for later program executions
111 | fs.writeFile(TOKEN_PATH, JSON.stringify(token), (err) => {
112 | if (err) return console.error(err);
113 | console.log('Token stored to', TOKEN_PATH);
114 | });
115 | callback(oAuth2Client);
116 | });
117 | });
118 | }
119 |
120 | module.exports = {
121 | SCOPES,
122 | initAuthorize
123 | };
/**
30 | * Used to check whether the booking is in the past.
31 | * @param {number} year Year of booking.
32 | * @param {number} month Month of booking.
33 | * @param {number} day Day of booking.
34 | * @param {number} hour Hour of booking.
35 | * @param {number} minute Minute of booking.
36 | * @returns {boolean} Returns a boolean representing whether the book is in the past.
37 | */
38 | function isInPast(year, month, day, hour, minute) {
39 | const todayDate = Date.now();
40 | let reqDate = {};
41 | if (hour !== undefined) {
42 | reqDate = Date.UTC(year, month - 1, day, hour, minute);
43 | } else if (day !== undefined) {
44 | reqDate = Date.UTC(year, month - 1, day);
45 | } else {
46 | reqDate = Date.UTC(year, month);
47 | }
48 | return reqDate < todayDate;
49 |
50 | }
51 |
52 | /**
53 | * Used to check whether the booking is at least 24 hours in advance.
54 | * @param {number} year Year of booking.
55 | * @param {number} month Month of booking.
56 | * @param {number} day Day of booking.
57 | * @param {number} hour Hour of booking.
58 | * @param {number} minute Minute of booking.
59 | * @returns {boolean} Returns a boolean representing whether the book is 24 hours in advance.
60 | */
61 | function is24HoursInAdvance(year, month, day, hour, minute) {
62 | const todayDate = new Date(Date.now());
63 | const plus24Hours = todayDate.setUTCHours(todayDate.getUTCHours() + 24);
64 | const reqDate = Date.UTC(year, month-1, day, hour, minute);
65 | return reqDate > plus24Hours;
66 | }
67 |
68 | /**
69 | * Used to check whether the booking is in the bookable time frame (on a weekday between 9 am and 5 pm).
70 | * @param {number} year Year of booking.
71 | * @param {number} month Month of booking.
72 | * @param {number} day Day of booking.
73 | * @param {number} hour Hour of booking.
74 | * @param {number} minute Minute of booking.
75 | * @returns {boolean} Returns a boolean representing whether the booking is in the bookable time frame.
76 | */
77 | function isInBookableTimeframe(year, month, day, hour, minute) {
78 | if (hour !== undefined) {
79 | const reqDate = new Date(Date.UTC(year, month-1, day, hour, minute));
80 | const reqDay = reqDate.getUTCDay();
81 | if (reqDay === 6 || reqDay === 0) return false; // 6 is Saturday, 0 is Sunday.
82 | const reqHour = reqDate.getUTCHours();
83 | if (reqHour < 9 || reqHour > 17) return false;
84 | } else {
85 | const reqDate = new Date(Date.UTC(year, month-1, day));
86 | const reqDay = reqDate.getUTCDay();
87 | if (reqDay === 6 || reqDay === 0) return false; // 6 is Saturday, 0 is Sunday.
88 | }
89 | return true;
90 | }
91 |
92 | /**
93 | * Used to check for missing REST parameters inputs before proceeding with the request.
94 | * @param {number} year Year value to check. Denote with '0' if not checking for this variable.
95 | * @param {number} month Month value to check Denote with '0' if not checking for this variable.
96 | * @param {number} day Day value to check Denote with '0' if not checking for this variable.
97 | * @param {number} hour Hour value to check. Denote with '0' if not checking for this variable.
98 | * @param {number} minute Minute value to check. Denote with '0' if not checking for this variable.
99 | * @returns {object} Returns an object with info on what parameter was missing.
100 | */
101 | function checkMissingInputs(year, month, day, hour, minute) {
102 | if (!year) return {success: false, message: 'Request is missing parameter: year'};
103 | if (!month) return {success: false, message: 'Request is missing parameter: month'};
104 | if (!day) return {success: false, message: 'Request is missing parameter: day'};
105 | if (!hour) return {success: false, message: 'Request is missing parameter: hour'};
106 | if (!minute) return {success: false, message: 'Request is missing parameter: minute'};
107 | }
108 |
109 | /**
110 | * Used to validate bookings.
111 | * @param {number} year Year of booking to check.
112 | * @param {number} month Month of booking to check.
113 | * @param {number} day Day of booking to check.
114 | * @param {number} hour Hour of booking to check.
115 | * @param {number} minute Minute of booking to check.
116 | * @returns {object} Returns an object with info on why the booking was invalid.
117 | */
118 | function validateBooking(year, month, day, hour, minute) {
119 | const missingInputs = checkMissingInputs(year, month, day, hour, minute);
120 | if (missingInputs) return missingInputs;
121 | if (isInPast(year, month, day, hour, minute))
122 | return {success: false, message: 'Cannot book time in the past'};
123 | if (!isInBookableTimeframe(year, month, day, hour, minute))
124 | return {success: false, message: 'Cannot book outside bookable timeframe'};
125 | if (!is24HoursInAdvance(year, month, day, hour, minute))
126 | return {success: false, message: 'Cannot book with less than 24 hours in advance'};
127 | }
128 |
129 | /**
130 | * Used to validate GET Timeslot requests.
131 | * @param {number} year Year parameter to check.
132 | * @param {number} month Month parameter to check.
133 | * @param {number} day Day parameter to check.
134 | * @returns {object} Returns an object with info on why the request was invalid.
135 | */
136 | function validateGetTimeslots(year, month, day) {
137 | const missingInputs = checkMissingInputs(year, month, day, '0', '0');
138 | if (missingInputs) return missingInputs;
139 | if (isInPast(year, month, day, undefined, undefined))
140 | return {success: false, message: 'No timeslots are available in the past'};
141 | if (!isInBookableTimeframe(year, month, day, undefined, undefined))
142 | return {success: false, message: 'No timeslots exist outside bookable timeframe'};
143 | }
144 |
145 | /**
146 | * Used to validate GET Days requests.
147 | * @param {number} year Year parameter to check.
148 | * @param {number} month Month parameter to check.
149 | * @returns {object} Returns an object with info on why the request was invalid.
150 | */
151 | function validateGetDays(year, month) {
152 | const missingInputs = checkMissingInputs(year, month, '0', '0', '0');
153 | if (missingInputs) return missingInputs;
154 | if (isInPast(year, month, undefined, undefined, undefined))
155 | return {success: false, message: 'No timeslots are available in the past'};
156 | }
157 |
158 | module.exports = {
159 | checkMissingInputs,
160 | validateBooking,
161 | validateGetTimeslots,
162 | validateGetDays
163 | };
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
175 |
176 |
177 |
178 |
181 |
182 |
183 |
184 |
185 |
186 |
--------------------------------------------------------------------------------
/JSDoc/scripts/prettify/Apache-License-2.0.txt:
--------------------------------------------------------------------------------
1 |
2 | Apache License
3 | Version 2.0, January 2004
4 | http://www.apache.org/licenses/
5 |
6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7 |
8 | 1. Definitions.
9 |
10 | "License" shall mean the terms and conditions for use, reproduction,
11 | and distribution as defined by Sections 1 through 9 of this document.
12 |
13 | "Licensor" shall mean the copyright owner or entity authorized by
14 | the copyright owner that is granting the License.
15 |
16 | "Legal Entity" shall mean the union of the acting entity and all
17 | other entities that control, are controlled by, or are under common
18 | control with that entity. For the purposes of this definition,
19 | "control" means (i) the power, direct or indirect, to cause the
20 | direction or management of such entity, whether by contract or
21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
22 | outstanding shares, or (iii) beneficial ownership of such entity.
23 |
24 | "You" (or "Your") shall mean an individual or Legal Entity
25 | exercising permissions granted by this License.
26 |
27 | "Source" form shall mean the preferred form for making modifications,
28 | including but not limited to software source code, documentation
29 | source, and configuration files.
30 |
31 | "Object" form shall mean any form resulting from mechanical
32 | transformation or translation of a Source form, including but
33 | not limited to compiled object code, generated documentation,
34 | and conversions to other media types.
35 |
36 | "Work" shall mean the work of authorship, whether in Source or
37 | Object form, made available under the License, as indicated by a
38 | copyright notice that is included in or attached to the work
39 | (an example is provided in the Appendix below).
40 |
41 | "Derivative Works" shall mean any work, whether in Source or Object
42 | form, that is based on (or derived from) the Work and for which the
43 | editorial revisions, annotations, elaborations, or other modifications
44 | represent, as a whole, an original work of authorship. For the purposes
45 | of this License, Derivative Works shall not include works that remain
46 | separable from, or merely link (or bind by name) to the interfaces of,
47 | the Work and Derivative Works thereof.
48 |
49 | "Contribution" shall mean any work of authorship, including
50 | the original version of the Work and any modifications or additions
51 | to that Work or Derivative Works thereof, that is intentionally
52 | submitted to Licensor for inclusion in the Work by the copyright owner
53 | or by an individual or Legal Entity authorized to submit on behalf of
54 | the copyright owner. For the purposes of this definition, "submitted"
55 | means any form of electronic, verbal, or written communication sent
56 | to the Licensor or its representatives, including but not limited to
57 | communication on electronic mailing lists, source code control systems,
58 | and issue tracking systems that are managed by, or on behalf of, the
59 | Licensor for the purpose of discussing and improving the Work, but
60 | excluding communication that is conspicuously marked or otherwise
61 | designated in writing by the copyright owner as "Not a Contribution."
62 |
63 | "Contributor" shall mean Licensor and any individual or Legal Entity
64 | on behalf of whom a Contribution has been received by Licensor and
65 | subsequently incorporated within the Work.
66 |
67 | 2. Grant of Copyright License. Subject to the terms and conditions of
68 | this License, each Contributor hereby grants to You a perpetual,
69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70 | copyright license to reproduce, prepare Derivative Works of,
71 | publicly display, publicly perform, sublicense, and distribute the
72 | Work and such Derivative Works in Source or Object form.
73 |
74 | 3. Grant of Patent License. Subject to the terms and conditions of
75 | this License, each Contributor hereby grants to You a perpetual,
76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77 | (except as stated in this section) patent license to make, have made,
78 | use, offer to sell, sell, import, and otherwise transfer the Work,
79 | where such license applies only to those patent claims licensable
80 | by such Contributor that are necessarily infringed by their
81 | Contribution(s) alone or by combination of their Contribution(s)
82 | with the Work to which such Contribution(s) was submitted. If You
83 | institute patent litigation against any entity (including a
84 | cross-claim or counterclaim in a lawsuit) alleging that the Work
85 | or a Contribution incorporated within the Work constitutes direct
86 | or contributory patent infringement, then any patent licenses
87 | granted to You under this License for that Work shall terminate
88 | as of the date such litigation is filed.
89 |
90 | 4. Redistribution. You may reproduce and distribute copies of the
91 | Work or Derivative Works thereof in any medium, with or without
92 | modifications, and in Source or Object form, provided that You
93 | meet the following conditions:
94 |
95 | (a) You must give any other recipients of the Work or
96 | Derivative Works a copy of this License; and
97 |
98 | (b) You must cause any modified files to carry prominent notices
99 | stating that You changed the files; and
100 |
101 | (c) You must retain, in the Source form of any Derivative Works
102 | that You distribute, all copyright, patent, trademark, and
103 | attribution notices from the Source form of the Work,
104 | excluding those notices that do not pertain to any part of
105 | the Derivative Works; and
106 |
107 | (d) If the Work includes a "NOTICE" text file as part of its
108 | distribution, then any Derivative Works that You distribute must
109 | include a readable copy of the attribution notices contained
110 | within such NOTICE file, excluding those notices that do not
111 | pertain to any part of the Derivative Works, in at least one
112 | of the following places: within a NOTICE text file distributed
113 | as part of the Derivative Works; within the Source form or
114 | documentation, if provided along with the Derivative Works; or,
115 | within a display generated by the Derivative Works, if and
116 | wherever such third-party notices normally appear. The contents
117 | of the NOTICE file are for informational purposes only and
118 | do not modify the License. You may add Your own attribution
119 | notices within Derivative Works that You distribute, alongside
120 | or as an addendum to the NOTICE text from the Work, provided
121 | that such additional attribution notices cannot be construed
122 | as modifying the License.
123 |
124 | You may add Your own copyright statement to Your modifications and
125 | may provide additional or different license terms and conditions
126 | for use, reproduction, or distribution of Your modifications, or
127 | for any such Derivative Works as a whole, provided Your use,
128 | reproduction, and distribution of the Work otherwise complies with
129 | the conditions stated in this License.
130 |
131 | 5. Submission of Contributions. Unless You explicitly state otherwise,
132 | any Contribution intentionally submitted for inclusion in the Work
133 | by You to the Licensor shall be under the terms and conditions of
134 | this License, without any additional terms or conditions.
135 | Notwithstanding the above, nothing herein shall supersede or modify
136 | the terms of any separate license agreement you may have executed
137 | with Licensor regarding such Contributions.
138 |
139 | 6. Trademarks. This License does not grant permission to use the trade
140 | names, trademarks, service marks, or product names of the Licensor,
141 | except as required for reasonable and customary use in describing the
142 | origin of the Work and reproducing the content of the NOTICE file.
143 |
144 | 7. Disclaimer of Warranty. Unless required by applicable law or
145 | agreed to in writing, Licensor provides the Work (and each
146 | Contributor provides its Contributions) on an "AS IS" BASIS,
147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148 | implied, including, without limitation, any warranties or conditions
149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150 | PARTICULAR PURPOSE. You are solely responsible for determining the
151 | appropriateness of using or redistributing the Work and assume any
152 | risks associated with Your exercise of permissions under this License.
153 |
154 | 8. Limitation of Liability. In no event and under no legal theory,
155 | whether in tort (including negligence), contract, or otherwise,
156 | unless required by applicable law (such as deliberate and grossly
157 | negligent acts) or agreed to in writing, shall any Contributor be
158 | liable to You for damages, including any direct, indirect, special,
159 | incidental, or consequential damages of any character arising as a
160 | result of this License or out of the use or inability to use the
161 | Work (including but not limited to damages for loss of goodwill,
162 | work stoppage, computer failure or malfunction, or any and all
163 | other commercial damages or losses), even if such Contributor
164 | has been advised of the possibility of such damages.
165 |
166 | 9. Accepting Warranty or Additional Liability. While redistributing
167 | the Work or Derivative Works thereof, You may choose to offer,
168 | and charge a fee for, acceptance of support, warranty, indemnity,
169 | or other liability obligations and/or rights consistent with this
170 | License. However, in accepting such obligations, You may act only
171 | on Your own behalf and on Your sole responsibility, not on behalf
172 | of any other Contributor, and only if You agree to indemnify,
173 | defend, and hold each Contributor harmless for any liability
174 | incurred by, or claims asserted against, such Contributor by reason
175 | of your accepting any such warranty or additional liability.
176 |
177 | END OF TERMS AND CONDITIONS
178 |
179 | APPENDIX: How to apply the Apache License to your work.
180 |
181 | To apply the Apache License to your work, attach the following
182 | boilerplate notice, with the fields enclosed by brackets "[]"
183 | replaced with your own identifying information. (Don't include
184 | the brackets!) The text should be enclosed in the appropriate
185 | comment syntax for the file format. We also recommend that a
186 | file or class name and description of purpose be included on the
187 | same "printed page" as the copyright notice for easier
188 | identification within third-party archives.
189 |
190 | Copyright [yyyy] [name of copyright owner]
191 |
192 | Licensed under the Apache License, Version 2.0 (the "License");
193 | you may not use this file except in compliance with the License.
194 | You may obtain a copy of the License at
195 |
196 | http://www.apache.org/licenses/LICENSE-2.0
197 |
198 | Unless required by applicable law or agreed to in writing, software
199 | distributed under the License is distributed on an "AS IS" BASIS,
200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201 | See the License for the specific language governing permissions and
202 | limitations under the License.
203 |
--------------------------------------------------------------------------------
/JSDoc/scripts/prettify/prettify.js:
--------------------------------------------------------------------------------
1 | var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;
2 | (function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a=
3 | [],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;ci[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m),
9 | l=[],p={},d=0,g=e.length;d=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,
10 | q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/,
11 | q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g,
12 | "");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a),
13 | a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e}
14 | for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],
18 | "catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"],
19 | H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],
20 | J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
21 | I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^]+/],["dec",/^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^