-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsts.js
113 lines (106 loc) · 2.44 KB
/
consts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/* Standard language in UBIT Alerts */
const SERVICE = "Network and Telephones";
const IMPACT = "Unavailable";
const REASON = "During Power Outage";
/* Content markers used to position the cursor or determine if the alert is malformed (i.e. doesn't contain what we expect it to) */
const OCCUPANTS_OF = "Occupants of";
const UNIVERSITY_FACILITIES = "University Facilities\n";
const PRIMARY_CONTACT = "PRIMARY CONTACT: TITLE:\nPHONE:\n";
const SECONDARY_CONTACT = "SECONDARY CONTACT: TITLE:\nPHONE:\n";
const ADDITIONAL_CONTACT = "ADDITIONAL CONTACT: TITLE:\nPHONE:\n";
const PLEASE_NOTIFY = "Please notify ";
const SCHEDULED_DATE = "SCHEDULED DATE";
const SCHEDULED_TIME = "SCHEDULED TIME";
/* Common information additionally included in fields that we don't need. Used to strip out unwanted info. */
const FLAGS = {
"location": ["loss","building wide power"]
};
/* Info-specific markers used to find information that appears in non-standard ways */
const MARKERS = {
"date": [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sun ",
"Mon ",
"Tue ",
"Wed ",
"Thu ",
"Fri ",
"Sat ",
"Sun. ",
"Mon. ",
"Tue. ",
"Wed. ",
"Thu. ",
"Fri. ",
"Sat. ",
"1/",
"2/",
"3/",
"4/",
"5/",
"6/",
"7/",
"8/",
"9/",
"10/",
"11/",
"12/",
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December",
"Jan ",
"Feb ",
"Mar ",
"Apr ",
"Jun ",
"Jul ",
"Aug ",
"Sep ",
"Oct ",
"Nov ",
"Dec ",
"Jan. ",
"Feb. ",
"Mar. ",
"Apr. ",
"Jun. ",
"Jul. ",
"Aug. ",
"Sep. ",
"Oct. ",
"Nov. ",
"Dec. "
],
"time": [ "1:", "2:", "3:", "4:", "5:", "6:", "7:", "8:", "9:", "10:", "11:", "12:"],
"contact": ["PRIMARY CONTACT: TITLE:\n"]
};
/* Mapping different cases for calling the positionCursor() method for more readable code */
const WHAT = 0;
const WHEN = 1;
const DATE = 2;
const TIME = 3;
const WHO = 4;
const BODY = 5;
/* For readability purposes, a macro representing the first index position of a string */
const START_OF_STRING = 0;
/* The highest index the cursor can reach (designed to prevent infinite loops) */
const CURSOR_LIMIT = 10000;
/* Adobe Acrobat uses a completely different format for copied text from PDFs. This helps
the script identify whether the notice was opened in Acrobat and does certain tasks
differently, depending. */
const ACROBAT_MARKER = "University Facilities";