aboutsummaryrefslogtreecommitdiff
path: root/src/shared/urls.js
blob: f7e917d89916e71b6ad3cbac5c0ccb8d94eefe5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
const trimStart = (str) => {
  // NOTE String.trimStart is available on Firefox 61
  return str.replace(/^\s+/, '');
};

const SUPPORTED_PROTOCOLS = ['http:', 'https:', 'ftp:', 'mailto:', 'about:'];

const searchUrl = (keywords, searchSettings) => {
  try {
    let u = new URL(keywords);
    if (SUPPORTED_PROTOCOLS.includes(u.protocol.toLowerCase())) {
      return u.href;
    }
  } catch (e) {
    // fallthrough
  }
  if (keywords.includes('.') && !keywords.includes(' ')) {
    return 'http://' + keywords;
  }
  let template = searchSettings.engines[searchSettings.default];
  let query = keywords;

  let first = trimStart(keywords).split(' ')[0];
  if (Object.keys(searchSettings.engines).includes(first)) {
    template = searchSettings.engines[first];
    query = trimStart(trimStart(keywords).slice(first.length));
  }
  return template.replace('{}', encodeURIComponent(query));
};

const normalizeUrl = (url) => {
  try {
    let u = new URL(url);
    if (SUPPORTED_PROTOCOLS.includes(u.protocol.toLowerCase())) {
      return u.href;
    }
  } catch (e) {
    // fallthrough
  }
  return 'http://' + url;
};

const homepageUrls = (value) => {
  return value.split('|').map(normalizeUrl);
};

export { searchUrl, normalizeUrl, homepageUrls };