dexie-cloud-addon 4.0.1-beta.53 → 4.0.1-beta.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,7 @@
8
8
  *
9
9
  * ==========================================================================
10
10
  *
11
- * Version 4.0.1-beta.53, Sat Dec 02 2023
11
+ * Version 4.0.1-beta.55, Tue Jan 02 2024
12
12
  *
13
13
  * https://dexie.org
14
14
  *
@@ -2333,7 +2333,28 @@ function alertUser(userInteraction, title, ...alerts) {
2333
2333
  function promptForEmail(userInteraction, title, emailHint) {
2334
2334
  return __awaiter(this, void 0, void 0, function* () {
2335
2335
  let email = emailHint || '';
2336
- while (!email || !/^[\w-\.]+@([\w-]+\.)+[\w-]{2,10}$/.test(email)) {
2336
+ // Regular expression for email validation
2337
+ // ^[\w-+.]+@([\w-]+\.)+[\w-]{2,10}(\sas\s[\w-+.]+@([\w-]+\.)+[\w-]{2,10})?$
2338
+ //
2339
+ // ^[\w-+.]+ : Matches the start of the string. Allows one or more word characters
2340
+ // (a-z, A-Z, 0-9, and underscore), hyphen, plus, or dot.
2341
+ //
2342
+ // @ : Matches the @ symbol.
2343
+ // ([\w-]+\.)+ : Matches one or more word characters or hyphens followed by a dot.
2344
+ // The plus sign outside the parentheses means this pattern can repeat one or more times,
2345
+ // allowing for subdomains.
2346
+ // [\w-]{2,10} : Matches between 2 and 10 word characters or hyphens. This is typically for
2347
+ // the domain extension like .com, .net, etc.
2348
+ // (\sas\s[\w-+.]+@([\w-]+\.)+[\w-]{2,10})?$ : This part is optional (due to the ? at the end).
2349
+ // If present, it matches " as " followed by another valid email address. This allows for the
2350
+ // input to be either a single email address or two email addresses separated by " as ".
2351
+ //
2352
+ // The use case for "<email1> as <email2>"" is for when a database owner with full access to the
2353
+ // database needs to impersonate another user in the database in order to troubleshoot. This
2354
+ // format will only be possible to use when email1 is the owner of an API client with GLOBAL_READ
2355
+ // and GLOBAL_WRITE permissions on the database. The email will be checked on the server before
2356
+ // allowing it and giving out a token for email2, using the OTP sent to email1.
2357
+ while (!email || !/^[\w-+.]+@([\w-]+\.)+[\w-]{2,10}(\sas\s[\w-+.]+@([\w-]+\.)+[\w-]{2,10})?$/.test(email)) {
2337
2358
  email = (yield interactWithUser(userInteraction, {
2338
2359
  type: 'email',
2339
2360
  title,
@@ -4637,6 +4658,21 @@ function createImplicitPropSetterMiddleware(db) {
4637
4658
  const trans = req.trans;
4638
4659
  if ((_b = (_a = db.cloud.schema) === null || _a === void 0 ? void 0 : _a[tableName]) === null || _b === void 0 ? void 0 : _b.markedForSync) {
4639
4660
  if (req.type === 'add' || req.type === 'put') {
4661
+ if (tableName === 'members') {
4662
+ for (const member of req.values) {
4663
+ if (typeof member.email === 'string') {
4664
+ // Resolve https://github.com/dexie/dexie-cloud/issues/4
4665
+ // If adding a member, make sure email is lowercase and trimmed.
4666
+ // This is to avoid issues where the APP does not check this
4667
+ // and just allows the user to enter an email address that might
4668
+ // have been pasted by the user from a source that had a trailing
4669
+ // space or was in uppercase. We want to avoid that the user
4670
+ // creates a new member with a different email address than
4671
+ // the one he/she intended to create.
4672
+ member.email = member.email.trim().toLowerCase();
4673
+ }
4674
+ }
4675
+ }
4640
4676
  // No matter if user is logged in or not, make sure "owner" and "realmId" props are set properly.
4641
4677
  // If not logged in, this will be changed upon syncification of the tables (next sync after login),
4642
4678
  // however, application code will work better if we can always rely on that the properties realmId
@@ -6210,7 +6246,7 @@ function dexieCloud(dexie) {
6210
6246
  const syncComplete = new Subject();
6211
6247
  dexie.cloud = {
6212
6248
  // @ts-ignore
6213
- version: "4.0.1-beta.53",
6249
+ version: "4.0.1-beta.55",
6214
6250
  options: Object.assign({}, DEFAULT_OPTIONS),
6215
6251
  schema: null,
6216
6252
  get currentUserId() {
@@ -6487,7 +6523,7 @@ function dexieCloud(dexie) {
6487
6523
  }
6488
6524
  }
6489
6525
  // @ts-ignore
6490
- dexieCloud.version = "4.0.1-beta.53";
6526
+ dexieCloud.version = "4.0.1-beta.55";
6491
6527
  Dexie.Cloud = dexieCloud;
6492
6528
 
6493
6529
  // In case the SW lives for a while, let it reuse already opened connections: