| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-01 21:27:46 -04:00
										 |  |  | const noteService = require('./notes'); | 
					
						
							| 
									
										
										
										
											2018-08-07 13:33:10 +02:00
										 |  |  | const attributeService = require('./attributes'); | 
					
						
							| 
									
										
										
										
											2018-04-02 20:46:46 -04:00
										 |  |  | const dateUtils = require('./date_utils'); | 
					
						
							| 
									
										
										
										
											2021-06-29 22:15:57 +02:00
										 |  |  | const becca = require('../becca/becca'); | 
					
						
							| 
									
										
										
										
											2020-08-18 21:32:45 +02:00
										 |  |  | const sql = require('./sql'); | 
					
						
							| 
									
										
										
										
											2020-12-21 23:00:39 +01:00
										 |  |  | const protectedSessionService = require('./protected_session'); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 21:56:55 -04:00
										 |  |  | const CALENDAR_ROOT_LABEL = 'calendarRoot'; | 
					
						
							| 
									
										
										
										
											2018-04-04 23:04:31 -04:00
										 |  |  | const YEAR_LABEL = 'yearNote'; | 
					
						
							|  |  |  | const MONTH_LABEL = 'monthNote'; | 
					
						
							|  |  |  | const DATE_LABEL = 'dateNote'; | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-10 13:53:35 -05:00
										 |  |  | const DAYS = ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday']; | 
					
						
							|  |  |  | const MONTHS = ['January','February','March','April','May','June','July','August','September','October','November','December']; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-21 23:00:39 +01:00
										 |  |  | function createNote(parentNote, noteTitle) { | 
					
						
							|  |  |  |     return noteService.createNewNote({ | 
					
						
							|  |  |  |         parentNoteId: parentNote.noteId, | 
					
						
							| 
									
										
										
										
											2018-01-28 19:30:14 -05:00
										 |  |  |         title: noteTitle, | 
					
						
							| 
									
										
										
										
											2019-11-21 21:12:07 +01:00
										 |  |  |         content: '', | 
					
						
							| 
									
										
										
										
											2020-12-21 23:00:39 +01:00
										 |  |  |         isProtected: parentNote.isProtected && protectedSessionService.isProtectedSessionAvailable(), | 
					
						
							| 
									
										
										
										
											2019-11-21 21:12:07 +01:00
										 |  |  |         type: 'text' | 
					
						
							| 
									
										
										
										
											2020-12-21 23:00:39 +01:00
										 |  |  |     }).note; | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-24 14:53:45 +02:00
										 |  |  | /** @returns {Note} */ | 
					
						
							| 
									
										
										
										
											2020-06-20 12:31:38 +02:00
										 |  |  | function getRootCalendarNote() { | 
					
						
							|  |  |  |     let rootNote = attributeService.getNoteWithLabel(CALENDAR_ROOT_LABEL); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-07 13:03:16 -04:00
										 |  |  |     if (!rootNote) { | 
					
						
							| 
									
										
										
										
											2020-08-18 21:32:45 +02:00
										 |  |  |         sql.transactional(() => { | 
					
						
							|  |  |  |             rootNote = noteService.createNewNote({ | 
					
						
							|  |  |  |                 parentNoteId: 'root', | 
					
						
							|  |  |  |                 title: 'Calendar', | 
					
						
							|  |  |  |                 target: 'into', | 
					
						
							|  |  |  |                 isProtected: false, | 
					
						
							|  |  |  |                 type: 'text', | 
					
						
							|  |  |  |                 content: '' | 
					
						
							|  |  |  |             }).note; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             attributeService.createLabel(rootNote.noteId, CALENDAR_ROOT_LABEL); | 
					
						
							|  |  |  |             attributeService.createLabel(rootNote.noteId, 'sorted'); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-07 13:03:16 -04:00
										 |  |  |     return rootNote; | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-24 14:53:45 +02:00
										 |  |  | /** @returns {Note} */ | 
					
						
							| 
									
										
										
										
											2020-06-20 12:31:38 +02:00
										 |  |  | function getYearNote(dateStr, rootNote) { | 
					
						
							| 
									
										
										
										
											2019-02-19 22:49:57 +01:00
										 |  |  |     if (!rootNote) { | 
					
						
							| 
									
										
										
										
											2020-06-20 12:31:38 +02:00
										 |  |  |         rootNote = getRootCalendarNote(); | 
					
						
							| 
									
										
										
										
											2019-02-19 22:49:57 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-15 23:46:01 +01:00
										 |  |  |     const yearStr = dateStr.substr(0, 4); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-11 14:15:38 +01:00
										 |  |  |     let yearNote = attributeService.getNoteWithLabel(YEAR_LABEL, yearStr); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |     if (yearNote) { | 
					
						
							|  |  |  |         return yearNote; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |     sql.transactional(() => { | 
					
						
							|  |  |  |         yearNote = createNote(rootNote, yearStr); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |         attributeService.createLabel(yearNote.noteId, YEAR_LABEL, yearStr); | 
					
						
							|  |  |  |         attributeService.createLabel(yearNote.noteId, 'sorted'); | 
					
						
							| 
									
										
										
										
											2019-09-07 21:40:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |         const yearTemplateAttr = rootNote.getOwnedAttribute('relation', 'yearTemplate'); | 
					
						
							| 
									
										
										
										
											2019-09-07 21:40:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |         if (yearTemplateAttr) { | 
					
						
							|  |  |  |             attributeService.createRelation(yearNote.noteId, 'template', yearTemplateAttr.value); | 
					
						
							| 
									
										
										
										
											2019-09-07 21:40:18 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-07 13:03:16 -04:00
										 |  |  |     return yearNote; | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-20 12:31:38 +02:00
										 |  |  | function getMonthNoteTitle(rootNote, monthNumber, dateObj) { | 
					
						
							|  |  |  |     const pattern = rootNote.getOwnedLabelValue("monthPattern") || "{monthNumberPadded} - {month}"; | 
					
						
							| 
									
										
										
										
											2019-05-19 11:30:17 +02:00
										 |  |  |     const monthName = MONTHS[dateObj.getMonth()]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return pattern | 
					
						
							|  |  |  |         .replace(/{monthNumberPadded}/g, monthNumber) | 
					
						
							|  |  |  |         .replace(/{month}/g, monthName); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-24 14:53:45 +02:00
										 |  |  | /** @returns {Note} */ | 
					
						
							| 
									
										
										
										
											2020-06-20 12:31:38 +02:00
										 |  |  | function getMonthNote(dateStr, rootNote) { | 
					
						
							| 
									
										
										
										
											2019-09-07 21:40:18 +02:00
										 |  |  |     if (!rootNote) { | 
					
						
							| 
									
										
										
										
											2020-06-20 12:31:38 +02:00
										 |  |  |         rootNote = getRootCalendarNote(); | 
					
						
							| 
									
										
										
										
											2019-09-07 21:40:18 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-15 23:46:01 +01:00
										 |  |  |     const monthStr = dateStr.substr(0, 7); | 
					
						
							|  |  |  |     const monthNumber = dateStr.substr(5, 2); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-20 12:31:38 +02:00
										 |  |  |     let monthNote = attributeService.getNoteWithLabel(MONTH_LABEL, monthStr); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |     if (monthNote) { | 
					
						
							|  |  |  |         return monthNote; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const dateObj = dateUtils.parseLocalDate(dateStr); | 
					
						
							| 
									
										
										
										
											2018-02-10 13:53:35 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |     const noteTitle = getMonthNoteTitle(rootNote, monthNumber, dateObj); | 
					
						
							| 
									
										
										
										
											2018-02-10 13:53:35 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-11 14:15:38 +01:00
										 |  |  |     const yearNote = getYearNote(dateStr, rootNote); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |     sql.transactional(() => { | 
					
						
							|  |  |  |         monthNote = createNote(yearNote, noteTitle); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |         attributeService.createLabel(monthNote.noteId, MONTH_LABEL, monthStr); | 
					
						
							|  |  |  |         attributeService.createLabel(monthNote.noteId, 'sorted'); | 
					
						
							| 
									
										
										
										
											2019-09-07 21:40:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |         const monthTemplateAttr = rootNote.getOwnedAttribute('relation', 'monthTemplate'); | 
					
						
							| 
									
										
										
										
											2019-09-07 21:40:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |         if (monthTemplateAttr) { | 
					
						
							|  |  |  |             attributeService.createRelation(monthNote.noteId, 'template', monthTemplateAttr.value); | 
					
						
							| 
									
										
										
										
											2019-09-07 21:40:18 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-07 13:03:16 -04:00
										 |  |  |     return monthNote; | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-20 12:31:38 +02:00
										 |  |  | function getDateNoteTitle(rootNote, dayNumber, dateObj) { | 
					
						
							|  |  |  |     const pattern = rootNote.getOwnedLabelValue("datePattern") || "{dayInMonthPadded} - {weekDay}"; | 
					
						
							| 
									
										
										
										
											2019-05-19 11:30:17 +02:00
										 |  |  |     const weekDay = DAYS[dateObj.getDay()]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return pattern | 
					
						
							|  |  |  |         .replace(/{dayInMonthPadded}/g, dayNumber) | 
					
						
							| 
									
										
										
										
											2021-11-04 19:56:45 +01:00
										 |  |  |         .replace(/{isoDate}/g, dateUtils.utcDateStr(dateObj)) | 
					
						
							| 
									
										
										
										
											2019-05-19 11:30:17 +02:00
										 |  |  |         .replace(/{weekDay}/g, weekDay) | 
					
						
							|  |  |  |         .replace(/{weekDay3}/g, weekDay.substr(0, 3)) | 
					
						
							|  |  |  |         .replace(/{weekDay2}/g, weekDay.substr(0, 2)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-24 14:53:45 +02:00
										 |  |  | /** @returns {Note} */ | 
					
						
							| 
									
										
										
										
											2020-06-20 12:31:38 +02:00
										 |  |  | function getDateNote(dateStr) { | 
					
						
							|  |  |  |     let dateNote = attributeService.getNoteWithLabel(DATE_LABEL, dateStr); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |     if (dateNote) { | 
					
						
							|  |  |  |         return dateNote; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |     const rootNote = getRootCalendarNote(); | 
					
						
							|  |  |  |     const monthNote = getMonthNote(dateStr, rootNote); | 
					
						
							|  |  |  |     const dayNumber = dateStr.substr(8, 2); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |     const dateObj = dateUtils.parseLocalDate(dateStr); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |     const noteTitle = getDateNoteTitle(rootNote, dayNumber, dateObj); | 
					
						
							| 
									
										
										
										
											2019-09-07 21:40:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |     sql.transactional(() => { | 
					
						
							|  |  |  |         dateNote = createNote(monthNote, noteTitle); | 
					
						
							| 
									
										
										
										
											2019-09-07 21:40:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |         attributeService.createLabel(dateNote.noteId, DATE_LABEL, dateStr.substr(0, 10)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         const dateTemplateAttr = rootNote.getOwnedAttribute('relation', 'dateTemplate'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (dateTemplateAttr) { | 
					
						
							|  |  |  |             attributeService.createRelation(dateNote.noteId, 'template', dateTemplateAttr.value); | 
					
						
							| 
									
										
										
										
											2019-09-07 21:40:18 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-07-24 11:28:47 +02:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-07 13:03:16 -04:00
										 |  |  |     return dateNote; | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-20 12:31:38 +02:00
										 |  |  | function getTodayNote() { | 
					
						
							|  |  |  |     return getDateNote(dateUtils.localNowDate()); | 
					
						
							| 
									
										
										
										
											2019-11-27 23:07:10 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-19 22:49:57 +01:00
										 |  |  | function getStartOfTheWeek(date, startOfTheWeek) { | 
					
						
							|  |  |  |     const day = date.getDay(); | 
					
						
							|  |  |  |     let diff; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (startOfTheWeek === 'monday') { | 
					
						
							|  |  |  |         diff = date.getDate() - day + (day === 0 ? -6 : 1); // adjust when day is sunday
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (startOfTheWeek === 'sunday') { | 
					
						
							|  |  |  |         diff = date.getDate() - day; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         throw new Error("Unrecognized start of the week " + startOfTheWeek); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return new Date(date.setDate(diff)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-20 12:31:38 +02:00
										 |  |  | function getWeekNote(dateStr, options = {}) { | 
					
						
							| 
									
										
										
										
											2019-02-19 22:49:57 +01:00
										 |  |  |     const startOfTheWeek = options.startOfTheWeek || "monday"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const dateObj = getStartOfTheWeek(dateUtils.parseLocalDate(dateStr), startOfTheWeek); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-04 19:52:00 +01:00
										 |  |  |     dateStr = dateUtils.utcDateTimeStr(dateObj); | 
					
						
							| 
									
										
										
										
											2019-02-19 22:49:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return getDateNote(dateStr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-24 23:08:14 -05:00
										 |  |  | module.exports = { | 
					
						
							| 
									
										
										
										
											2018-04-07 13:03:16 -04:00
										 |  |  |     getRootCalendarNote, | 
					
						
							|  |  |  |     getYearNote, | 
					
						
							|  |  |  |     getMonthNote, | 
					
						
							| 
									
										
										
										
											2019-02-19 22:49:57 +01:00
										 |  |  |     getWeekNote, | 
					
						
							| 
									
										
										
										
											2019-11-27 23:07:10 +01:00
										 |  |  |     getDateNote, | 
					
						
							|  |  |  |     getTodayNote | 
					
						
							| 
									
										
										
										
											2020-06-20 12:31:38 +02:00
										 |  |  | }; |