This repository was archived by the owner on Sep 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathentity.ts
278 lines (226 loc) · 5.59 KB
/
entity.ts
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
'use strict';
import { InitOptions } from './types';
import cloneDeep from 'lodash.clonedeep'
import assignIn from 'lodash.assignin'
/*
* Module dependencies.
*/
var cookie = require('./cookie');
var debug = require('debug')('analytics:entity');
var defaults = require('@ndhoule/defaults');
var memory = require('./memory');
var store = require('./store');
var isodateTraverse = require('@segment/isodate-traverse');
/**
* Expose `Entity`
*/
module.exports = Entity;
/**
* Initialize new `Entity` with `options`.
*/
function Entity(options: InitOptions) {
this.options(options);
this.initialize();
}
/**
* Initialize picks the storage.
*
* Checks to see if cookies can be set
* otherwise fallsback to localStorage.
*/
Entity.prototype.initialize = function() {
cookie.set('ajs:cookies', true);
// cookies are enabled.
if (cookie.get('ajs:cookies')) {
cookie.remove('ajs:cookies');
this._storage = cookie;
return;
}
// localStorage is enabled.
if (store.enabled) {
this._storage = store;
return;
}
// fallback to memory storage.
debug(
'warning using memory store both cookies and localStorage are disabled'
);
this._storage = memory;
};
/**
* Get the storage.
*/
Entity.prototype.storage = function() {
return this._storage;
};
/**
* Get or set storage `options`.
*/
Entity.prototype.options = function(options?: InitOptions) {
if (arguments.length === 0) return this._options;
this._options = defaults(options || {}, this.defaults || {});
};
/**
* Get or set the entity's `id`.
*/
Entity.prototype.id = function(id?: string): string | undefined {
switch (arguments.length) {
case 0:
return this._getId();
case 1:
return this._setId(id);
default:
// No default case
}
};
/**
* Get the entity's id.
*/
Entity.prototype._getId = function(): string | null {
if (!this._options.persist) {
return this._id === undefined ? null : this._id;
}
// Check cookies.
var cookieId = this._getIdFromCookie();
if (cookieId) {
return cookieId;
}
// Check localStorage.
var lsId = this._getIdFromLocalStorage();
if (lsId) {
// Copy the id to cookies so we can read it directly from cookies next time.
this._setIdInCookies(lsId);
return lsId;
}
return null;
};
/**
* Get the entity's id from cookies.
*/
// FIXME `options.cookie` is an optional field, so `this._options.cookie.key`
// can thrown an exception.
Entity.prototype._getIdFromCookie = function(): string {
return this.storage().get(this._options.cookie.key);
};
/**
* Get the entity's id from cookies.
*/
Entity.prototype._getIdFromLocalStorage = function(): string | null {
if (!this._options.localStorageFallbackDisabled) {
return store.get(this._options.cookie.key);
}
return null;
};
/**
* Set the entity's `id`.
*/
Entity.prototype._setId = function(id: string) {
if (this._options.persist) {
this._setIdInCookies(id);
this._setIdInLocalStorage(id);
} else {
this._id = id;
}
};
/**
* Set the entity's `id` in cookies.
*/
Entity.prototype._setIdInCookies = function(id: string) {
this.storage().set(this._options.cookie.key, id);
};
/**
* Set the entity's `id` in local storage.
*/
Entity.prototype._setIdInLocalStorage = function(id: string) {
if (!this._options.localStorageFallbackDisabled) {
store.set(this._options.cookie.key, id);
}
};
/**
* Get or set the entity's `traits`.
*
* BACKWARDS COMPATIBILITY: aliased to `properties`
*/
Entity.prototype.properties = Entity.prototype.traits = function(
traits?: object
): object | undefined {
switch (arguments.length) {
case 0:
return this._getTraits();
case 1:
return this._setTraits(traits);
default:
// No default case
}
};
/**
* Get the entity's traits. Always convert ISO date strings into real dates,
* since they aren't parsed back from local storage.
*/
Entity.prototype._getTraits = function(): object {
var ret = this._options.persist
? store.get(this._options.localStorage.key)
: this._traits;
return ret ? isodateTraverse(cloneDeep(ret)) : {};
};
/**
* Set the entity's `traits`.
*/
Entity.prototype._setTraits = function(traits: object) {
traits = traits || {};
if (this._options.persist) {
store.set(this._options.localStorage.key, traits);
} else {
this._traits = traits;
}
};
/**
* Identify the entity with an `id` and `traits`. If we it's the same entity,
* extend the existing `traits` instead of overwriting.
*/
Entity.prototype.identify = function(id?: string, traits?: object) {
traits = traits || {};
const current = this.id();
if (current === null || current === id) {
traits = assignIn(this.traits(), traits);
}
if (id) {
this.id(id);
}
this.debug('identify %o, %o', id, traits);
this.traits(traits);
this.save();
};
/**
* Save the entity to local storage and the cookie.
*/
Entity.prototype.save = function(): boolean {
if (!this._options.persist) return false;
this._setId(this.id());
this._setTraits(this.traits());
return true;
};
/**
* Log the entity out, reseting `id` and `traits` to defaults.
*/
Entity.prototype.logout = function() {
this.id(null);
this.traits({});
this.storage().remove(this._options.cookie.key);
store.remove(this._options.cookie.key);
store.remove(this._options.localStorage.key);
};
/**
* Reset all entity state, logging out and returning options to defaults.
*/
Entity.prototype.reset = function() {
this.logout();
this.options({});
};
/**
* Load saved entity `id` or `traits` from storage.
*/
Entity.prototype.load = function() {
this.id(this.id());
this.traits(this.traits());
};