1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { ofType, unionize, UnionOf } from "common/unionize";
6 import { GroupContentsResource, GroupContentsResourcePrefix } from 'services/groups-service/groups-service';
7 import { Dispatch } from 'redux';
8 import { change, initialize, untouch } from 'redux-form';
9 import { RootState } from 'store/store';
10 import { initUserProject, treePickerActions } from 'store/tree-picker/tree-picker-actions';
11 import { ServiceRepository } from 'services/services';
12 import { FilterBuilder } from "services/api/filter-builder";
13 import { ResourceKind, RESOURCE_UUID_REGEX, COLLECTION_PDH_REGEX } from 'models/resource';
14 import { SearchView } from 'store/search-bar/search-bar-reducer';
15 import { navigateTo, navigateToSearchResults } from 'store/navigation/navigation-action';
16 import { snackbarActions, SnackbarKind } from 'store/snackbar/snackbar-actions';
17 import { PropertyValue, SearchBarAdvancedFormData } from 'models/search-bar';
18 import { union } from "lodash";
19 import { getModifiedKeysValues } from "common/objects";
20 import { activateSearchBarProject } from "store/search-bar/search-bar-tree-actions";
21 import { Session } from "models/session";
22 import { searchResultsPanelActions } from "store/search-results-panel/search-results-panel-actions";
23 import { ListResults } from "services/common-service/common-service";
24 import * as parser from './search-query/arv-parser';
25 import { Keywords } from './search-query/arv-parser';
26 import { Vocabulary, getTagKeyLabel, getTagValueLabel } from "models/vocabulary";
28 export const searchBarActions = unionize({
29 SET_CURRENT_VIEW: ofType<string>(),
30 OPEN_SEARCH_VIEW: ofType<{}>(),
31 CLOSE_SEARCH_VIEW: ofType<{}>(),
32 SET_SEARCH_RESULTS: ofType<GroupContentsResource[]>(),
33 SET_SEARCH_VALUE: ofType<string>(),
34 SET_SAVED_QUERIES: ofType<SearchBarAdvancedFormData[]>(),
35 SET_RECENT_QUERIES: ofType<string[]>(),
36 UPDATE_SAVED_QUERY: ofType<SearchBarAdvancedFormData[]>(),
37 SET_SELECTED_ITEM: ofType<string>(),
38 MOVE_UP: ofType<{}>(),
39 MOVE_DOWN: ofType<{}>(),
40 SELECT_FIRST_ITEM: ofType<{}>()
43 export type SearchBarActions = UnionOf<typeof searchBarActions>;
45 export const SEARCH_BAR_ADVANCED_FORM_NAME = 'searchBarAdvancedFormName';
47 export const SEARCH_BAR_ADVANCED_FORM_PICKER_ID = 'searchBarAdvancedFormPickerId';
49 export const DEFAULT_SEARCH_DEBOUNCE = 1000;
51 export const goToView = (currentView: string) => searchBarActions.SET_CURRENT_VIEW(currentView);
53 export const saveRecentQuery = (query: string) =>
54 (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) =>
55 services.searchService.saveRecentQuery(query);
58 export const loadRecentQueries = () =>
59 (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) => {
60 const recentQueries = services.searchService.getRecentQueries();
61 dispatch(searchBarActions.SET_RECENT_QUERIES(recentQueries));
65 export const searchData = (searchValue: string) =>
66 async (dispatch: Dispatch, getState: () => RootState) => {
67 const currentView = getState().searchBar.currentView;
68 dispatch(searchResultsPanelActions.CLEAR());
69 dispatch(searchBarActions.SET_SEARCH_VALUE(searchValue));
70 if (searchValue.length > 0) {
71 dispatch<any>(searchGroups(searchValue, 5));
72 if (currentView === SearchView.BASIC) {
73 dispatch(searchBarActions.CLOSE_SEARCH_VIEW());
74 dispatch(navigateToSearchResults(searchValue));
79 export const searchAdvancedData = (data: SearchBarAdvancedFormData) =>
80 async (dispatch: Dispatch, getState: () => RootState) => {
81 dispatch<any>(saveQuery(data));
82 const searchValue = getState().searchBar.searchValue;
83 dispatch(searchResultsPanelActions.CLEAR());
84 dispatch(searchBarActions.SET_CURRENT_VIEW(SearchView.BASIC));
85 dispatch(searchBarActions.CLOSE_SEARCH_VIEW());
86 dispatch(navigateToSearchResults(searchValue));
89 export const setSearchValueFromAdvancedData = (data: SearchBarAdvancedFormData, prevData?: SearchBarAdvancedFormData) =>
90 (dispatch: Dispatch, getState: () => RootState) => {
91 const searchValue = getState().searchBar.searchValue;
92 const value = getQueryFromAdvancedData({
96 dispatch(searchBarActions.SET_SEARCH_VALUE(value));
99 export const setAdvancedDataFromSearchValue = (search: string, vocabulary: Vocabulary) =>
100 async (dispatch: Dispatch) => {
101 const data = getAdvancedDataFromQuery(search, vocabulary);
102 dispatch<any>(initialize(SEARCH_BAR_ADVANCED_FORM_NAME, data));
103 if (data.projectUuid) {
104 await dispatch<any>(activateSearchBarProject(data.projectUuid));
105 dispatch(treePickerActions.ACTIVATE_TREE_PICKER_NODE({ pickerId: SEARCH_BAR_ADVANCED_FORM_PICKER_ID, id: data.projectUuid }));
109 const saveQuery = (data: SearchBarAdvancedFormData) =>
110 (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) => {
111 const savedQueries = services.searchService.getSavedQueries();
112 if (data.saveQuery && data.queryName) {
113 const filteredQuery = savedQueries.find(query => query.queryName === data.queryName);
114 data.searchValue = getState().searchBar.searchValue;
116 services.searchService.editSavedQueries(data);
117 dispatch(searchBarActions.UPDATE_SAVED_QUERY(savedQueries));
118 dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Query has been successfully updated', hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
120 services.searchService.saveQuery(data);
121 dispatch(searchBarActions.SET_SAVED_QUERIES(savedQueries));
122 dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Query has been successfully saved', hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
127 export const deleteSavedQuery = (id: number) =>
128 (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) => {
129 services.searchService.deleteSavedQuery(id);
130 const savedSearchQueries = services.searchService.getSavedQueries();
131 dispatch(searchBarActions.SET_SAVED_QUERIES(savedSearchQueries));
132 return savedSearchQueries || [];
135 export const editSavedQuery = (data: SearchBarAdvancedFormData) =>
136 (dispatch: Dispatch<any>) => {
137 dispatch(searchBarActions.SET_CURRENT_VIEW(SearchView.ADVANCED));
138 dispatch(searchBarActions.SET_SEARCH_VALUE(getQueryFromAdvancedData(data)));
139 dispatch<any>(initialize(SEARCH_BAR_ADVANCED_FORM_NAME, data));
142 export const openSearchView = () =>
143 (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) => {
144 const savedSearchQueries = services.searchService.getSavedQueries();
145 dispatch(searchBarActions.SET_SAVED_QUERIES(savedSearchQueries));
146 dispatch(loadRecentQueries());
147 dispatch(searchBarActions.OPEN_SEARCH_VIEW());
148 dispatch(searchBarActions.SELECT_FIRST_ITEM());
151 export const closeSearchView = () =>
152 (dispatch: Dispatch<any>) => {
153 dispatch(searchBarActions.SET_SELECTED_ITEM(''));
154 dispatch(searchBarActions.CLOSE_SEARCH_VIEW());
157 export const closeAdvanceView = () =>
158 (dispatch: Dispatch<any>) => {
159 dispatch(searchBarActions.SET_SEARCH_VALUE(''));
160 dispatch(treePickerActions.DEACTIVATE_TREE_PICKER_NODE({ pickerId: SEARCH_BAR_ADVANCED_FORM_PICKER_ID }));
161 dispatch(searchBarActions.SET_CURRENT_VIEW(SearchView.BASIC));
164 export const navigateToItem = (uuid: string) =>
165 (dispatch: Dispatch<any>) => {
166 dispatch(searchBarActions.SET_SELECTED_ITEM(''));
167 dispatch(searchBarActions.CLOSE_SEARCH_VIEW());
168 dispatch(navigateTo(uuid));
171 export const changeData = (searchValue: string) =>
172 (dispatch: Dispatch, getState: () => RootState) => {
173 dispatch(searchBarActions.SET_SEARCH_VALUE(searchValue));
174 const currentView = getState().searchBar.currentView;
175 const searchValuePresent = searchValue.length > 0;
177 if (currentView === SearchView.ADVANCED) {
178 dispatch(searchBarActions.SET_CURRENT_VIEW(SearchView.AUTOCOMPLETE));
179 } else if (searchValuePresent) {
180 dispatch(searchBarActions.SET_CURRENT_VIEW(SearchView.AUTOCOMPLETE));
181 dispatch(searchBarActions.SET_SELECTED_ITEM(searchValue));
183 dispatch(searchBarActions.SET_CURRENT_VIEW(SearchView.BASIC));
184 dispatch(searchBarActions.SET_SEARCH_RESULTS([]));
185 dispatch(searchBarActions.SELECT_FIRST_ITEM());
189 export const submitData = (event: React.FormEvent<HTMLFormElement>) =>
190 (dispatch: Dispatch, getState: () => RootState) => {
191 event.preventDefault();
192 const searchValue = getState().searchBar.searchValue;
193 dispatch<any>(saveRecentQuery(searchValue));
194 dispatch<any>(loadRecentQueries());
195 dispatch(searchBarActions.CLOSE_SEARCH_VIEW());
196 if (RESOURCE_UUID_REGEX.exec(searchValue) || COLLECTION_PDH_REGEX.exec(searchValue)) {
197 dispatch<any>(navigateTo(searchValue));
199 dispatch(searchBarActions.SET_SEARCH_VALUE(searchValue));
200 dispatch(searchBarActions.SET_SEARCH_RESULTS([]));
201 dispatch(searchResultsPanelActions.CLEAR());
202 dispatch(navigateToSearchResults(searchValue));
207 const searchGroups = (searchValue: string, limit: number) =>
208 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
209 const currentView = getState().searchBar.currentView;
211 if (searchValue || currentView === SearchView.ADVANCED) {
212 const { cluster: clusterId } = getAdvancedDataFromQuery(searchValue);
213 const sessions = getSearchSessions(clusterId, getState().auth.sessions);
214 const lists: ListResults<GroupContentsResource>[] = await Promise.all(sessions.map(session => {
215 const filters = queryToFilters(searchValue, session.apiRevision);
216 return services.groupsService.contents('', {
223 const items = lists.reduce((items, list) => items.concat(list.items), [] as GroupContentsResource[]);
224 dispatch(searchBarActions.SET_SEARCH_RESULTS(items));
228 const buildQueryFromKeyMap = (data: any, keyMap: string[][]) => {
229 let value = data.searchValue;
231 const addRem = (field: string, key: string) => {
233 // Remove previous search expression.
234 if (data.hasOwnProperty(key)) {
237 pattern = `${field.replace(':', '\\:\\s*')}\\s*`;
238 } else if (key.startsWith('prop-')) {
239 // On properties, only remove key:value duplicates, allowing
240 // multiple properties with the same key.
241 const oldValue = key.slice(5).split(':')[1];
242 pattern = `${field.replace(':', '\\:\\s*')}\\:\\s*${oldValue}\\s*`;
244 pattern = `${field.replace(':', '\\:\\s*')}\\:\\s*[\\w|\\#|\\-|\\/]*\\s*`;
246 value = value.replace(new RegExp(pattern), '');
248 // Re-add it with the current search value.
250 const nv = v === true
253 // Always append to the end to keep user-entered text at the start.
254 value = value + ' ' + nv;
257 keyMap.forEach(km => addRem(km[0], km[1]));
261 export const getQueryFromAdvancedData = (data: SearchBarAdvancedFormData, prevData?: SearchBarAdvancedFormData) => {
264 const flatData = (data: SearchBarAdvancedFormData) => {
266 searchValue: data.searchValue,
268 cluster: data.cluster,
269 projectUuid: data.projectUuid,
270 inTrash: data.inTrash,
271 pastVersions: data.pastVersions,
272 dateFrom: data.dateFrom,
275 (data.properties || []).forEach(p =>
276 fo[`prop-"${p.keyID || p.key}":"${p.valueID || p.value}"`] = `"${p.valueID || p.value}"`
283 ['cluster', 'cluster'],
284 ['project', 'projectUuid'],
285 [`is:${parser.States.TRASHED}`, 'inTrash'],
286 [`is:${parser.States.PAST_VERSION}`, 'pastVersions'],
287 ['from', 'dateFrom'],
290 union(data.properties, prevData ? prevData.properties : [])
291 .forEach(p => keyMap.push(
292 [`has:"${p.keyID || p.key}"`, `prop-"${p.keyID || p.key}":"${p.valueID || p.value}"`]
295 const modified = getModifiedKeysValues(flatData(data), prevData ? flatData(prevData):{});
296 value = buildQueryFromKeyMap(
297 {searchValue: data.searchValue, ...modified} as SearchBarAdvancedFormData, keyMap);
299 value = value.trim();
303 export const getAdvancedDataFromQuery = (query: string, vocabulary?: Vocabulary): SearchBarAdvancedFormData => {
304 const { tokens, searchString } = parser.parseSearchQuery(query);
305 const getValue = parser.getValue(tokens);
307 searchValue: searchString,
308 type: getValue(Keywords.TYPE) as ResourceKind,
309 cluster: getValue(Keywords.CLUSTER),
310 projectUuid: getValue(Keywords.PROJECT),
311 inTrash: parser.isTrashed(tokens),
312 pastVersions: parser.isPastVersion(tokens),
313 dateFrom: getValue(Keywords.FROM) || '',
314 dateTo: getValue(Keywords.TO) || '',
315 properties: vocabulary
316 ? parser.getProperties(tokens).map(
320 key: getTagKeyLabel(p.key, vocabulary),
322 value: getTagValueLabel(p.key, p.value, vocabulary),
325 : parser.getProperties(tokens),
331 export const getSearchSessions = (clusterId: string | undefined, sessions: Session[]): Session[] => {
332 return sessions.filter(s => s.loggedIn && (!clusterId || s.clusterId === clusterId));
335 export const queryToFilters = (query: string, apiRevision: number) => {
336 const data = getAdvancedDataFromQuery(query);
337 const filter = new FilterBuilder();
338 const resourceKind = data.type;
340 if (data.searchValue) {
341 filter.addFullTextSearch(data.searchValue);
344 if (data.projectUuid) {
345 filter.addEqual('owner_uuid', data.projectUuid);
349 filter.addGte('modified_at', buildDateFilter(data.dateFrom));
353 filter.addLte('modified_at', buildDateFilter(data.dateTo));
356 data.properties.forEach(p => {
358 if (apiRevision < 20200212) {
360 .addEqual(`properties.${p.key}`, p.value, GroupContentsResourcePrefix.PROJECT)
361 .addEqual(`properties.${p.key}`, p.value, GroupContentsResourcePrefix.COLLECTION)
362 .addEqual(`properties.${p.key}`, p.value, GroupContentsResourcePrefix.PROCESS);
365 .addContains(`properties.${p.key}`, p.value, GroupContentsResourcePrefix.PROJECT)
366 .addContains(`properties.${p.key}`, p.value, GroupContentsResourcePrefix.COLLECTION)
367 .addContains(`properties.${p.key}`, p.value, GroupContentsResourcePrefix.PROCESS);
370 filter.addExists(p.key);
374 .addIsA("uuid", buildUuidFilter(resourceKind))
378 const buildUuidFilter = (type?: ResourceKind): ResourceKind[] => {
379 return type ? [type] : [ResourceKind.PROJECT, ResourceKind.COLLECTION, ResourceKind.PROCESS];
382 const buildDateFilter = (date?: string): string => {
383 return date ? date : '';
386 export const initAdvancedFormProjectsTree = () =>
387 (dispatch: Dispatch) => {
388 dispatch<any>(initUserProject(SEARCH_BAR_ADVANCED_FORM_PICKER_ID));
391 export const changeAdvancedFormProperty = (propertyField: string, value: PropertyValue[] | string = '') =>
392 (dispatch: Dispatch) => {
393 dispatch(change(SEARCH_BAR_ADVANCED_FORM_NAME, propertyField, value));
396 export const resetAdvancedFormProperty = (propertyField: string) =>
397 (dispatch: Dispatch) => {
398 dispatch(change(SEARCH_BAR_ADVANCED_FORM_NAME, propertyField, null));
399 dispatch(untouch(SEARCH_BAR_ADVANCED_FORM_NAME, propertyField));
402 export const moveUp = () =>
403 (dispatch: Dispatch) => {
404 dispatch(searchBarActions.MOVE_UP());
407 export const moveDown = () =>
408 (dispatch: Dispatch) => {
409 dispatch(searchBarActions.MOVE_DOWN());