aboutsummaryrefslogtreecommitdiff
path: root/src/shared/commands/parsers.js
blob: af51338ff6704c4d6c9972b175fb4c74277ec944 (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
48
49
50
51
52
53
54
55
56
57
58
59
const normalizeUrl = (args, searchConfig) => {
  let concat = args.join(' ');
  try {
    return new URL(concat).href;
  } catch (e) {
    if (concat.includes('.') && !concat.includes(' ')) {
      return 'http://' + concat;
    }
    let query = concat;
    let template = searchConfig.engines[
      searchConfig.default
    ];
    for (let key in searchConfig.engines) {
      if (args[0] === key) {
        query = args.slice(1).join(' ');
        template = searchConfig.engines[key];
      }
    }
    return template.replace('{}', encodeURIComponent(query));
  }
};

const mustNumber = (v) => {
  let num = Number(v);
  if (isNaN(num)) {
    throw new Error('Not number: ' + v);
  }
  return num;
};

const parseSetOption = (word, types) => {
  let [key, value] = word.split('=');
  if (!value) {
    value = !key.startsWith('no');
    key = value ? key : key.slice(2);
  }
  let type = types[key];
  if (!type) {
    throw new Error('Unknown property: ' + key);
  }
  if (type === 'boolean' && typeof value !== 'boolean' ||
       type !== 'boolean' && typeof value === 'boolean') {
    throw new Error('Invalid argument: ' + word);
  }

  switch (type) {
  case 'string': return [key, value];
  case 'number': return [key, mustNumber(value)];
  case 'boolean': return [key, value];
  }
};

const parseCommandLine = (line) => {
  let words = line.trim().split(/ +/);
  let name = words.shift();
  return [name, words];
};

export { normalizeUrl, parseCommandLine, parseSetOption };