@unwanted/matrix-sdk-mini 34.13.0 → 36.0.0

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.
Files changed (95) hide show
  1. package/lib/@types/event.d.ts +25 -0
  2. package/lib/@types/event.d.ts.map +1 -1
  3. package/lib/@types/event.js +5 -0
  4. package/lib/@types/event.js.map +1 -1
  5. package/lib/client.d.ts +43 -8
  6. package/lib/client.d.ts.map +1 -1
  7. package/lib/client.js +147 -85
  8. package/lib/client.js.map +1 -1
  9. package/lib/embedded.d.ts +2 -1
  10. package/lib/embedded.d.ts.map +1 -1
  11. package/lib/embedded.js +57 -74
  12. package/lib/embedded.js.map +1 -1
  13. package/lib/feature.d.ts.map +1 -1
  14. package/lib/feature.js +2 -1
  15. package/lib/feature.js.map +1 -1
  16. package/lib/http-api/errors.d.ts +3 -3
  17. package/lib/http-api/errors.js +3 -3
  18. package/lib/http-api/errors.js.map +1 -1
  19. package/lib/http-api/utils.js +2 -2
  20. package/lib/http-api/utils.js.map +1 -1
  21. package/lib/models/event-timeline.d.ts.map +1 -1
  22. package/lib/models/event-timeline.js +1 -21
  23. package/lib/models/event-timeline.js.map +1 -1
  24. package/lib/models/event.d.ts +11 -1
  25. package/lib/models/event.d.ts.map +1 -1
  26. package/lib/models/event.js +48 -5
  27. package/lib/models/event.js.map +1 -1
  28. package/lib/models/invites-ignorer-types.d.ts +27 -0
  29. package/lib/models/invites-ignorer-types.d.ts.map +1 -0
  30. package/lib/models/invites-ignorer-types.js +36 -0
  31. package/lib/models/invites-ignorer-types.js.map +1 -0
  32. package/lib/models/invites-ignorer.d.ts +2 -26
  33. package/lib/models/invites-ignorer.d.ts.map +1 -1
  34. package/lib/models/invites-ignorer.js +2 -27
  35. package/lib/models/invites-ignorer.js.map +1 -1
  36. package/lib/models/room-member.d.ts +6 -1
  37. package/lib/models/room-member.d.ts.map +1 -1
  38. package/lib/models/room-member.js +7 -1
  39. package/lib/models/room-member.js.map +1 -1
  40. package/lib/models/room.d.ts +6 -1
  41. package/lib/models/room.d.ts.map +1 -1
  42. package/lib/models/room.js +7 -1
  43. package/lib/models/room.js.map +1 -1
  44. package/lib/oidc/authorize.d.ts +2 -2
  45. package/lib/oidc/authorize.d.ts.map +1 -1
  46. package/lib/oidc/authorize.js +5 -5
  47. package/lib/oidc/authorize.js.map +1 -1
  48. package/lib/oidc/discovery.d.ts +8 -0
  49. package/lib/oidc/discovery.d.ts.map +1 -1
  50. package/lib/oidc/discovery.js +22 -11
  51. package/lib/oidc/discovery.js.map +1 -1
  52. package/lib/oidc/index.d.ts +3 -4
  53. package/lib/oidc/index.d.ts.map +1 -1
  54. package/lib/oidc/index.js.map +1 -1
  55. package/lib/oidc/register.js +3 -3
  56. package/lib/oidc/register.js.map +1 -1
  57. package/lib/oidc/tokenRefresher.d.ts.map +1 -1
  58. package/lib/oidc/tokenRefresher.js +6 -5
  59. package/lib/oidc/tokenRefresher.js.map +1 -1
  60. package/lib/oidc/validate.d.ts +9 -23
  61. package/lib/oidc/validate.d.ts.map +1 -1
  62. package/lib/oidc/validate.js +13 -28
  63. package/lib/oidc/validate.js.map +1 -1
  64. package/lib/randomstring.d.ts +30 -3
  65. package/lib/randomstring.d.ts.map +1 -1
  66. package/lib/randomstring.js +68 -16
  67. package/lib/randomstring.js.map +1 -1
  68. package/lib/store/indexeddb-local-backend.js +4 -2
  69. package/lib/store/indexeddb-local-backend.js.map +1 -1
  70. package/lib/testing.d.ts +17 -0
  71. package/lib/testing.d.ts.map +1 -1
  72. package/lib/testing.js +42 -0
  73. package/lib/testing.js.map +1 -1
  74. package/package.json +5 -5
  75. package/src/@types/event.ts +17 -0
  76. package/src/client.ts +86 -28
  77. package/src/embedded.ts +39 -49
  78. package/src/feature.ts +1 -0
  79. package/src/http-api/errors.ts +3 -3
  80. package/src/http-api/utils.ts +2 -2
  81. package/src/models/event-timeline.ts +1 -21
  82. package/src/models/event.ts +46 -0
  83. package/src/models/invites-ignorer-types.ts +48 -0
  84. package/src/models/invites-ignorer.ts +7 -42
  85. package/src/models/room-member.ts +16 -1
  86. package/src/models/room.ts +16 -1
  87. package/src/oidc/authorize.ts +7 -7
  88. package/src/oidc/discovery.ts +16 -10
  89. package/src/oidc/index.ts +3 -4
  90. package/src/oidc/register.ts +3 -3
  91. package/src/oidc/tokenRefresher.ts +3 -2
  92. package/src/oidc/validate.ts +40 -63
  93. package/src/randomstring.ts +65 -19
  94. package/src/store/indexeddb-local-backend.ts +2 -2
  95. package/src/testing.ts +41 -0
@@ -17,9 +17,23 @@ limitations under the License.
17
17
 
18
18
  import { encodeUnpaddedBase64Url } from "./base64.ts";
19
19
 
20
- const LOWERCASE = "abcdefghijklmnopqrstuvwxyz";
21
- const UPPERCASE = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
22
- const DIGITS = "0123456789";
20
+ /**
21
+ * String representing the lowercase latin alphabet for use in {@link secureRandomStringFrom}
22
+ * (can be combined with other such exports or other characters by appending strings)
23
+ */
24
+ export const LOWERCASE = "abcdefghijklmnopqrstuvwxyz";
25
+
26
+ /**
27
+ * String representing the uppercase latin alphabet for use in secureRandomStringFrom
28
+ * (can be combined with other such exports or other characters by appending strings)
29
+ */
30
+ export const UPPERCASE = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
31
+
32
+ /**
33
+ * String representing the arabic numerals for use in secureRandomStringFrom
34
+ * (can be combined with other such exports or other characters by appending strings)
35
+ */
36
+ export const DIGITS = "0123456789";
23
37
 
24
38
  export function secureRandomBase64Url(len: number): string {
25
39
  const key = new Uint8Array(len);
@@ -28,24 +42,56 @@ export function secureRandomBase64Url(len: number): string {
28
42
  return encodeUnpaddedBase64Url(key);
29
43
  }
30
44
 
31
- export function randomString(len: number): string {
32
- return randomStringFrom(len, UPPERCASE + LOWERCASE + DIGITS);
45
+ /**
46
+ * Generates a random string of uppercase and lowercase letters plus digits using a
47
+ * cryptographically secure random number generator.
48
+ * @param len The length of the string to generate
49
+ * @returns Random string of uppercase and lowercase letters plus digits of length `len`
50
+ */
51
+ export function secureRandomString(len: number): string {
52
+ return secureRandomStringFrom(len, UPPERCASE + LOWERCASE + DIGITS);
33
53
  }
34
54
 
35
- export function randomLowercaseString(len: number): string {
36
- return randomStringFrom(len, LOWERCASE);
37
- }
38
-
39
- export function randomUppercaseString(len: number): string {
40
- return randomStringFrom(len, UPPERCASE);
41
- }
42
-
43
- function randomStringFrom(len: number, chars: string): string {
44
- let ret = "";
45
-
46
- for (let i = 0; i < len; ++i) {
47
- ret += chars.charAt(Math.floor(Math.random() * chars.length));
55
+ /**
56
+ * Generate a cryptographically secure random string using characters given.
57
+ *
58
+ * @param len - The length of the string to generate (must be positive and less than 32768).
59
+ * @param chars - The characters to use in the random string (between 2 and 256 characters long).
60
+ * @returns Random string of characters of length `len`.
61
+ */
62
+ export function secureRandomStringFrom(len: number, chars: string): string {
63
+ // This is intended for latin strings so 256 possibilities should be more than enough and
64
+ // means we can use random bytes, minimising the amount of entropy we need to ask for.
65
+ if (chars.length < 2 || chars.length > 256) {
66
+ throw new Error("Character set must be between 2 and 256 characters long");
67
+ }
68
+ if (len < 1 || len > 32768) {
69
+ throw new Error("Requested random string length must be between 1 and 32768");
70
+ }
71
+ // We'll generate random unsigned bytes, so get the largest number less than 256 that is a multiple
72
+ // of the length of the character set: We'll need to discard any random values that are larger than
73
+ // this as we can't possibly map them onto the character set while keeping each character equally
74
+ // likely to be chosen (minus 1 to convert to indices in a string). (Essentially, we're using a d8
75
+ // to choose between 7 possibilities and re-rolling on an 8, keeping all 7 outcomes equally likely.)
76
+ // Our random values must be strictly less than this
77
+ const randomValueCutoff = 256 - (256 % chars.length);
78
+ // Grab 30% more entropy than we need. This should be enough that we can discard the values that are
79
+ // too high without having to go back and grab more unless we're super unlucky.
80
+ const entropyBuffer = new Uint8Array(Math.floor(len * 1.3));
81
+ // Mark all of this buffer as used to start with (we haven't populated it with entropy yet) so it will
82
+ // be filled on the first iteration.
83
+ let entropyBufferPos = entropyBuffer.length;
84
+ const result = [];
85
+ while (result.length < len) {
86
+ if (entropyBufferPos === entropyBuffer.length) {
87
+ globalThis.crypto.getRandomValues(entropyBuffer);
88
+ entropyBufferPos = 0;
89
+ }
90
+ const randomByte = entropyBuffer[entropyBufferPos++];
91
+ if (randomByte < randomValueCutoff) {
92
+ result.push(chars[randomByte % chars.length]);
93
+ }
48
94
  }
49
95
 
50
- return ret;
96
+ return result.join("");
51
97
  }
@@ -71,7 +71,7 @@ function selectQuery<T>(
71
71
  return new Promise((resolve, reject) => {
72
72
  const results: T[] = [];
73
73
  query.onerror = (): void => {
74
- reject(new Error("Query failed: " + query.error));
74
+ reject(new Error("Query failed: " + query.error?.name));
75
75
  };
76
76
  // collect results
77
77
  query.onsuccess = (): void => {
@@ -360,7 +360,7 @@ export class LocalIndexedDBStoreBackend implements IIndexedDBBackend {
360
360
  // in firefox, with indexedDB disabled, this fails with a
361
361
  // DOMError. We treat this as non-fatal, so that we can still
362
362
  // use the app.
363
- logger.warn(`unable to delete js-sdk store indexeddb: ${req.error}`);
363
+ logger.warn(`unable to delete js-sdk store indexeddb: ${req.error?.name}`);
364
364
  resolve();
365
365
  };
366
366
 
package/src/testing.ts CHANGED
@@ -25,6 +25,7 @@ limitations under the License.
25
25
  import { IContent, IEvent, IUnsigned, MatrixEvent } from "./models/event.ts";
26
26
  import { RoomMember } from "./models/room-member.ts";
27
27
  import { EventType } from "./@types/event.ts";
28
+ import { OidcClientConfig, ValidatedAuthMetadata } from "./oidc/index.ts";
28
29
 
29
30
  /**
30
31
  * Create a {@link MatrixEvent}.
@@ -81,3 +82,43 @@ export function mkMatrixEvent(opts: {
81
82
  } as unknown as RoomMember;
82
83
  return mxEvent;
83
84
  }
85
+
86
+ /**
87
+ * Makes a valid OidcClientConfig with minimum valid values
88
+ * @param issuer used as the base for all other urls
89
+ * @param additionalGrantTypes to add to the default grant types
90
+ * @returns OidcClientConfig
91
+ * @experimental
92
+ */
93
+ export const makeDelegatedAuthConfig = (
94
+ issuer = "https://auth.org/",
95
+ additionalGrantTypes: string[] = [],
96
+ ): OidcClientConfig => {
97
+ const metadata = mockOpenIdConfiguration(issuer, additionalGrantTypes);
98
+ return {
99
+ ...metadata,
100
+ signingKeys: null,
101
+ };
102
+ };
103
+ /**
104
+ * Useful for mocking <issuer>/.well-known/openid-configuration
105
+ * @param issuer used as the base for all other urls
106
+ * @param additionalGrantTypes to add to the default grant types
107
+ * @returns ValidatedAuthMetadata
108
+ * @experimental
109
+ */
110
+ export const mockOpenIdConfiguration = (
111
+ issuer = "https://auth.org/",
112
+ additionalGrantTypes: string[] = [],
113
+ ): ValidatedAuthMetadata => ({
114
+ issuer,
115
+ revocation_endpoint: issuer + "revoke",
116
+ token_endpoint: issuer + "token",
117
+ authorization_endpoint: issuer + "auth",
118
+ registration_endpoint: issuer + "registration",
119
+ device_authorization_endpoint: issuer + "device",
120
+ jwks_uri: issuer + "jwks",
121
+ response_types_supported: ["code"],
122
+ grant_types_supported: ["authorization_code", "refresh_token", ...additionalGrantTypes],
123
+ code_challenge_methods_supported: ["S256"],
124
+ });