https://github.com/angular/angular
Raw File
Tip revision: 49d29e13371186909c0b1f279e724433dbd76049 authored by Jessica Janiuk on 22 September 2021, 19:09:40 UTC
release: cut the v13.0.0-next.7 release (#43539)
Tip revision: 49d29e1
FirebaseRedirect.ts
import * as XRegExp from 'xregexp';
import { FirebaseRedirectConfig } from './FirebaseRedirector';
import { FirebaseRedirectSource } from './FirebaseRedirectSource';

export class FirebaseRedirect {
  source: FirebaseRedirectSource;
  destination: string;

  constructor(readonly rawConfig: FirebaseRedirectConfig) {
    this.source = (rawConfig.regex === undefined) ?
      FirebaseRedirectSource.fromGlobPattern(rawConfig.source) :
      FirebaseRedirectSource.fromRegexPattern(rawConfig.regex);
    this.destination = rawConfig.destination;
  }

  replace(url: string): string | undefined {
    const match = this.source.match(url);

    if (!match) {
      return undefined;
    }

    const namedReplacers = this.source.namedGroups.map<[RegExp, string]>((name) => [
      XRegExp(`:${name}`, 'g'),
      match[name],
    ]);
    const restReplacers = this.source.restNamedGroups.map<[RegExp, string]>((name) => [
      XRegExp(`:${name}\\*`, 'g'),
      match[name],
    ]);
    return XRegExp.replaceEach(this.destination, [...namedReplacers, ...restReplacers]);
  }
}
back to top