123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- import {RouteComponent, RouteComponentProps} from 'react-router';
- import {Location, LocationDescriptor} from 'history';
- import trimEnd from 'lodash/trimEnd';
- import trimStart from 'lodash/trimStart';
- const NORMALIZE_PATTERNS: Array<[pattern: RegExp, replacement: string]> = [
- // /organizations/slug/section, but not /organizations/new
- [/\/?organizations\/(?!new)[^\/]+\/(.*)/, '/$1'],
- // /settings/slug/section but not /settings/organization
- // and not /settings/projects which is a new URL
- [/\/?settings\/(?!projects)(?!account)[^\/]+\/(.*)/, '/settings/$1'],
- [/\/?join-request\/[^\/]+\/?.*/, '/join-request/'],
- [/\/?onboarding\/[^\/]+\/(.*)/, '/onboarding/$1'],
- [/\/?[^\/]+\/([^\/]+)\/getting-started\/(.*)/, '/getting-started/$1/$2'],
- ];
- type LocationTarget = ((location: Location) => LocationDescriptor) | LocationDescriptor;
- /**
- * Normalize a URL for customer domains based on the current route state
- */
- export function normalizeUrl(path: string): string;
- export function normalizeUrl(path: LocationDescriptor): LocationDescriptor;
- export function normalizeUrl(path: LocationTarget, location?: Location): LocationTarget;
- export function normalizeUrl(path: LocationTarget, location?: Location): LocationTarget {
- if (!window.__initialData?.customerDomain) {
- return path;
- }
- let resolved: LocationDescriptor;
- if (typeof path === 'function') {
- if (!location) {
- throw new Error('Cannot resolve function URL without a location');
- }
- resolved = path(location);
- } else {
- resolved = path;
- }
- if (typeof resolved === 'string') {
- for (const patternData of NORMALIZE_PATTERNS) {
- resolved = resolved.replace(patternData[0], patternData[1]);
- if (resolved !== path) {
- return resolved;
- }
- }
- return resolved;
- }
- if (!resolved.pathname) {
- return resolved;
- }
- for (const patternData of NORMALIZE_PATTERNS) {
- resolved.pathname = resolved.pathname.replace(patternData[0], patternData[1]);
- if (resolved !== path) {
- return resolved;
- }
- }
- return resolved;
- }
- /**
- * withDomainRequired is a higher-order component (HOC) meant to be used with <Route /> components within
- * static/app/routes.tsx whose route paths do not contain the :orgId parameter.
- * For example:
- * <Route
- * path="/issues/(searches/:searchId/)"
- * component={withDomainRequired(errorHandler(IssueListContainer))}
- * / >
- *
- * withDomainRequired ensures that the route path is only accessed whenever a customer domain is used.
- * For example: orgslug.sentry.io
- *
- * The side-effect that this HOC provides is that it'll redirect the browser to sentryUrl (from window.__initialData.links)
- * whenever one of the following conditions are not satisfied:
- * - window.__initialData.customerDomain is present.
- * - window.__initialData.features contains organizations:customer-domains feature.
- *
- * If both conditions above are satisfied, then WrappedComponent will be rendered with orgId included in the route
- * params prop.
- *
- * Whenever https://orgslug.sentry.io/ is accessed in the browser, then both conditions above will be satisfied.
- */
- function withDomainRequired<P extends RouteComponentProps<{}, {}>>(
- WrappedComponent: RouteComponent
- ) {
- return function withDomainRequiredWrapper(props: P) {
- const {params} = props;
- const {features, customerDomain} = window.__initialData;
- const {sentryUrl} = window.__initialData.links;
- const hasCustomerDomain = (features as unknown as string[]).includes(
- 'organizations:customer-domains'
- );
- if (!customerDomain || !hasCustomerDomain) {
- // This route should only be accessed if a customer domain is used.
- // We redirect the user to the sentryUrl.
- const redirectPath = `${window.location.pathname}${window.location.search}${window.location.hash}`;
- const redirectURL = `${trimEnd(sentryUrl, '/')}/${trimStart(redirectPath, '/')}`;
- window.location.replace(redirectURL);
- return null;
- }
- const newParams = {
- ...params,
- orgId: customerDomain.subdomain,
- };
- return <WrappedComponent {...props} params={newParams} />;
- };
- }
- export default withDomainRequired;
|