15672: Merge branch 'master' into 15672-subprocess-list-v2
[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 addDistinct(field: string, value?: string | boolean | null, resourcePrefix?: string) {
17         return this.addCondition(field, "!=", value, "", "", resourcePrefix);
18     }
19
20     public addLike(field: string, value?: string, resourcePrefix?: string) {
21         return this.addCondition(field, "like", value, "%", "%", resourcePrefix);
22     }
23
24     public addILike(field: string, value?: string, resourcePrefix?: string) {
25         return this.addCondition(field, "ilike", value, "%", "%", resourcePrefix);
26     }
27
28     public addIsA(field: string, value?: string | string[], resourcePrefix?: string) {
29         return this.addCondition(field, "is_a", value, "", "", resourcePrefix);
30     }
31
32     public addIn(field: string, value?: string | string[], resourcePrefix?: string) {
33         return this.addCondition(field, "in", value, "", "", resourcePrefix);
34     }
35
36     public addNotIn(field: string, value?: string | string[], resourcePrefix?: string) {
37         return this.addCondition(field, "not in", value, "", "", resourcePrefix);
38     }
39
40     public addGt(field: string, value?: string, resourcePrefix?: string) {
41         return this.addCondition(field, ">", value, "", "", resourcePrefix);
42     }
43
44     public addGte(field: string, value?: string, resourcePrefix?: string) {
45         return this.addCondition(field, ">=", value, "", "", resourcePrefix);
46     }
47
48     public addLt(field: string, value?: string, resourcePrefix?: string) {
49         return this.addCondition(field, "<", value, "", "", resourcePrefix);
50     }
51
52     public addLte(field: string, value?: string, resourcePrefix?: string) {
53         return this.addCondition(field, "<=", value, "", "", resourcePrefix);
54     }
55
56     public addExists(value?: string, resourcePrefix?: string) {
57         return this.addCondition("properties", "exists", value, "", "", resourcePrefix);
58     }
59
60     public addFullTextSearch(value: string) {
61         const terms = value.trim().split(/(\s+)/);
62         terms.forEach(term => {
63             if (term !== " ") {
64                 this.addCondition("any", "ilike", term, "%", "%");
65             }
66         });
67         return this;
68     }
69
70     public getFilters() {
71         return this.filters;
72     }
73
74     private addCondition(field: string, cond: string, value?: string | string[] | boolean | null, prefix: string = "", postfix: string = "", resourcePrefix?: string) {
75         if (value !== undefined) {
76             if (typeof value === "string") {
77                 value = `"${prefix}${value}${postfix}"`;
78             } else if (Array.isArray(value)) {
79                 value = `["${value.join(`","`)}"]`;
80             } else if (value !== null) {
81                 value = value ? "true" : "false";
82             }
83
84             const resPrefix = resourcePrefix
85                 ? resourcePrefix + "."
86                 : "";
87
88             this.filters += `${this.filters ? "," : ""}["${resPrefix}${field}","${cond}",${value}]`;
89         }
90         return this;
91     }
92 }