@jetbrains/ring-ui 4.1.1 → 4.1.2

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 (314) hide show
  1. package/dist/_helpers/_rollupPluginBabelHelpers.js +34 -0
  2. package/dist/_helpers/anchor.js +32 -0
  3. package/dist/_helpers/badge.js +3 -0
  4. package/dist/_helpers/button-group.js +3 -0
  5. package/dist/_helpers/button-set.js +3 -0
  6. package/dist/_helpers/button-toolbar.js +3 -0
  7. package/dist/_helpers/button__classes.js +39 -0
  8. package/dist/_helpers/card.js +75 -0
  9. package/dist/_helpers/checkbox.js +3 -0
  10. package/dist/_helpers/date-picker.js +3 -0
  11. package/dist/_helpers/dialog__body-scroll-preventer.js +57 -0
  12. package/dist/_helpers/error-message.js +3 -0
  13. package/dist/_helpers/footer.js +121 -0
  14. package/dist/_helpers/grid.js +3 -0
  15. package/dist/_helpers/group.js +3 -0
  16. package/dist/_helpers/header.js +3 -0
  17. package/dist/_helpers/icon.js +3 -0
  18. package/dist/_helpers/inject-styles.js +22 -0
  19. package/dist/_helpers/input.js +3 -0
  20. package/dist/_helpers/island.js +3 -0
  21. package/dist/_helpers/link.js +3 -0
  22. package/dist/_helpers/list.js +3 -0
  23. package/dist/_helpers/loader-screen.js +3 -0
  24. package/dist/_helpers/panel.js +3 -0
  25. package/dist/_helpers/query-assist__suggestions.js +95 -0
  26. package/dist/_helpers/radio.js +3 -0
  27. package/dist/_helpers/select__filter.js +76 -0
  28. package/dist/_helpers/services-link.js +40 -0
  29. package/dist/_helpers/sidebar.js +125 -0
  30. package/dist/_helpers/table.js +3 -0
  31. package/dist/_helpers/tabs.js +3 -0
  32. package/dist/_helpers/title.js +99 -0
  33. package/dist/alert/alert.js +260 -0
  34. package/dist/alert/container.js +48 -0
  35. package/dist/alert-service/alert-service.js +170 -0
  36. package/dist/analytics/analytics.js +116 -0
  37. package/dist/analytics/analytics__custom-plugin.js +127 -0
  38. package/dist/analytics/analytics__fus-plugin.js +101 -0
  39. package/dist/analytics/analytics__ga-plugin.js +66 -0
  40. package/dist/analytics/analytics__plugin-utils.js +79 -0
  41. package/dist/analytics-ng/analytics-ng.js +94 -0
  42. package/dist/auth/auth.js +93 -0
  43. package/dist/auth/auth__core.js +1025 -0
  44. package/dist/auth/background-flow.js +122 -0
  45. package/dist/auth/down-notification.js +114 -0
  46. package/dist/auth/iframe-flow.js +150 -0
  47. package/dist/auth/landing-entry.js +5 -0
  48. package/dist/auth/landing.js +87 -0
  49. package/dist/auth/request-builder.js +75 -0
  50. package/dist/auth/response-parser.js +117 -0
  51. package/dist/auth/storage.js +280 -0
  52. package/dist/auth/token-validator.js +176 -0
  53. package/dist/auth/window-flow.js +133 -0
  54. package/dist/auth-dialog/auth-dialog.js +134 -0
  55. package/dist/auth-dialog-service/auth-dialog-service.js +68 -0
  56. package/dist/auth-ng/auth-ng.js +203 -0
  57. package/dist/auth-ng/auth-ng.mock.js +33 -0
  58. package/dist/autofocus-ng/autofocus-ng.js +50 -0
  59. package/dist/avatar/avatar-example-datauri.js +26 -0
  60. package/dist/avatar/avatar.js +161 -0
  61. package/dist/avatar/fallback-avatar.js +141 -0
  62. package/dist/avatar-editor-ng/avatar-editor-ng.js +164 -0
  63. package/dist/avatar-editor-ng/avatar-editor-ng__template.js +30 -0
  64. package/dist/avatar-ng/avatar-ng.js +18 -0
  65. package/dist/badge/badge.js +50 -0
  66. package/dist/badge-ng/badge-ng.js +16 -0
  67. package/dist/breadcrumb-ng/breadcrumb-ng.js +61 -0
  68. package/dist/button/button.js +123 -0
  69. package/dist/button/button__classes.js +5 -0
  70. package/dist/button-group/button-group.js +30 -0
  71. package/dist/button-group/caption.js +24 -0
  72. package/dist/button-group-ng/button-group-ng.js +38 -0
  73. package/dist/button-ng/button-ng.js +223 -0
  74. package/dist/button-set/button-set.js +26 -0
  75. package/dist/button-set-ng/button-set-ng.js +19 -0
  76. package/dist/button-toolbar/button-toolbar.js +29 -0
  77. package/dist/button-toolbar-ng/button-toolbar-ng.js +23 -0
  78. package/dist/caret/caret.js +264 -0
  79. package/dist/checkbox/checkbox.js +108 -0
  80. package/dist/checkbox-ng/checkbox-ng.js +55 -0
  81. package/dist/code/code.js +136 -0
  82. package/dist/compiler-ng/compiler-ng.js +53 -0
  83. package/dist/confirm/confirm.js +125 -0
  84. package/dist/confirm-ng/confirm-ng.js +66 -0
  85. package/dist/confirm-service/confirm-service.js +114 -0
  86. package/dist/content-layout/content-layout.js +65 -0
  87. package/dist/content-layout/sidebar.js +6 -0
  88. package/dist/contenteditable/contenteditable.js +78 -0
  89. package/dist/data-list/data-list.js +206 -0
  90. package/dist/data-list/data-list.mock.js +190 -0
  91. package/dist/data-list/item.js +227 -0
  92. package/dist/data-list/selection.js +101 -0
  93. package/dist/data-list/title.js +18 -0
  94. package/dist/data-list-ng/data-list-ng.js +59 -0
  95. package/dist/date-picker/consts.js +69 -0
  96. package/dist/date-picker/date-input.js +173 -0
  97. package/dist/date-picker/date-picker.js +365 -0
  98. package/dist/date-picker/date-popup.js +482 -0
  99. package/dist/date-picker/day.js +119 -0
  100. package/dist/date-picker/formats.js +3 -0
  101. package/dist/date-picker/month-names.js +99 -0
  102. package/dist/date-picker/month-slider.js +83 -0
  103. package/dist/date-picker/month.js +54 -0
  104. package/dist/date-picker/months.js +121 -0
  105. package/dist/date-picker/weekdays.js +32 -0
  106. package/dist/date-picker/years.js +109 -0
  107. package/dist/dialog/dialog.js +200 -0
  108. package/dist/dialog/dialog__body-scroll-preventer.js +2 -0
  109. package/dist/dialog-ng/dialog-ng.js +601 -0
  110. package/dist/dialog-ng/dialog-ng__template.js +71 -0
  111. package/dist/docked-panel-ng/docked-panel-ng.js +170 -0
  112. package/dist/dropdown/anchor.js +17 -0
  113. package/dist/dropdown/dropdown.js +234 -0
  114. package/dist/dropdown-menu/dropdown-menu.js +175 -0
  115. package/dist/error-bubble/error-bubble.js +57 -0
  116. package/dist/error-message/error-message.js +55 -0
  117. package/dist/error-message-ng/error-message-ng.js +53 -0
  118. package/dist/footer/footer.js +11 -0
  119. package/dist/footer-ng/footer-ng.js +75 -0
  120. package/dist/form-ng/form-ng.js +169 -0
  121. package/dist/global/angular-component-factory.js +82 -0
  122. package/dist/global/compose.js +9 -0
  123. package/dist/global/composeRefs.js +15 -0
  124. package/dist/global/conic-gradient.js +35 -0
  125. package/dist/global/create-stateful-context.js +54 -0
  126. package/dist/global/data-tests.js +22 -0
  127. package/dist/global/dom.js +124 -0
  128. package/dist/global/focus-sensor-hoc.js +145 -0
  129. package/dist/global/fuzzy-highlight.js +67 -0
  130. package/dist/global/get-event-key.js +111 -0
  131. package/dist/global/get-uid.js +15 -0
  132. package/dist/global/inject-styles.js +17 -0
  133. package/dist/global/linear-function.js +17 -0
  134. package/dist/global/listeners.js +42 -0
  135. package/dist/global/memoize.js +18 -0
  136. package/dist/global/normalize-indent.js +28 -0
  137. package/dist/global/promise-with-timeout.js +13 -0
  138. package/dist/global/radial-gradient-mask.js +49 -0
  139. package/dist/global/react-dom-renderer.js +45 -0
  140. package/dist/global/rerender-hoc.js +51 -0
  141. package/dist/global/ring-angular-component.js +24 -0
  142. package/dist/global/schedule-raf.js +31 -0
  143. package/dist/global/sniffer.js +6 -0
  144. package/dist/global/supports-css.js +20 -0
  145. package/dist/global/theme.js +54 -0
  146. package/dist/global/trivial-template-tag.js +15 -0
  147. package/dist/global/url.js +163 -0
  148. package/dist/global/variables_dark.js +57 -0
  149. package/dist/grid/col.js +60 -0
  150. package/dist/grid/grid.js +33 -0
  151. package/dist/grid/row.js +64 -0
  152. package/dist/group/group.js +31 -0
  153. package/dist/group-ng/group-ng.js +11 -0
  154. package/dist/header/header.js +147 -0
  155. package/dist/header/logo.js +38 -0
  156. package/dist/header/profile.js +217 -0
  157. package/dist/header/services-link.js +11 -0
  158. package/dist/header/services.js +136 -0
  159. package/dist/header/smart-profile.js +230 -0
  160. package/dist/header/smart-services.js +160 -0
  161. package/dist/header/tray-icon.js +45 -0
  162. package/dist/header/tray.js +31 -0
  163. package/dist/heading/heading.js +73 -0
  164. package/dist/http/http.js +216 -0
  165. package/dist/http/http.mock.js +65 -0
  166. package/dist/hub-source/hub-source.js +130 -0
  167. package/dist/hub-source/hub-source__user.js +28 -0
  168. package/dist/hub-source/hub-source__users-groups.js +62 -0
  169. package/dist/icon/icon.js +105 -0
  170. package/dist/icon/icon__constants.js +33 -0
  171. package/dist/icon/icon__svg.js +81 -0
  172. package/dist/icon/index.js +10 -0
  173. package/dist/icon-ng/icon-ng.js +89 -0
  174. package/dist/input/input.js +228 -0
  175. package/dist/input-ng/input-ng.js +166 -0
  176. package/dist/island/adaptive-island-hoc.js +47 -0
  177. package/dist/island/content.js +156 -0
  178. package/dist/island/header.js +83 -0
  179. package/dist/island/island.js +50 -0
  180. package/dist/island-legacy/content-legacy.js +26 -0
  181. package/dist/island-legacy/header-legacy.js +28 -0
  182. package/dist/island-legacy/island-legacy.js +28 -0
  183. package/dist/island-ng/island-content-ng.js +56 -0
  184. package/dist/island-ng/island-header-ng.js +32 -0
  185. package/dist/island-ng/island-ng-class-fixer.js +9 -0
  186. package/dist/island-ng/island-ng.js +31 -0
  187. package/dist/link/clickableLink.js +63 -0
  188. package/dist/link/link.js +114 -0
  189. package/dist/link-ng/link-ng.js +25 -0
  190. package/dist/list/consts.js +26 -0
  191. package/dist/list/list.js +812 -0
  192. package/dist/list/list__custom.js +85 -0
  193. package/dist/list/list__hint.js +26 -0
  194. package/dist/list/list__item.js +204 -0
  195. package/dist/list/list__link.js +64 -0
  196. package/dist/list/list__separator.js +30 -0
  197. package/dist/list/list__title.js +39 -0
  198. package/dist/list/list__users-groups-source.js +128 -0
  199. package/dist/loader/loader.js +70 -0
  200. package/dist/loader/loader__core.js +272 -0
  201. package/dist/loader-inline/inject-styles.js +11 -0
  202. package/dist/loader-inline/loader-inline.js +56 -0
  203. package/dist/loader-inline-ng/loader-inline-ng.js +42 -0
  204. package/dist/loader-ng/loader-ng.js +43 -0
  205. package/dist/loader-screen/loader-screen.js +43 -0
  206. package/dist/loader-screen-ng/loader-screen-ng.js +99 -0
  207. package/dist/login-dialog/login-dialog.js +186 -0
  208. package/dist/login-dialog/service.js +69 -0
  209. package/dist/markdown/code.js +30 -0
  210. package/dist/markdown/heading.js +23 -0
  211. package/dist/markdown/link.js +30 -0
  212. package/dist/markdown/markdown.js +73 -0
  213. package/dist/message/message.js +233 -0
  214. package/dist/message-bundle-ng/message-bundle-ng.js +111 -0
  215. package/dist/old-browsers-message/old-browsers-message.js +100 -0
  216. package/dist/old-browsers-message/old-browsers-message__stop.js +4 -0
  217. package/dist/old-browsers-message/white-list.js +33 -0
  218. package/dist/pager/pager.js +361 -0
  219. package/dist/pager-ng/pager-ng.js +96 -0
  220. package/dist/panel/panel.js +31 -0
  221. package/dist/panel-ng/panel-ng.js +16 -0
  222. package/dist/permissions/permissions.js +200 -0
  223. package/dist/permissions/permissions__cache.js +272 -0
  224. package/dist/permissions-ng/permissions-ng.js +274 -0
  225. package/dist/place-under-ng/place-under-ng.js +157 -0
  226. package/dist/popup/popup.consts.js +41 -0
  227. package/dist/popup/popup.js +389 -0
  228. package/dist/popup/popup.target.js +26 -0
  229. package/dist/popup/position.js +279 -0
  230. package/dist/popup-menu/popup-menu.js +115 -0
  231. package/dist/progress-bar/progress-bar.js +113 -0
  232. package/dist/progress-bar-ng/progress-bar-ng.js +15 -0
  233. package/dist/promised-click-ng/promised-click-ng.js +126 -0
  234. package/dist/proxy-attrs/proxy-attrs.js +19 -0
  235. package/dist/query-assist/query-assist.js +1092 -0
  236. package/dist/query-assist/query-assist__suggestions.js +47 -0
  237. package/dist/query-assist-ng/query-assist-ng.js +82 -0
  238. package/dist/radio/radio.js +41 -0
  239. package/dist/radio/radio__item.js +77 -0
  240. package/dist/radio-ng/radio-ng.js +63 -0
  241. package/dist/save-field-ng/save-field-ng.js +335 -0
  242. package/dist/save-field-ng/save-field-ng__template.js +34 -0
  243. package/dist/select/select.js +1336 -0
  244. package/dist/select/select__filter.js +54 -0
  245. package/dist/select/select__popup.js +546 -0
  246. package/dist/select-ng/select-ng.js +621 -0
  247. package/dist/select-ng/select-ng__lazy.js +150 -0
  248. package/dist/select-ng/select-ng__options.js +145 -0
  249. package/dist/shortcuts/core.js +245 -0
  250. package/dist/shortcuts/shortcut-title.js +51 -0
  251. package/dist/shortcuts/shortcuts-hoc.js +41 -0
  252. package/dist/shortcuts/shortcuts.js +72 -0
  253. package/dist/shortcuts-hint-ng/shortcuts-hint-ng.js +120 -0
  254. package/dist/shortcuts-hint-ng/shortcuts-hint-ng__template.js +50 -0
  255. package/dist/shortcuts-ng/shortcuts-ng.js +261 -0
  256. package/dist/sidebar-ng/sidebar-ng.js +111 -0
  257. package/dist/sidebar-ng/sidebar-ng__button-template.js +20 -0
  258. package/dist/sidebar-ng/sidebar-ng__template.js +12 -0
  259. package/dist/storage/storage.js +56 -0
  260. package/dist/storage/storage__fallback.js +214 -0
  261. package/dist/storage/storage__local.js +151 -0
  262. package/dist/style.css +1 -0
  263. package/dist/tab-trap/tab-trap.js +176 -0
  264. package/dist/table/cell.js +25 -0
  265. package/dist/table/disable-hover-hoc.js +53 -0
  266. package/dist/table/header-cell.js +90 -0
  267. package/dist/table/header.js +191 -0
  268. package/dist/table/multitable.js +140 -0
  269. package/dist/table/row-with-focus-sensor.js +81 -0
  270. package/dist/table/row.js +271 -0
  271. package/dist/table/selection-adapter.js +14 -0
  272. package/dist/table/selection-shortcuts-hoc.js +214 -0
  273. package/dist/table/selection.js +221 -0
  274. package/dist/table/smart-table.js +119 -0
  275. package/dist/table/table.js +404 -0
  276. package/dist/table-legacy-ng/table-legacy-ng.js +501 -0
  277. package/dist/table-legacy-ng/table-legacy-ng__pager.js +122 -0
  278. package/dist/table-legacy-ng/table-legacy-ng__selection-navigate-actions.js +123 -0
  279. package/dist/table-legacy-ng/table-legacy-ng__selection.js +179 -0
  280. package/dist/table-legacy-ng/table-legacy-ng__toolbar.js +56 -0
  281. package/dist/table-ng/smart-table-ng.js +65 -0
  282. package/dist/table-ng/table-ng.js +64 -0
  283. package/dist/tabs/collapsible-more.js +196 -0
  284. package/dist/tabs/collapsible-tab.js +90 -0
  285. package/dist/tabs/collapsible-tabs.js +360 -0
  286. package/dist/tabs/custom-item.js +13 -0
  287. package/dist/tabs/dumb-tabs.js +161 -0
  288. package/dist/tabs/smart-tabs.js +104 -0
  289. package/dist/tabs/tab-link.js +41 -0
  290. package/dist/tabs/tab.js +32 -0
  291. package/dist/tabs/tabs.js +69 -0
  292. package/dist/tabs-ng/tabs-ng.js +193 -0
  293. package/dist/tabs-ng/tabs-ng__template.js +40 -0
  294. package/dist/tag/tag.js +196 -0
  295. package/dist/tags-input/tags-input.js +478 -0
  296. package/dist/tags-input-ng/tags-input-ng.js +89 -0
  297. package/dist/tags-list/tags-list.js +93 -0
  298. package/dist/template-ng/template-ng.js +70 -0
  299. package/dist/text/text.js +36 -0
  300. package/dist/theme-ng/theme-ng.js +44 -0
  301. package/dist/title-ng/title-ng.js +114 -0
  302. package/dist/toggle/toggle.js +77 -0
  303. package/dist/toggle-ng/toggle-ng.js +16 -0
  304. package/dist/tooltip/tooltip.js +207 -0
  305. package/dist/tooltip-ng/tooltip-ng.js +98 -0
  306. package/dist/user-agreement/service.js +409 -0
  307. package/dist/user-agreement/toolbox.eula.js +162 -0
  308. package/dist/user-agreement/user-agreement.js +167 -0
  309. package/dist/user-card/card.js +17 -0
  310. package/dist/user-card/smart-user-card-tooltip.js +112 -0
  311. package/dist/user-card/tooltip.js +93 -0
  312. package/dist/user-card/user-card.js +49 -0
  313. package/dist/user-card-ng/user-card-ng.js +59 -0
  314. package/package.json +2 -2
@@ -0,0 +1,1025 @@
1
+ import { _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
2
+ import { getAbsoluteBaseURL, fixUrl } from '../global/url.js';
3
+ import Listeners from '../global/listeners.js';
4
+ import HTTP from '../http/http.js';
5
+ import promiseWithTimeout from '../global/promise-with-timeout.js';
6
+ import AuthStorage from './storage.js';
7
+ import AuthResponseParser from './response-parser.js';
8
+ import AuthRequestBuilder from './request-builder.js';
9
+ import BackgroundFlow from './background-flow.js';
10
+ import TokenValidator from './token-validator.js';
11
+ import 'es6-error';
12
+ import '../storage/storage.js';
13
+ import '../storage/storage__local.js';
14
+ import '../alert-service/alert-service.js';
15
+ import 'react';
16
+ import 'react-dom';
17
+ import '../global/get-uid.js';
18
+ import '../alert/alert.js';
19
+ import 'classnames';
20
+ import 'prop-types';
21
+ import '@jetbrains/icons/exception';
22
+ import '@jetbrains/icons/checkmark';
23
+ import '@jetbrains/icons/warning';
24
+ import '@jetbrains/icons/close';
25
+ import '../icon/icon.js';
26
+ import 'util-deprecate';
27
+ import '../icon/icon__constants.js';
28
+ import '../_helpers/icon.js';
29
+ import '../icon/icon__svg.js';
30
+ import '../global/memoize.js';
31
+ import '../loader-inline/loader-inline.js';
32
+ import '../global/theme.js';
33
+ import '../global/data-tests.js';
34
+ import '../_helpers/inject-styles.js';
35
+ import '../global/conic-gradient.js';
36
+ import 'conic-gradient';
37
+ import '../global/supports-css.js';
38
+ import '../global/inject-styles.js';
39
+ import '../global/radial-gradient-mask.js';
40
+ import '../global/dom.js';
41
+ import '../alert/container.js';
42
+ import '../storage/storage__fallback.js';
43
+ import 'deep-equal';
44
+ import 'simply-uuid';
45
+
46
+ /* eslint-disable no-magic-numbers */
47
+
48
+ const DEFAULT_EXPIRES_TIMEOUT = 40 * 60;
49
+ const DEFAULT_BACKGROUND_TIMEOUT = 10 * 1000;
50
+ const DEFAULT_BACKEND_CHECK_TIMEOUT = 10 * 1000;
51
+ const BACKGROUND_REDIRECT_TIMEOUT = 20 * 1000;
52
+ const DEFAULT_WAIT_FOR_REDIRECT_TIMEOUT = 5 * 1000;
53
+ /* eslint-enable no-magic-numbers */
54
+
55
+ const USER_CHANGED_EVENT = 'userChange';
56
+ const DOMAIN_USER_CHANGED_EVENT = 'domainUser';
57
+ const LOGOUT_EVENT = 'logout';
58
+ const LOGOUT_POSTPONED_EVENT = 'logoutPostponed';
59
+ const USER_CHANGE_POSTPONED_EVENT = 'changePostponed';
60
+
61
+ function noop() {}
62
+
63
+ const DEFAULT_CONFIG = {
64
+ cacheCurrentUser: false,
65
+ reloadOnUserChange: true,
66
+ embeddedLogin: false,
67
+ EmbeddedLoginFlow: null,
68
+ clientId: '0-0-0-0-0',
69
+ redirectUri: getAbsoluteBaseURL(),
70
+ redirect: false,
71
+ requestCredentials: 'default',
72
+ backgroundRefreshTimeout: null,
73
+ scope: [],
74
+ userFields: ['guest', 'id', 'name', 'login', 'profile/avatar/url'],
75
+ cleanHash: true,
76
+ onLogout: noop,
77
+ onPostponeChangedUser: () => {},
78
+ onPostponeLogout: () => {},
79
+ enableBackendStatusCheck: true,
80
+ backendCheckTimeout: DEFAULT_BACKEND_CHECK_TIMEOUT,
81
+ checkBackendIsUp: () => Promise.resolve(null),
82
+ onBackendDown: () => {},
83
+ defaultExpiresIn: DEFAULT_EXPIRES_TIMEOUT,
84
+ waitForRedirectTimeout: DEFAULT_WAIT_FOR_REDIRECT_TIMEOUT,
85
+ translations: {
86
+ login: 'Log in',
87
+ loginTo: 'Log in to %serviceName%',
88
+ cancel: 'Cancel',
89
+ postpone: 'Postpone',
90
+ youHaveLoggedInAs: 'You have logged in as another user: %userName%',
91
+ applyChange: 'Apply change',
92
+ backendIsNotAvailable: 'Connection lost',
93
+ checkAgain: 'try again',
94
+ nothingHappensLink: 'Click here if nothing happens',
95
+ errorMessage: 'There may be a problem with your network connection. Make sure that you are online and'
96
+ }
97
+ };
98
+ class Auth {
99
+ constructor(config) {
100
+ _defineProperty(this, "config", {});
101
+
102
+ _defineProperty(this, "listeners", new Listeners());
103
+
104
+ _defineProperty(this, "http", null);
105
+
106
+ _defineProperty(this, "_service", {});
107
+
108
+ _defineProperty(this, "_storage", null);
109
+
110
+ _defineProperty(this, "_responseParser", new AuthResponseParser());
111
+
112
+ _defineProperty(this, "_requestBuilder", null);
113
+
114
+ _defineProperty(this, "_backgroundFlow", null);
115
+
116
+ _defineProperty(this, "_embeddedFlow", null);
117
+
118
+ _defineProperty(this, "_tokenValidator", null);
119
+
120
+ _defineProperty(this, "_postponed", false);
121
+
122
+ _defineProperty(this, "_backendCheckPromise", null);
123
+
124
+ _defineProperty(this, "_authDialogService", undefined);
125
+
126
+ if (!config) {
127
+ throw new Error('Config is required');
128
+ }
129
+
130
+ if (config.serverUri == null) {
131
+ throw new Error('\"serverUri\" property is required');
132
+ }
133
+
134
+ const unsupportedParams = ['redirect_uri', 'request_credentials', 'client_id'].filter(param => config.hasOwnProperty(param));
135
+
136
+ if (unsupportedParams.length !== 0) {
137
+ throw new Error(`The following parameters are no longer supported: ${unsupportedParams.join(', ')}. Please change them from snake_case to camelCase.`);
138
+ }
139
+
140
+ config.userFields = config.userFields || [];
141
+ this.config = { ...Auth.DEFAULT_CONFIG,
142
+ ...config
143
+ };
144
+ const {
145
+ clientId,
146
+ redirect,
147
+ redirectUri,
148
+ requestCredentials,
149
+ scope
150
+ } = this.config;
151
+ const serverUriLength = this.config.serverUri.length;
152
+
153
+ if (serverUriLength > 0 && this.config.serverUri.charAt(serverUriLength - 1) !== '/') {
154
+ this.config.serverUri += '/';
155
+ }
156
+
157
+ this.config.userParams = {
158
+ query: {
159
+ fields: [...new Set(Auth.DEFAULT_CONFIG.userFields.concat(config.userFields))].join()
160
+ }
161
+ };
162
+
163
+ if (!scope.includes(Auth.DEFAULT_CONFIG.clientId)) {
164
+ scope.push(Auth.DEFAULT_CONFIG.clientId);
165
+ }
166
+
167
+ this._storage = new AuthStorage({
168
+ messagePrefix: `${clientId}-message-`,
169
+ stateKeyPrefix: `${clientId}-states-`,
170
+ tokenKey: `${clientId}-token`,
171
+ userKey: `${clientId}-user-`
172
+ });
173
+ this._domainStorage = new AuthStorage({
174
+ messagePrefix: 'domain-message-'
175
+ });
176
+ this._requestBuilder = new AuthRequestBuilder({
177
+ authorization: this.config.serverUri + Auth.API_PATH + Auth.API_AUTH_PATH,
178
+ clientId,
179
+ redirect,
180
+ redirectUri,
181
+ requestCredentials,
182
+ scopes: scope
183
+ }, this._storage);
184
+ let {
185
+ backgroundRefreshTimeout
186
+ } = this.config;
187
+
188
+ if (!backgroundRefreshTimeout) {
189
+ backgroundRefreshTimeout = this.config.embeddedLogin ? DEFAULT_BACKGROUND_TIMEOUT : BACKGROUND_REDIRECT_TIMEOUT;
190
+ }
191
+
192
+ this._backgroundFlow = new BackgroundFlow(this._requestBuilder, this._storage, backgroundRefreshTimeout);
193
+
194
+ if (this.config.EmbeddedLoginFlow) {
195
+ this._embeddedFlow = new this.config.EmbeddedLoginFlow(this._requestBuilder, this._storage, this.config.translations);
196
+ }
197
+
198
+ const API_BASE = this.config.serverUri + Auth.API_PATH;
199
+ const fetchConfig = config.fetchCredentials ? {
200
+ credentials: config.fetchCredentials
201
+ } : undefined;
202
+ this.http = new HTTP(this, API_BASE, fetchConfig);
203
+
204
+ const getUser = async token => {
205
+ const user = await this.getUser(token);
206
+ this.user = user;
207
+ return user;
208
+ };
209
+
210
+ this._tokenValidator = new TokenValidator(this.config, getUser, this._storage);
211
+
212
+ if (this.config.onLogout) {
213
+ this.addListener(LOGOUT_EVENT, this.config.onLogout);
214
+ }
215
+
216
+ if (this.config.reloadOnUserChange === true) {
217
+ this.addListener(USER_CHANGED_EVENT, () => this._reloadCurrentPage());
218
+ }
219
+
220
+ this.addListener(LOGOUT_POSTPONED_EVENT, () => this._setPostponed(true));
221
+ this.addListener(USER_CHANGE_POSTPONED_EVENT, () => this._setPostponed(true));
222
+ this.addListener(USER_CHANGED_EVENT, () => this._setPostponed(false));
223
+ this.addListener(USER_CHANGED_EVENT, user => user && this._updateDomainUser(user.id));
224
+
225
+ if (this.config.cacheCurrentUser) {
226
+ this.addListener(LOGOUT_EVENT, () => this._storage.wipeCachedCurrentUser());
227
+ this.addListener(USER_CHANGED_EVENT, () => this._storage.onUserChanged());
228
+ }
229
+
230
+ this._createInitDeferred();
231
+
232
+ this.setUpPreconnect(config.serverUri);
233
+ }
234
+
235
+ _setPostponed() {
236
+ let postponed = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
237
+ this._postponed = postponed;
238
+ }
239
+
240
+ _updateDomainUser(userID) {
241
+ this._domainStorage.sendMessage(DOMAIN_USER_CHANGED_EVENT, {
242
+ userID,
243
+ serviceID: this.config.clientId
244
+ });
245
+ }
246
+
247
+ addListener(event, handler) {
248
+ this.listeners.add(event, handler);
249
+ }
250
+
251
+ removeListener(event, handler) {
252
+ this.listeners.remove(event, handler);
253
+ }
254
+
255
+ setAuthDialogService(authDialogService) {
256
+ this._authDialogService = authDialogService;
257
+ }
258
+
259
+ setCurrentService(service) {
260
+ this._service = service;
261
+ }
262
+
263
+ _createInitDeferred() {
264
+ this._initDeferred = {};
265
+ this._initDeferred.promise = new Promise((resolve, reject) => {
266
+ this._initDeferred.resolve = resolve;
267
+ this._initDeferred.reject = reject;
268
+ });
269
+ }
270
+ /**
271
+ * @return {Promise.<string>} absolute URL promise that is resolved to a URL
272
+ * that should be restored after returning back from auth server.
273
+ */
274
+
275
+
276
+ async init() {
277
+ this._storage.onTokenChange(async token => {
278
+ const isGuest = this.user ? this.user.guest : false;
279
+
280
+ if (isGuest && !token) {
281
+ return;
282
+ }
283
+
284
+ if (!token) {
285
+ this.logout();
286
+ } else {
287
+ try {
288
+ await this._detectUserChange(token.accessToken);
289
+ } catch (error) {
290
+ if (this._canShowDialogs()) {
291
+ this._showAuthDialog({
292
+ nonInteractive: true,
293
+ error
294
+ });
295
+ }
296
+ }
297
+ }
298
+ });
299
+
300
+ this._domainStorage.onMessage(DOMAIN_USER_CHANGED_EVENT, _ref => {
301
+ let {
302
+ userID,
303
+ serviceID
304
+ } = _ref;
305
+
306
+ if (serviceID === this.config.clientId) {
307
+ return;
308
+ }
309
+
310
+ if (this.user && userID === this.user.id) {
311
+ return;
312
+ }
313
+
314
+ this.forceTokenUpdate();
315
+ });
316
+
317
+ let state;
318
+
319
+ try {
320
+ // Look for token or error in hash
321
+ state = await this._checkForAuthResponse();
322
+ } catch (error) {
323
+ return this.handleInitError(error);
324
+ } // Return endless promise in the background to avoid service start
325
+
326
+
327
+ if (state && state.nonRedirect) {
328
+ return new Promise(noop);
329
+ }
330
+
331
+ try {
332
+ var _state;
333
+
334
+ // Check if there is a valid token
335
+ await this._tokenValidator.validateToken(); // Checking if there is a message left by another app on this domain
336
+
337
+ const message = await this._domainStorage._messagesStorage.get(`domain-message-${DOMAIN_USER_CHANGED_EVENT}`);
338
+
339
+ if (message) {
340
+ const {
341
+ userID,
342
+ serviceID
343
+ } = message;
344
+
345
+ if (serviceID !== this.config.clientId && (!userID || this.user.id !== userID)) {
346
+ this.forceTokenUpdate();
347
+ }
348
+ } // Access token appears to be valid.
349
+ // We may resolve restoreLocation URL now
350
+
351
+
352
+ if (!state) {
353
+ // Check if we have requested to restore state anyway
354
+ state = await this._checkForStateRestoration();
355
+ }
356
+
357
+ this._initDeferred.resolve(state && state.restoreLocation);
358
+
359
+ return (_state = state) === null || _state === void 0 ? void 0 : _state.restoreLocation;
360
+ } catch (error) {
361
+ if (Auth.storageIsUnavailable) {
362
+ this._initDeferred.resolve(); // No way to handle if cookies are disabled
363
+
364
+
365
+ await this.requestUser(); // Someone may expect user to be loaded as a part of token validation
366
+
367
+ return null;
368
+ }
369
+
370
+ return this.handleInitValidationError(error);
371
+ }
372
+ }
373
+
374
+ async sendRedirect(error) {
375
+ const authRequest = await this._requestBuilder.prepareAuthRequest();
376
+
377
+ this._redirectCurrentPage(authRequest.url); // HUB-10867 Since we already redirecting the page, there is no actual need to throw an error
378
+ // and scare user with flashing error
379
+ // But let's keep it just in case redirect was not successful
380
+
381
+
382
+ await new Promise(resolve => setTimeout(resolve, this.config.waitForRedirectTimeout));
383
+ throw error;
384
+ }
385
+
386
+ async handleInitError(error) {
387
+ if (error.stateId) {
388
+ try {
389
+ const state = await this._storage.getState(error.stateId);
390
+
391
+ if (state && state.nonRedirect) {
392
+ state.error = error;
393
+
394
+ this._storage.saveState(error.stateId, state); // Return endless promise in the background to avoid service start
395
+
396
+
397
+ return new Promise(noop);
398
+ }
399
+ } catch (e) {// Throw the orginal error instead below
400
+ }
401
+ }
402
+
403
+ throw error;
404
+ }
405
+
406
+ async handleInitValidationError(error) {
407
+ // Redirect flow
408
+ if (error.authRedirect && this.config.redirect) {
409
+ return this.sendRedirect(error);
410
+ } // Background flow
411
+
412
+
413
+ if (error.authRedirect && !this.config.redirect) {
414
+ try {
415
+ await this._backgroundFlow.authorize();
416
+ await this._tokenValidator.validateToken();
417
+
418
+ this._initDeferred.resolve();
419
+
420
+ return undefined;
421
+ } catch (validationError) {
422
+ // Fallback to redirect flow
423
+ return this.sendRedirect(validationError);
424
+ }
425
+ }
426
+
427
+ this._initDeferred.reject(error);
428
+
429
+ throw error;
430
+ }
431
+ /**
432
+ * Get token from local storage or request it if necessary.
433
+ * Can redirect to login page.
434
+ * @return {Promise.<string>}
435
+ */
436
+
437
+
438
+ async requestToken() {
439
+ if (this._postponed) {
440
+ throw new Error('You should log in to be able to make requests');
441
+ }
442
+
443
+ try {
444
+ await this._initDeferred.promise;
445
+
446
+ if (Auth.storageIsUnavailable) {
447
+ return null; // Forever guest if storage is unavailable
448
+ }
449
+
450
+ return await this._tokenValidator.validateTokenLocally();
451
+ } catch (e) {
452
+ return this.forceTokenUpdate();
453
+ }
454
+ }
455
+ /**
456
+ * Get new token in the background or redirect to the login page.
457
+ * @return {Promise.<string>}
458
+ */
459
+
460
+
461
+ async forceTokenUpdate() {
462
+ try {
463
+ if (!this._backendCheckPromise) {
464
+ this._backendCheckPromise = this._checkBackendsStatusesIfEnabled();
465
+ }
466
+
467
+ await this._backendCheckPromise;
468
+ } catch (e) {
469
+ throw new Error('Cannot refresh token: backend is not available. Postponed by user.');
470
+ } finally {
471
+ this._backendCheckPromise = null;
472
+ }
473
+
474
+ try {
475
+ return await this._backgroundFlow.authorize();
476
+ } catch (error) {
477
+ if (this._canShowDialogs()) {
478
+ return this._showAuthDialog({
479
+ nonInteractive: true,
480
+ error
481
+ });
482
+ } else {
483
+ const authRequest = await this._requestBuilder.prepareAuthRequest();
484
+
485
+ this._redirectCurrentPage(authRequest.url);
486
+ }
487
+
488
+ throw new TokenValidator.TokenValidationError(error.message);
489
+ }
490
+ }
491
+
492
+ async loadCurrentService() {
493
+ if (this._service.serviceName) {
494
+ return;
495
+ }
496
+
497
+ try {
498
+ const {
499
+ serviceName,
500
+ iconUrl: serviceImage
501
+ } = (await this.http.get(`oauth2/interactive/login/settings?client_id=${this.config.clientId}`)) || {};
502
+ this.setCurrentService({
503
+ serviceImage,
504
+ serviceName
505
+ });
506
+ } catch (e) {// noop
507
+ }
508
+ }
509
+
510
+ getAPIPath() {
511
+ return this.config.serverUri + Auth.API_PATH;
512
+ }
513
+ /**
514
+ * @return {Promise.<object>}
515
+ */
516
+
517
+
518
+ getUser(accessToken) {
519
+ if (this.config.cacheCurrentUser) {
520
+ return this._storage.getCachedUser(() => this.http.authorizedFetch(Auth.API_PROFILE_PATH, accessToken, this.config.userParams));
521
+ } else {
522
+ return this.http.authorizedFetch(Auth.API_PROFILE_PATH, accessToken, this.config.userParams);
523
+ }
524
+ }
525
+ /**
526
+ * @return {Promise.<object>}
527
+ */
528
+
529
+
530
+ async requestUser() {
531
+ if (this.user) {
532
+ return this.user;
533
+ }
534
+
535
+ const accessToken = await this.requestToken(); // If user was fetched during token request
536
+
537
+ if (this.user) {
538
+ return this.user;
539
+ }
540
+
541
+ const user = await this.getUser(accessToken);
542
+ this.user = user;
543
+ return user;
544
+ }
545
+
546
+ async updateUser() {
547
+ this._setPostponed(false);
548
+
549
+ const accessToken = await this.requestToken();
550
+
551
+ this._storage.wipeCachedCurrentUser();
552
+
553
+ const user = await this.getUser(accessToken);
554
+ this.user = user;
555
+ this.listeners.trigger(USER_CHANGED_EVENT, user);
556
+ }
557
+
558
+ async _detectUserChange(accessToken) {
559
+ const windowWasOpen = this._isLoginWindowOpen;
560
+ const user = await this.getUser(accessToken);
561
+
562
+ const onApply = () => {
563
+ this.user = user;
564
+ this.listeners.trigger(USER_CHANGED_EVENT, user);
565
+ };
566
+
567
+ if (user && this.user && this.user.id !== user.id) {
568
+ if (!this._canShowDialogs() || this.user.guest || windowWasOpen) {
569
+ onApply();
570
+ return;
571
+ }
572
+
573
+ if (user.guest) {
574
+ this._showAuthDialog({
575
+ nonInteractive: true
576
+ });
577
+
578
+ return;
579
+ }
580
+
581
+ await this._showUserChangedDialog({
582
+ newUser: user,
583
+ onApply,
584
+ onPostpone: () => {
585
+ this.listeners.trigger(USER_CHANGE_POSTPONED_EVENT);
586
+ this.config.onPostponeChangedUser(this.user, user);
587
+ }
588
+ });
589
+ }
590
+ }
591
+
592
+ _beforeLogout(params) {
593
+ if (this._canShowDialogs()) {
594
+ this._showAuthDialog(params);
595
+
596
+ return;
597
+ }
598
+
599
+ this.logout();
600
+ }
601
+
602
+ _showAuthDialog() {
603
+ let {
604
+ nonInteractive,
605
+ error,
606
+ canCancel
607
+ } = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
608
+ const {
609
+ embeddedLogin,
610
+ onPostponeLogout,
611
+ translations
612
+ } = this.config;
613
+ const cancelable = this.user.guest || canCancel;
614
+
615
+ this._createInitDeferred();
616
+
617
+ const closeDialog = () => {
618
+ /* eslint-disable no-use-before-define */
619
+ stopTokenListening();
620
+ stopMessageListening();
621
+ hide();
622
+ /* eslint-enable no-use-before-define */
623
+ };
624
+
625
+ const onConfirm = () => {
626
+ if (embeddedLogin !== true) {
627
+ closeDialog();
628
+ this.logout();
629
+ return;
630
+ }
631
+
632
+ this._runEmbeddedLogin();
633
+ };
634
+
635
+ const onCancel = () => {
636
+ this._embeddedFlow.stop();
637
+
638
+ this._storage.sendMessage(Auth.CLOSE_WINDOW_MESSAGE, Date.now());
639
+
640
+ closeDialog();
641
+
642
+ if (!cancelable) {
643
+ this._initDeferred.resolve();
644
+
645
+ this.listeners.trigger(LOGOUT_POSTPONED_EVENT);
646
+ onPostponeLogout();
647
+ return;
648
+ }
649
+
650
+ if (this.user.guest && nonInteractive) {
651
+ this.forceTokenUpdate();
652
+ } else {
653
+ this._initDeferred.resolve();
654
+ }
655
+ };
656
+
657
+ const hide = this._authDialogService({ ...this._service,
658
+ loginCaption: translations.login,
659
+ loginToCaption: translations.loginTo,
660
+ confirmLabel: translations.login,
661
+ cancelLabel: cancelable ? translations.cancel : translations.postpone,
662
+ errorMessage: this._extractErrorMessage(error, true),
663
+ onConfirm,
664
+ onCancel
665
+ });
666
+
667
+ const stopTokenListening = this._storage.onTokenChange(token => {
668
+ if (token) {
669
+ closeDialog();
670
+
671
+ this._initDeferred.resolve();
672
+ }
673
+ });
674
+
675
+ const stopMessageListening = this._storage.onMessage(Auth.CLOSE_WINDOW_MESSAGE, () => this._embeddedFlow.stop());
676
+ }
677
+
678
+ _showUserChangedDialog() {
679
+ let {
680
+ newUser,
681
+ onApply,
682
+ onPostpone
683
+ } = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
684
+ const {
685
+ translations
686
+ } = this.config;
687
+
688
+ this._createInitDeferred();
689
+
690
+ const done = () => {
691
+ this._initDeferred.resolve(); // eslint-disable-next-line no-use-before-define
692
+
693
+
694
+ hide();
695
+ };
696
+
697
+ const hide = this._authDialogService({ ...this._service,
698
+ title: translations.youHaveLoggedInAs.replace('%userName%', newUser.name),
699
+ loginCaption: translations.login,
700
+ loginToCaption: translations.loginTo,
701
+ confirmLabel: translations.applyChange,
702
+ cancelLabel: translations.postpone,
703
+ onConfirm: () => {
704
+ done();
705
+ onApply();
706
+ },
707
+ onCancel: () => {
708
+ done();
709
+ onPostpone();
710
+ }
711
+ });
712
+ }
713
+
714
+ _extractErrorMessage(error) {
715
+ let logError = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
716
+
717
+ if (!error) {
718
+ return null;
719
+ }
720
+
721
+ if (logError) {
722
+ // eslint-disable-next-line no-console
723
+ console.error('RingUI Auth error', error);
724
+ }
725
+
726
+ try {
727
+ // We've got some error from this list
728
+ // https://www.jetbrains.com/help/youtrack/devportal/OAuth-2.0-Errors.html
729
+ if (error.code && typeof error.code.code === 'string') {
730
+ const readableCode = error.code.code.split('_').join(' ');
731
+ return `Authorization error: ${readableCode}`;
732
+ }
733
+ } catch {// noop
734
+ }
735
+
736
+ return error.toString ? error.toString() : null;
737
+ }
738
+
739
+ _showBackendDownDialog(backendError) {
740
+ const {
741
+ onBackendDown,
742
+ translations
743
+ } = this.config;
744
+ const REPEAT_TIMEOUT = 5000;
745
+ let timerId = null;
746
+ return new Promise((resolve, reject) => {
747
+ const done = () => {
748
+ /* eslint-disable no-use-before-define */
749
+ hide();
750
+ window.removeEventListener('online', onCheckAgain);
751
+ stopListeningCloseMessage();
752
+ /* eslint-enable no-use-before-define */
753
+
754
+ this._storage.sendMessage(Auth.CLOSE_BACKEND_DOWN_MESSAGE, Date.now());
755
+
756
+ this._awaitingForBackendPromise = null;
757
+ clearTimeout(timerId);
758
+ };
759
+
760
+ const stopListeningCloseMessage = this._storage.onMessage(Auth.CLOSE_BACKEND_DOWN_MESSAGE, () => {
761
+ stopListeningCloseMessage();
762
+ done();
763
+ resolve();
764
+ });
765
+
766
+ const onCheckAgain = async () => {
767
+ await this._checkBackendsAreUp();
768
+ done();
769
+ resolve();
770
+ };
771
+
772
+ const onPostpone = () => {
773
+ done();
774
+ reject(new Error('Auth(@jetbrains/ring-ui): postponed by user'));
775
+ };
776
+
777
+ const hide = onBackendDown({
778
+ onCheckAgain,
779
+ onPostpone,
780
+ backendError,
781
+ translations
782
+ });
783
+ window.addEventListener('online', onCheckAgain);
784
+
785
+ function networkWatchdog() {
786
+ if (navigator && navigator.onLine) {
787
+ onCheckAgain();
788
+ }
789
+
790
+ timerId = setTimeout(networkWatchdog, REPEAT_TIMEOUT);
791
+ }
792
+
793
+ timerId = setTimeout(networkWatchdog, REPEAT_TIMEOUT);
794
+ });
795
+ }
796
+ /**
797
+ * Wipe accessToken and redirect to auth page with required authorization
798
+ */
799
+
800
+
801
+ async logout(extraParams) {
802
+ const requestParams = {
803
+ // eslint-disable-next-line camelcase
804
+ request_credentials: 'required',
805
+ ...extraParams
806
+ };
807
+ await this._checkBackendsStatusesIfEnabled();
808
+ await this.listeners.trigger(LOGOUT_EVENT);
809
+
810
+ this._updateDomainUser(null);
811
+
812
+ await this._storage.wipeToken();
813
+ const authRequest = await this._requestBuilder.prepareAuthRequest(requestParams);
814
+
815
+ this._redirectCurrentPage(authRequest.url);
816
+ }
817
+
818
+ async _runEmbeddedLogin() {
819
+ this._storage.sendMessage(Auth.CLOSE_WINDOW_MESSAGE, Date.now());
820
+
821
+ try {
822
+ this._isLoginWindowOpen = true;
823
+ return await this._embeddedFlow.authorize();
824
+ } catch (e) {
825
+ throw e;
826
+ } finally {
827
+ this._isLoginWindowOpen = false;
828
+ }
829
+ }
830
+ /**
831
+ * Wipe accessToken and redirect to auth page to obtain authorization data
832
+ * if user is logged in or log her in otherwise
833
+ */
834
+
835
+
836
+ async login() {
837
+ if (this.config.embeddedLogin) {
838
+ await this._runEmbeddedLogin();
839
+ return;
840
+ }
841
+
842
+ await this._checkBackendsStatusesIfEnabled();
843
+
844
+ try {
845
+ const accessToken = await this._backgroundFlow.authorize();
846
+ const user = await this.getUser(accessToken);
847
+
848
+ if (user.guest) {
849
+ this._beforeLogout();
850
+ } else {
851
+ this.user = user;
852
+ this.listeners.trigger(USER_CHANGED_EVENT, user);
853
+ }
854
+ } catch (e) {
855
+ this._beforeLogout();
856
+ }
857
+ }
858
+
859
+ async switchUser() {
860
+ if (!this.config.embeddedLogin) {
861
+ throw new Error('Auth: switchUser only supported for "embeddedLogin" mode');
862
+ }
863
+
864
+ await this._runEmbeddedLogin();
865
+ }
866
+ /**
867
+ * Check if the hash contains an access token.
868
+ * If it does, extract the state, compare with
869
+ * config, and store the auth response for later use.
870
+ *
871
+ * @return {Promise} promise that is resolved to restoreLocation URL, or rejected
872
+ * @private
873
+ */
874
+
875
+
876
+ async _checkForAuthResponse() {
877
+ // getAuthResponseURL may throw an exception
878
+ const authResponse = this._responseParser.getAuthResponseFromURL();
879
+
880
+ const {
881
+ scope: defaultScope,
882
+ defaultExpiresIn,
883
+ cleanHash
884
+ } = this.config;
885
+
886
+ if (authResponse && cleanHash) {
887
+ this.setHash('');
888
+ }
889
+
890
+ if (!authResponse) {
891
+ return undefined;
892
+ }
893
+
894
+ const {
895
+ state: stateId,
896
+ scope,
897
+ expiresIn,
898
+ accessToken
899
+ } = authResponse;
900
+ const newState = (await (stateId && this._storage.getState(stateId))) || {};
901
+ const scopes = scope ? scope.split(' ') : newState.scopes || defaultScope || [];
902
+ const effectiveExpiresIn = expiresIn ? parseInt(expiresIn, 10) : defaultExpiresIn;
903
+ const expires = TokenValidator._epoch() + effectiveExpiresIn;
904
+ await this._storage.saveToken({
905
+ accessToken,
906
+ scopes,
907
+ expires,
908
+ lifeTime: effectiveExpiresIn
909
+ });
910
+ return newState;
911
+ }
912
+
913
+ async _checkForStateRestoration() {
914
+ const authResponse = this._responseParser._authResponse;
915
+
916
+ if (authResponse && this.config.cleanHash) {
917
+ this.setHash('');
918
+ }
919
+
920
+ const stateId = authResponse === null || authResponse === void 0 ? void 0 : authResponse.restoreAuthState;
921
+ return (await (stateId && this._storage.getState(stateId))) || {};
922
+ }
923
+
924
+ _checkBackendsAreUp() {
925
+ const {
926
+ backendCheckTimeout
927
+ } = this.config;
928
+ return Promise.all([promiseWithTimeout(this.http.fetch('settings/public?fields=id'), backendCheckTimeout, {
929
+ error: new Error('The authorization server is taking too long to respond. Please try again later.')
930
+ }), this.config.checkBackendIsUp()]).catch(err => {
931
+ if (err instanceof TypeError) {
932
+ throw new TypeError('Could not connect to the server due to network error. Please check your connection and try again.');
933
+ }
934
+
935
+ throw err;
936
+ });
937
+ }
938
+
939
+ async _checkBackendsStatusesIfEnabled() {
940
+ if (!this.config.enableBackendStatusCheck) {
941
+ return;
942
+ }
943
+
944
+ try {
945
+ await this._checkBackendsAreUp();
946
+ } catch (backendDownErr) {
947
+ await this._showBackendDownDialog(backendDownErr);
948
+ }
949
+ }
950
+ /**
951
+ * Adds preconnect tag to help browser to establish connection to URL.
952
+ * See https://w3c.github.io/resource-hints/
953
+ * @param url Url to preconnect to.
954
+ */
955
+
956
+
957
+ setUpPreconnect(url) {
958
+ const linkNode = document.createElement('link');
959
+ linkNode.rel = 'preconnect';
960
+ linkNode.href = url;
961
+ linkNode.pr = '1.0';
962
+ linkNode.crossorigin = 'use-credentials';
963
+ document.head.appendChild(linkNode);
964
+ }
965
+ /**
966
+ * Redirects current page to the given URL
967
+ * @param {string} url
968
+ * @private
969
+ */
970
+
971
+
972
+ _redirectCurrentPage(url) {
973
+ window.location = fixUrl(url);
974
+ }
975
+ /**
976
+ * Reloads current page
977
+ */
978
+
979
+
980
+ _reloadCurrentPage() {
981
+ this._redirectCurrentPage(window.location.href);
982
+ }
983
+
984
+ _canShowDialogs() {
985
+ return this.config.embeddedLogin && this._authDialogService;
986
+ }
987
+ /**
988
+ * Sets the location hash
989
+ * @param {string} hash
990
+ */
991
+
992
+
993
+ setHash(hash) {
994
+ if (history.replaceState) {
995
+ // NB! History.replaceState is used here, because Firefox saves
996
+ // a record in history.
997
+ // NB! URL to redirect is formed manually because baseURI could be messed up,
998
+ // in which case it's not obvious where redirect will lead.
999
+ const cleanedUrl = [window.location.pathname, window.location.search].join('');
1000
+ const hashIfExist = hash ? `#${hash}` : '';
1001
+ history.replaceState(undefined, undefined, `${cleanedUrl}${hashIfExist}`);
1002
+ } else {
1003
+ window.location.hash = hash;
1004
+ }
1005
+ }
1006
+
1007
+ }
1008
+
1009
+ _defineProperty(Auth, "DEFAULT_CONFIG", DEFAULT_CONFIG);
1010
+
1011
+ _defineProperty(Auth, "API_PATH", 'api/rest/');
1012
+
1013
+ _defineProperty(Auth, "API_AUTH_PATH", 'oauth2/auth');
1014
+
1015
+ _defineProperty(Auth, "API_PROFILE_PATH", 'users/me');
1016
+
1017
+ _defineProperty(Auth, "CLOSE_BACKEND_DOWN_MESSAGE", 'backend-check-succeeded');
1018
+
1019
+ _defineProperty(Auth, "CLOSE_WINDOW_MESSAGE", 'close-login-window');
1020
+
1021
+ _defineProperty(Auth, "shouldRefreshToken", TokenValidator.shouldRefreshToken);
1022
+
1023
+ _defineProperty(Auth, "storageIsUnavailable", !navigator.cookieEnabled);
1024
+
1025
+ export { DEFAULT_BACKGROUND_TIMEOUT, DEFAULT_EXPIRES_TIMEOUT, DOMAIN_USER_CHANGED_EVENT, LOGOUT_EVENT, LOGOUT_POSTPONED_EVENT, USER_CHANGED_EVENT, USER_CHANGE_POSTPONED_EVENT, Auth as default };