Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3396427
D7711.id26066.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Referenced Files
None
Subscribers
None
D7711.id26066.diff
View Options
diff --git a/keyserver/src/utils/validation-utils.js b/keyserver/src/utils/validation-utils.js
--- a/keyserver/src/utils/validation-utils.js
+++ b/keyserver/src/utils/validation-utils.js
@@ -6,6 +6,7 @@
import type { PolicyType } from 'lib/facts/policies.js';
import { hasMinCodeVersion } from 'lib/shared/version-utils.js';
+import { isWebPlatform } from 'lib/types/device-types.js';
import { ServerError } from 'lib/utils/errors.js';
import {
tCookie,
@@ -13,6 +14,7 @@
tPlatform,
tPlatformDetails,
assertWithValidator,
+ tID,
} from 'lib/utils/validation-utils.js';
import { fetchNotAcknowledgedPolicies } from '../fetchers/policy-acknowledgment-fetchers.js';
@@ -30,6 +32,67 @@
checkInputValidator(inputValidator, input);
}
+const convertToNewIDSchema = false;
+const keyserverPrefixID = '256';
+
+function validateOutput<T>(
+ viewer: Viewer,
+ outputValidator: TType<T>,
+ data: T,
+): T {
+ if (!outputValidator.is(data)) {
+ throw new ServerError('output_data_validation_failed');
+ }
+
+ if (
+ hasMinCodeVersion(viewer.platformDetails, 1000) &&
+ !isWebPlatform(viewer.platformDetails?.platform) &&
+ convertToNewIDSchema
+ ) {
+ return convertServerIDsToClientIDs(
+ keyserverPrefixID,
+ outputValidator,
+ data,
+ );
+ }
+
+ return data;
+}
+
+function convertServerIDsToClientIDs<T>(
+ serverPrefixID: string,
+ outputValidator: TType<T>,
+ data: T,
+): T {
+ const prefix = serverPrefixID + '|';
+ const conversionFunction = id => {
+ if (id.indexOf('|') !== -1) {
+ console.warn('server id already has a prefix');
+ return id;
+ }
+ return prefix + id;
+ };
+
+ return convertObject(outputValidator, data, [tID], conversionFunction);
+}
+
+function convertClientIDsToServerIDs<T>(
+ serverPrefixID: string,
+ outputValidator: TType<T>,
+ data: T,
+): T {
+ const prefix = serverPrefixID + '|';
+ const conversionFunction = id => {
+ if (id.startsWith(prefix)) {
+ return id.substr(prefix.length);
+ }
+
+ throw new ServerError('invalid_client_id_prefix');
+ };
+
+ return convertObject(outputValidator, data, [tID], conversionFunction);
+}
+
function checkInputValidator<T>(inputValidator: ?TType<T>, input: T) {
if (!inputValidator || inputValidator.is(input)) {
return;
@@ -250,11 +313,14 @@
export {
validateInput,
+ validateOutput,
checkInputValidator,
redactedString,
sanitizeInput,
findFirstInputMatchingValidator,
checkClientSupported,
+ convertServerIDsToClientIDs,
+ convertClientIDsToServerIDs,
convertObject,
policiesValidator,
};
diff --git a/keyserver/src/utils/validation-utils.test.js b/keyserver/src/utils/validation-utils.test.js
--- a/keyserver/src/utils/validation-utils.test.js
+++ b/keyserver/src/utils/validation-utils.test.js
@@ -2,9 +2,14 @@
import t from 'tcomb';
-import { tPassword, tShape } from 'lib/utils/validation-utils.js';
+import { tPassword, tShape, tID } from 'lib/utils/validation-utils.js';
-import { sanitizeInput, redactedString } from './validation-utils.js';
+import {
+ convertServerIDsToClientIDs,
+ sanitizeInput,
+ redactedString,
+ convertClientIDsToServerIDs,
+} from './validation-utils.js';
describe('sanitization', () => {
it('should redact a string', () => {
@@ -72,3 +77,33 @@
expect(sanitizeInput(validator, object)).toStrictEqual(redacted);
});
});
+
+describe('id conversion', () => {
+ it('should convert string id', () => {
+ const validator = tShape({ id: tID });
+ const serverData = { id: '1' };
+ const clientData = { id: '0|1' };
+
+ expect(
+ convertServerIDsToClientIDs('0', validator, serverData),
+ ).toStrictEqual(clientData);
+ expect(
+ convertClientIDsToServerIDs('0', validator, clientData),
+ ).toStrictEqual(serverData);
+ });
+
+ it('should convert a complex type', () => {
+ const validator = tShape({ ids: t.dict(tID, t.list(tID)) });
+ const serverData = { ids: { '1': ['11', '12'], '2': [], '3': ['13'] } };
+ const clientData = {
+ ids: { '0|1': ['0|11', '0|12'], '0|2': [], '0|3': ['0|13'] },
+ };
+
+ expect(
+ convertServerIDsToClientIDs('0', validator, serverData),
+ ).toStrictEqual(clientData);
+ expect(
+ convertClientIDsToServerIDs('0', validator, clientData),
+ ).toStrictEqual(serverData);
+ });
+});
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Dec 2, 12:17 PM (16 h, 20 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2607570
Default Alt Text
D7711.id26066.diff (4 KB)
Attached To
Mode
D7711: [keyserver] Introduce validateOutput function
Attached
Detach File
Event Timeline
Log In to Comment