Skip to content
This repository was archived by the owner on Aug 12, 2023. It is now read-only.

Commit c23f469

Browse files
authored
Assign apps to fills on creation (#431)
* Assign apps to fills on creation * Ensure apps are indexed alongside fills and traded tokens * Restructure app definition files and code * Rename test
1 parent 2b0051c commit c23f469

19 files changed

+358
-258
lines changed
File renamed without changes.

src/apps/get-app-definitions.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
const fs = require('fs');
2+
const path = require('path');
3+
4+
const definitionsPath = path.join(__dirname, 'definitions');
5+
6+
const files = fs.readdirSync(definitionsPath);
7+
const definitions = [];
8+
9+
files.forEach(file => {
10+
if (file.endsWith('.json')) {
11+
const filePath = path.join(definitionsPath, file);
12+
const contents = fs.readFileSync(filePath);
13+
const asObject = JSON.parse(contents);
14+
15+
definitions.push(asObject);
16+
}
17+
});
18+
19+
const getAppDefinitions = () => {
20+
return definitions;
21+
};
22+
23+
module.exports = getAppDefinitions;

src/definitions/apps/index.test.js src/apps/get-app-definitions.test.js

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
const _ = require('lodash');
2-
const { getAppDefinitions, validateAppDefinition } = require('.');
2+
const getAppDefinitions = require('./get-app-definitions');
3+
const validateAppDefinition = require('./validate-app-definition');
4+
5+
describe('apps/getAppDefinitions', () => {
6+
it('should get all app definitions', () => {
7+
const definitions = getAppDefinitions();
8+
9+
expect(definitions.length).not.toBe(0);
10+
});
311

4-
describe('definitions/apps', () => {
512
it('should not contain definitions which violate the app definition schema', () => {
613
const definitions = getAppDefinitions();
714

@@ -66,12 +73,4 @@ describe('definitions/apps', () => {
6673

6774
expect(matchingDefinitions).toBe(definitions.length);
6875
});
69-
70-
describe('getDefinitions', () => {
71-
it('should get all app definitions', () => {
72-
const definitions = getAppDefinitions();
73-
74-
expect(definitions.length).not.toBe(0);
75-
});
76-
});
7776
});

src/apps/index.js

+1-49
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,3 @@
1-
const _ = require('lodash');
2-
const { getAppDefinitions } = require('../definitions/apps');
3-
4-
const prettifyUndefined = value => (value === undefined ? '(none)' : value);
5-
6-
const getErrorForDuplicate = (type, metadata) => {
7-
const { affiliateAddress, feeRecipientAddress, takerAddress } = metadata;
8-
9-
return new Error(
10-
`Multiple ${type} apps match metadata:` +
11-
'\r\n\r\n' +
12-
`affiliateAddress: ${prettifyUndefined(affiliateAddress)}\r\n` +
13-
`feeRecipientAddress: ${prettifyUndefined(feeRecipientAddress)}\r\n` +
14-
`takerAddress: ${prettifyUndefined(takerAddress)}`,
15-
);
16-
};
17-
18-
const resolveApps = metadata => {
19-
const { affiliateAddress, feeRecipientAddress, takerAddress } = metadata;
20-
21-
const appDefinitions = getAppDefinitions();
22-
const mappings = _.flatMap(appDefinitions, d => d.mappings);
23-
const matches = mappings.filter(
24-
mapping =>
25-
(mapping.affiliateAddress === affiliateAddress ||
26-
mapping.affiliateAddress === undefined) &&
27-
(mapping.feeRecipientAddress === feeRecipientAddress ||
28-
mapping.feeRecipientAddress === undefined) &&
29-
(mapping.takerAddress === takerAddress ||
30-
mapping.takerAddress === undefined),
31-
);
32-
33-
if (matches.filter(m => m.type === 'relayer').length > 1) {
34-
throw getErrorForDuplicate('relayer', metadata);
35-
}
36-
37-
if (matches.filter(m => m.type === 'consumer').length > 1) {
38-
throw getErrorForDuplicate('consumer', metadata);
39-
}
40-
41-
return matches.map(match => {
42-
const appDefinition = appDefinitions.find(d => d.mappings.includes(match));
43-
44-
return {
45-
id: appDefinition.id,
46-
type: match.type,
47-
};
48-
});
49-
};
1+
const resolveApps = require('./resolve-apps');
502

513
module.exports = { resolveApps };

src/apps/index.test.js

-177
This file was deleted.

src/apps/resolve-apps.js

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
const _ = require('lodash');
2+
const getAppDefinitions = require('./get-app-definitions');
3+
4+
const prettifyUndefined = value => (value === undefined ? '(none)' : value);
5+
6+
const getErrorForDuplicate = (type, metadata) => {
7+
const { affiliateAddress, feeRecipientAddress, takerAddress } = metadata;
8+
9+
return new Error(
10+
`Multiple ${type} apps match metadata:` +
11+
'\r\n\r\n' +
12+
`affiliateAddress: ${prettifyUndefined(affiliateAddress)}\r\n` +
13+
`feeRecipientAddress: ${prettifyUndefined(feeRecipientAddress)}\r\n` +
14+
`takerAddress: ${prettifyUndefined(takerAddress)}`,
15+
);
16+
};
17+
18+
const resolveApps = metadata => {
19+
const { affiliateAddress, feeRecipientAddress, takerAddress } = metadata;
20+
21+
const appDefinitions = getAppDefinitions();
22+
const mappings = _.flatMap(appDefinitions, d => d.mappings);
23+
const matches = mappings.filter(
24+
mapping =>
25+
(mapping.affiliateAddress === affiliateAddress ||
26+
mapping.affiliateAddress === undefined) &&
27+
(mapping.feeRecipientAddress === feeRecipientAddress ||
28+
mapping.feeRecipientAddress === undefined) &&
29+
(mapping.takerAddress === takerAddress ||
30+
mapping.takerAddress === undefined),
31+
);
32+
33+
if (matches.filter(m => m.type === 'relayer').length > 1) {
34+
throw getErrorForDuplicate('relayer', metadata);
35+
}
36+
37+
if (matches.filter(m => m.type === 'consumer').length > 1) {
38+
throw getErrorForDuplicate('consumer', metadata);
39+
}
40+
41+
return matches.map(match => {
42+
const appDefinition = appDefinitions.find(d => d.mappings.includes(match));
43+
44+
return {
45+
id: appDefinition.id,
46+
type: match.type,
47+
};
48+
});
49+
};
50+
51+
module.exports = resolveApps;

0 commit comments

Comments
 (0)