-
Notifications
You must be signed in to change notification settings - Fork 869
Expand file tree
/
Copy pathcloudmail-utils.js
More file actions
228 lines (205 loc) · 6.55 KB
/
cloudmail-utils.js
File metadata and controls
228 lines (205 loc) · 6.55 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
(function cloudMailUtilsModule(root, factory) {
if (typeof module !== 'undefined' && module.exports) {
module.exports = factory();
return;
}
root.CloudMailUtils = factory();
})(typeof self !== 'undefined' ? self : globalThis, function createCloudMailUtils() {
const DEFAULT_MAIL_PAGE_SIZE = 20;
function firstNonEmptyString(values) {
for (const value of values) {
if (value === undefined || value === null) continue;
const normalized = String(value).trim();
if (normalized) return normalized;
}
return '';
}
function normalizeCloudMailBaseUrl(rawValue = '') {
const value = String(rawValue || '').trim();
if (!value) return '';
const candidate = /^[a-zA-Z][a-zA-Z\d+\-.]*:\/\//.test(value) ? value : `https://${value}`;
try {
const parsed = new URL(candidate);
parsed.hash = '';
parsed.search = '';
const pathname = parsed.pathname === '/' ? '' : parsed.pathname.replace(/\/+$/, '');
return `${parsed.origin}${pathname}`;
} catch {
return '';
}
}
function normalizeCloudMailDomain(rawValue = '') {
let value = String(rawValue || '').trim().toLowerCase();
if (!value) return '';
value = value.replace(/^@+/, '');
value = value.replace(/^https?:\/\//, '');
value = value.replace(/\/.*$/, '');
if (!/^[a-z0-9.-]+\.[a-z]{2,}$/i.test(value)) {
return '';
}
return value;
}
function normalizeCloudMailDomains(values) {
const domains = [];
const seen = new Set();
for (const value of Array.isArray(values) ? values : []) {
const normalized = normalizeCloudMailDomain(value);
if (!normalized || seen.has(normalized)) continue;
seen.add(normalized);
domains.push(normalized);
}
return domains;
}
function buildCloudMailHeaders(config = {}, options = {}) {
const headers = {};
const token = firstNonEmptyString([
config.token,
config.cloudMailToken,
options.token,
]);
if (token) {
headers.Authorization = token;
}
if (options.json) {
headers['Content-Type'] = 'application/json';
}
if (options.acceptJson !== false) {
headers.Accept = 'application/json';
}
return headers;
}
function joinCloudMailUrl(baseUrl, path) {
const normalizedBase = normalizeCloudMailBaseUrl(baseUrl);
const normalizedPath = String(path || '').trim();
if (!normalizedBase || !normalizedPath) return normalizedBase || '';
return `${normalizedBase}${normalizedPath.startsWith('/') ? '' : '/'}${normalizedPath}`;
}
function getCloudMailMailRows(payload) {
if (Array.isArray(payload)) return payload;
if (!payload || typeof payload !== 'object') return [];
const candidates = [
payload.data,
payload.list,
payload.items,
payload.rows,
payload.records,
payload?.data?.list,
payload?.data?.records,
payload?.data?.rows,
];
for (const candidate of candidates) {
if (Array.isArray(candidate)) {
return candidate;
}
}
return [];
}
function normalizeCloudMailAddress(value) {
return String(value || '').trim().toLowerCase();
}
function stripHtmlTags(value = '') {
return String(value || '')
.replace(/<style[\s\S]*?<\/style>/gi, ' ')
.replace(/<script[\s\S]*?<\/script>/gi, ' ')
.replace(/<[^>]+>/g, ' ')
.replace(/ /gi, ' ')
.replace(/&/gi, '&')
.replace(/</gi, '<')
.replace(/>/gi, '>')
.replace(/\s+/g, ' ')
.trim();
}
function parseCloudMailCreateTime(value) {
if (value === undefined || value === null || value === '') return '';
if (typeof value === 'number' && Number.isFinite(value)) {
return new Date(value).toISOString();
}
const source = String(value).trim();
if (!source) return '';
// Cloud Mail returns UTC time like "2099-12-30 23:59:59"; treat as UTC.
const match = source.match(/^(\d{4})-(\d{2})-(\d{2})[ T](\d{2}):(\d{2}):(\d{2})(?:\.(\d+))?(?:Z|([+-]\d{2}:?\d{2}))?$/);
if (match) {
const [, year, month, day, hour, minute, second, ms, offset] = match;
let iso = `${year}-${month}-${day}T${hour}:${minute}:${second}`;
if (ms) iso += `.${ms}`;
if (offset) {
iso += offset.includes(':') ? offset : `${offset.slice(0, 3)}:${offset.slice(3)}`;
} else {
iso += 'Z';
}
const parsed = Date.parse(iso);
return Number.isFinite(parsed) ? new Date(parsed).toISOString() : iso;
}
const parsed = Date.parse(source);
return Number.isFinite(parsed) ? new Date(parsed).toISOString() : source;
}
function normalizeCloudMailMessage(row = {}) {
if (!row || typeof row !== 'object') return null;
const address = normalizeCloudMailAddress(firstNonEmptyString([
row.toEmail,
row.to_email,
row.recipient,
row.address,
row.email,
]));
const subject = firstNonEmptyString([row.subject, row.title]);
const fromAddress = firstNonEmptyString([
row.sendEmail,
row.send_email,
row.from,
row.sender,
row.mailFrom,
]);
const htmlContent = firstNonEmptyString([row.content, row.html]);
const textContent = firstNonEmptyString([row.text, row.plainText, row.content_text]);
const bodyPreview = (textContent
|| stripHtmlTags(htmlContent)
|| '').replace(/\s+/g, ' ').trim();
return {
id: firstNonEmptyString([row.emailId, row.id, row.mailId, row.mail_id]),
address,
addressId: '',
subject,
from: {
emailAddress: {
address: fromAddress,
},
},
bodyPreview,
raw: htmlContent || textContent || '',
receivedDateTime: parseCloudMailCreateTime(firstNonEmptyString([
row.createTime,
row.create_time,
row.createdAt,
row.created_at,
row.receivedDateTime,
row.date,
])),
};
}
function normalizeCloudMailMailApiMessages(payload) {
return getCloudMailMailRows(payload)
.map((row) => normalizeCloudMailMessage(row))
.filter(Boolean);
}
function getCloudMailTokenFromResponse(payload = {}) {
return firstNonEmptyString([
payload?.data?.token,
payload?.token,
payload?.data?.accessToken,
payload?.accessToken,
]);
}
return {
DEFAULT_MAIL_PAGE_SIZE,
buildCloudMailHeaders,
getCloudMailTokenFromResponse,
joinCloudMailUrl,
normalizeCloudMailAddress,
normalizeCloudMailBaseUrl,
normalizeCloudMailDomain,
normalizeCloudMailDomains,
normalizeCloudMailMailApiMessages,
normalizeCloudMailMessage,
};
});