Merge branch '15672-filters-translation-fix'
[arvados-workbench2.git] / src / services / api / filter-builder.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 export function joinFilters(filters0?: string, filters1?: string) {
6     return [filters0, filters1].filter(s => s).join(",");
7 }
8
9 export class FilterBuilder {
10     constructor(private filters = "") { }
11
12     public addEqual(field: string, value?: string | boolean | null, resourcePrefix?: string) {
13         return this.addCondition(field, "=", value, "", "", resourcePrefix);
14     }
15
16     public addLike(field: string, value?: string, resourcePrefix?: string) {
17         return this.addCondition(field, "like", value, "%", "%", resourcePrefix);
18     }
19
20     public addILike(field: string, value?: string, resourcePrefix?: string) {
21         return this.addCondition(field, "ilike", value, "%", "%", resourcePrefix);
22     }
23
24     public addIsA(field: string, value?: string | string[], resourcePrefix?: string) {
25         return this.addCondition(field, "is_a", value, "", "", resourcePrefix);
26     }
27
28     public addIn(field: string, value?: string | string[], resourcePrefix?: string) {
29         return this.addCondition(field, "in", value, "", "", resourcePrefix);
30     }
31
32     public addNotIn(field: string, value?: string | string[], resourcePrefix?: string) {
33         return this.addCondition(field, "not in", value, "", "", resourcePrefix);
34     }
35
36     public addGt(field: string, value?: string, resourcePrefix?: string) {
37         return this.addCondition(field, ">", value, "", "", resourcePrefix);
38     }
39
40     public addGte(field: string, value?: string, resourcePrefix?: string) {
41         return this.addCondition(field, ">=", value, "", "", resourcePrefix);
42     }
43
44     public addLt(field: string, value?: string, resourcePrefix?: string) {
45         return this.addCondition(field, "<", value, "", "", resourcePrefix);
46     }
47
48     public addLte(field: string, value?: string, resourcePrefix?: string) {
49         return this.addCondition(field, "<=", value, "", "", resourcePrefix);
50     }
51
52     public addExists(value?: string, resourcePrefix?: string) {
53         return this.addCondition("properties", "exists", value, "", "", resourcePrefix);
54     }
55
56     public addFullTextSearch(value: string) {
57         const terms = value.trim().split(/(\s+)/);
58         terms.forEach(term => {
59             if (term !== " ") {
60                 this.addCondition("any", "ilike", term, "%", "%");
61             }
62         });
63         return this;
64     }
65
66     public getFilters() {
67         return this.filters;
68     }
69
70     private addCondition(field: string, cond: string, value?: string | string[] | boolean | null, prefix: string = "", postfix: string = "", resourcePrefix?: string) {
71         if (value !== undefined) {
72             if (typeof value === "string") {
73                 value = `"${prefix}${value}${postfix}"`;
74             } else if (Array.isArray(value)) {
75                 value = `["${value.join(`","`)}"]`;
76             } else if (value !== null) {
77                 value = value ? "true" : "false";
78             }
79
80             const resPrefix = resourcePrefix
81                 ? resourcePrefix + "."
82                 : "";
83
84             this.filters += `${this.filters ? "," : ""}["${resPrefix}${field}","${cond}",${value}]`;
85         }
86         return this;
87     }
88 }