Skip to content

Commit be26f75

Browse files
abstract Sets index name and type to env vars
bonus: remove broken husky
1 parent d935978 commit be26f75

File tree

13 files changed

+105
-117
lines changed

13 files changed

+105
-117
lines changed

modules/components/package.json

-5
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,5 @@
137137
"testEnvironmentOptions": {
138138
"url": "http://localhost/"
139139
}
140-
},
141-
"husky": {
142-
"hooks": {
143-
"pre-commit": "pretty-quick --staged"
144-
}
145140
}
146141
}

modules/server/package.json

-5
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,5 @@
9797
]
9898
},
9999
"verbose": true
100-
},
101-
"husky": {
102-
"hooks": {
103-
"pre-commit": "pretty-quick --staged"
104-
}
105100
}
106101
}

modules/server/src/app.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
import express, { json, urlencoded } from 'express';
21
import cors from 'cors';
2+
import express, { json, urlencoded } from 'express';
33

44
import { ENV_CONFIG } from './config';
5-
import Arranger from './server';
5+
import arranger from './server';
66

77
const app = express();
88
app.use(cors());
99

1010
export default async function (rootPath = '') {
1111
global.__basedir = rootPath;
1212

13-
return Arranger({ enableAdmin: ENV_CONFIG.ENABLE_ADMIN }).then((router) => {
13+
return arranger({ enableAdmin: ENV_CONFIG.ENABLE_ADMIN }).then((router) => {
1414
app.use(router);
1515

1616
app.use(urlencoded({ extended: false, limit: '50mb' }));

modules/server/src/config/constants.ts

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ export const DOWNLOAD_STREAM_BUFFER_SIZE =
1010
stringToNumber(process.env.DOWNLOAD_STREAM_BUFFER_SIZE) || 2000;
1111
export const ENABLE_ADMIN = stringToBool(process.env.ENABLE_ADMIN);
1212
export const ENABLE_LOGS = stringToBool(process.env.ENABLE_LOGS);
13+
export const ES_ARRANGER_SET_INDEX = process.env.ES_ARRANGER_SET_INDEX || 'arranger-sets';
14+
export const ES_ARRANGER_SET_TYPE = process.env.ES_ARRANGER_SET_TYPE || 'arranger-sets';
1315
export const ES_HOST = process.env.ES_HOST || 'http://127.0.0.1:9200';
1416
export const ES_INDEX = process.env.ES_INDEX || '';
1517
export const ES_LOG = process.env.ES_LOG?.split?.(',') || 'error';

modules/server/src/config/utils/index.ts

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,17 @@ import { Client } from '@elastic/elasticsearch';
22

33
import { ENV_CONFIG } from '@/config/';
44
import { ConfigObject, ConfigProperties } from '@/config/types';
5-
import { CONSTANTS } from '@/middleware';
65
import { setsMapping } from '@/schema';
76

87
export const initializeSets = async ({ esClient }: { esClient: Client }): Promise<void> => {
98
ENV_CONFIG.DEBUG_MODE &&
10-
console.log(`Attempting to create Sets index "${CONSTANTS.ES_ARRANGER_SET_INDEX}"...`);
9+
console.log(`Attempting to create Sets index "${ENV_CONFIG.ES_ARRANGER_SET_INDEX}"...`);
1110

1211
if (
13-
(await esClient.indices.exists({ index: CONSTANTS.ES_ARRANGER_SET_INDEX }))?.statusCode === 404
12+
(await esClient.indices.exists({ index: ENV_CONFIG.ES_ARRANGER_SET_INDEX }))?.statusCode === 404
1413
) {
1514
const setsIndex = await esClient.indices.create({
16-
index: CONSTANTS.ES_ARRANGER_SET_INDEX,
15+
index: ENV_CONFIG.ES_ARRANGER_SET_INDEX,
1716
body: {
1817
mappings: {
1918
properties: setsMapping,
@@ -26,7 +25,7 @@ export const initializeSets = async ({ esClient }: { esClient: Client }): Promis
2625
return;
2726
}
2827

29-
throw new Error(`Problem creating ${CONSTANTS.ES_ARRANGER_SET_INDEX} index`);
28+
throw new Error(`Problem creating ${ENV_CONFIG.ES_ARRANGER_SET_INDEX} index`);
3029
} else {
3130
ENV_CONFIG.DEBUG_MODE && console.log(` This index already exists. Moving on!\n`);
3231
}

modules/server/src/mapping/hackyTemporaryEsSetResolution.js

+47-46
Original file line numberDiff line numberDiff line change
@@ -6,60 +6,61 @@
66

77
import { flattenDeep, isArray, zipObject } from 'lodash';
88

9-
import { CONSTANTS } from '../middleware';
9+
import { ENV_CONFIG } from '@/config';
10+
1011
import esSearch from './utils/esSearch';
1112

1213
const resolveSetIdsFromEs = (esClient) => (setId) =>
13-
esSearch(esClient)({
14-
index: CONSTANTS.ES_ARRANGER_SET_INDEX,
15-
body: {
16-
query: {
17-
bool: {
18-
must: { match: { setId } },
19-
},
20-
},
21-
},
22-
}).then(({ hits: { hits } }) => flattenDeep(hits.map(({ _source: { ids } }) => ids)));
14+
esSearch(esClient)({
15+
index: ENV_CONFIG.ES_ARRANGER_SET_INDEX,
16+
body: {
17+
query: {
18+
bool: {
19+
must: { match: { setId } },
20+
},
21+
},
22+
},
23+
}).then(({ hits: { hits } }) => flattenDeep(hits.map(({ _source: { ids } }) => ids)));
2324

2425
const getSetIdsFromSqon = ({ content } = {}, collection = []) =>
25-
(isArray(content)
26-
? flattenDeep(
27-
content.reduce(
28-
(acc, subSqon) => [...acc, ...getSetIdsFromSqon(subSqon, collection)],
29-
collection,
30-
),
31-
)
32-
: isArray(content?.value)
33-
? content?.value.filter((value) => String(value).indexOf('set_id:') === 0)
34-
: [...(String(content?.value).indexOf?.('set_id:') === 0 ? [content.value] : [])]
35-
).map((setId) => setId.replace('set_id:', ''));
26+
(isArray(content)
27+
? flattenDeep(
28+
content.reduce(
29+
(acc, subSqon) => [...acc, ...getSetIdsFromSqon(subSqon, collection)],
30+
collection,
31+
),
32+
)
33+
: isArray(content?.value)
34+
? content?.value.filter((value) => String(value).indexOf('set_id:') === 0)
35+
: [...(String(content?.value).indexOf?.('set_id:') === 0 ? [content.value] : [])]
36+
).map((setId) => setId.replace('set_id:', ''));
3637

3738
const injectIdsIntoSqon = ({ sqon, setIdsToValueMap }) => ({
38-
...sqon,
39-
content: sqon.content.map((op) => ({
40-
...op,
41-
content: !isArray(op.content)
42-
? {
43-
...op.content,
44-
value: isArray(op.content.value)
45-
? flattenDeep(
46-
op.content.value.map((value) => setIdsToValueMap[value] || op.content.value),
47-
)
48-
: setIdsToValueMap[op.content.value] || op.content.value,
49-
}
50-
: injectIdsIntoSqon({ sqon: op, setIdsToValueMap }).content,
51-
})),
39+
...sqon,
40+
content: sqon.content.map((op) => ({
41+
...op,
42+
content: !isArray(op.content)
43+
? {
44+
...op.content,
45+
value: isArray(op.content.value)
46+
? flattenDeep(
47+
op.content.value.map((value) => setIdsToValueMap[value] || op.content.value),
48+
)
49+
: setIdsToValueMap[op.content.value] || op.content.value,
50+
}
51+
: injectIdsIntoSqon({ sqon: op, setIdsToValueMap }).content,
52+
})),
5253
});
5354

5455
export const resolveSetsInSqon = ({ sqon, esClient }) => {
55-
const setIds = getSetIdsFromSqon(sqon || {});
56-
return setIds.length
57-
? Promise.all(setIds.map(resolveSetIdsFromEs(esClient))).then((searchResult) => {
58-
const setIdsToValueMap = zipObject(
59-
setIds.map((id) => `set_id:${id}`),
60-
searchResult,
61-
);
62-
return injectIdsIntoSqon({ sqon, setIdsToValueMap });
63-
})
64-
: sqon;
56+
const setIds = getSetIdsFromSqon(sqon || {});
57+
return setIds.length
58+
? Promise.all(setIds.map(resolveSetIdsFromEs(esClient))).then((searchResult) => {
59+
const setIdsToValueMap = zipObject(
60+
setIds.map((id) => `set_id:${id}`),
61+
searchResult,
62+
);
63+
return injectIdsIntoSqon({ sqon, setIdsToValueMap });
64+
})
65+
: sqon;
6566
};

modules/server/src/mapping/resolveSets.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import { get, isEmpty, uniq } from 'lodash';
22
import { v4 as uuid } from 'uuid';
33

4-
import { CONSTANTS, buildQuery } from '../middleware';
4+
import { ENV_CONFIG } from '@/config';
5+
import { buildQuery } from '@/middleware';
56

6-
import esSearch from './utils/esSearch';
77
import compileFilter from './utils/compileFilter';
8+
import esSearch from './utils/esSearch';
89

910
const retrieveSetIds = async ({
1011
esClient,
@@ -85,7 +86,7 @@ export const saveSet =
8586
};
8687

8788
await esClient.index({
88-
index: CONSTANTS.ES_ARRANGER_SET_INDEX,
89+
index: ENV_CONFIG.ES_ARRANGER_SET_INDEX,
8990
id: body.setId,
9091
refresh: refresh.toLowerCase(),
9192
body,

modules/server/src/middleware/__tests__/buildQuery/buildQuerySetId.test.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import buildQuery from '../../buildQuery';
2-
import { ES_ARRANGER_SET_INDEX, ES_ARRANGER_SET_TYPE } from '../../constants';
1+
import { ENV_CONFIG } from '@/config/';
2+
import buildQuery from '@/middleware/buildQuery';
33

44
test('1.buildQuery sets', () => {
55
const nestedFieldNames = ['files', 'files.foo'];
@@ -16,8 +16,8 @@ test('1.buildQuery sets', () => {
1616
output: {
1717
terms: {
1818
case_id: {
19-
index: ES_ARRANGER_SET_INDEX,
20-
type: ES_ARRANGER_SET_TYPE,
19+
index: ENV_CONFIG.ES_ARRANGER_SET_INDEX,
20+
type: ENV_CONFIG.ES_ARRANGER_SET_TYPE,
2121
id: 'aaa',
2222
path: 'ids',
2323
},
@@ -36,8 +36,8 @@ test('1.buildQuery sets', () => {
3636
output: {
3737
terms: {
3838
'ssms.ssm_id': {
39-
index: ES_ARRANGER_SET_INDEX,
40-
type: ES_ARRANGER_SET_TYPE,
39+
index: ENV_CONFIG.ES_ARRANGER_SET_INDEX,
40+
type: ENV_CONFIG.ES_ARRANGER_SET_TYPE,
4141
id: 'aaa',
4242
path: 'ids',
4343
},
@@ -62,8 +62,8 @@ test('1.buildQuery sets', () => {
6262
{
6363
terms: {
6464
'files.file_id': {
65-
index: ES_ARRANGER_SET_INDEX,
66-
type: ES_ARRANGER_SET_TYPE,
65+
index: ENV_CONFIG.ES_ARRANGER_SET_INDEX,
66+
type: ENV_CONFIG.ES_ARRANGER_SET_TYPE,
6767
id: 'aaa',
6868
path: 'ids',
6969
},

modules/server/src/middleware/buildQuery/index.js

+22-22
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
11
import _ from 'lodash';
22

3+
import { ENV_CONFIG } from '@/config/';
4+
35
import {
6+
ALL_OP,
7+
AND_OP,
8+
BETWEEN_OP,
9+
ES_BOOL,
10+
ES_MUST,
11+
ES_MUST_NOT,
412
ES_NESTED,
513
ES_QUERY,
6-
ES_BOOL,
7-
BETWEEN_OP,
8-
GT_OP,
14+
ES_SHOULD,
15+
ES_WILDCARD,
16+
FILTER_OP,
917
GTE_OP,
10-
LT_OP,
11-
LTE_OP,
18+
GT_OP,
1219
IN_OP,
20+
LTE_OP,
21+
LT_OP,
22+
MISSING,
1323
NOT_IN_OP,
14-
SOME_NOT_IN_OP,
15-
ES_MUST,
16-
ES_MUST_NOT,
17-
ES_ARRANGER_SET_INDEX,
18-
ES_ARRANGER_SET_TYPE,
19-
OR_OP,
20-
AND_OP,
21-
FILTER_OP,
2224
NOT_OP,
25+
OR_OP,
2326
REGEX,
2427
SET_ID,
25-
MISSING,
26-
ALL_OP,
27-
ES_SHOULD,
28-
ES_WILDCARD,
28+
SOME_NOT_IN_OP,
2929
} from '../constants';
3030
import {
3131
isNested,
32+
mergePath,
3233
readPath,
34+
toEsRangeValue,
35+
wrapMust,
3336
wrapMustNot,
3437
wrapNested,
35-
mergePath,
3638
wrapShould,
37-
wrapMust,
38-
toEsRangeValue,
3939
} from '../utils/esFilter';
4040

4141
import normalizeFilters from './normalizeFilters';
@@ -217,8 +217,8 @@ function getSetFilter({ nestedFieldNames, filter, filter: { content, op } }) {
217217
terms: {
218218
boost: 0,
219219
[content.fieldName]: {
220-
index: ES_ARRANGER_SET_INDEX,
221-
type: ES_ARRANGER_SET_TYPE,
220+
index: ENV_CONFIG.ES_ARRANGER_SET_INDEX,
221+
type: ENV_CONFIG.ES_ARRANGER_SET_TYPE,
222222
id: _.flatMap([content.value])[0].replace('set_id:', ''),
223223
path: 'ids',
224224
},

modules/server/src/middleware/constants.js

+6-8
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ export const SET_ID = 'set_id:';
2020

2121
// sqon op aliases
2222
export const OP_ALIASES = {
23-
'>': GT_OP,
24-
'<': LT_OP,
25-
'>=': GTE_OP,
26-
'<=': LTE_OP,
27-
'=': IN_OP,
28-
'!=': NOT_IN_OP,
23+
'>': GT_OP,
24+
'<': LT_OP,
25+
'>=': GTE_OP,
26+
'<=': LTE_OP,
27+
'=': IN_OP,
28+
'!=': NOT_IN_OP,
2929
};
3030
export const DATE_FORMAT = 'yyyy-MM-dd';
3131

@@ -47,8 +47,6 @@ export const ES_TYPE = 'type';
4747
export const ES_PHRASE_PREFIX = 'phrase_prefix';
4848
export const ES_DATE_FORMAT = 'yyyy-MM-dd HH:mm:ss.SSSSSS';
4949
export const ES_MAX_LONG = `-9223372036854775808`;
50-
export const ES_ARRANGER_SET_INDEX = 'arranger-sets';
51-
export const ES_ARRANGER_SET_TYPE = 'arranger-sets';
5250

5351
export const BUCKETS = 'buckets';
5452
export const STATS = 'stats';

modules/server/src/schema/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import { addMocksToSchema } from '@graphql-tools/mock';
22
import { makeExecutableSchema } from '@graphql-tools/schema';
33
import { applyMiddleware } from 'graphql-middleware';
44

5-
import { CONSTANTS } from '../middleware';
5+
import { ENV_CONFIG } from '@/config';
66

7-
import { typeDefs as generateTypeDefs, resolvers as generateResolvers } from './Root';
7+
import { resolvers as generateResolvers, typeDefs as generateTypeDefs } from './Root';
88

99
export const setsMapping = {
1010
userId: { type: 'keyword' },
@@ -31,7 +31,7 @@ const makeSchema = ({
3131
[
3232
'sets',
3333
{
34-
index: CONSTANTS.ES_ARRANGER_SET_TYPE,
34+
index: ENV_CONFIG.ES_ARRANGER_SET_TYPE,
3535
name: 'sets',
3636
createState: false,
3737
nestedFieldNames: [],

0 commit comments

Comments
 (0)