feat(schema): Implement challenge schema

This commit is contained in:
Stuart Taylor
2018-03-23 14:35:29 +00:00
committed by Mrugesh Mohapatra
parent 7b1de1ea2f
commit 766b6f98f1
4 changed files with 181 additions and 4 deletions

View File

@ -9,6 +9,7 @@ const utils = require('../server/utils');
const getChallenges = require('./getChallenges');
const app = require('../server/server');
const createDebugger = require('debug');
const { validateChallenge } = require('./schema/challengeSchema');
const log = createDebugger('fcc:seed');
// force logger to always output
@ -108,7 +109,7 @@ Observable.combineLatest(
challenge.order = order;
challenge.suborder = index + 1;
challenge.block = dasherize(blockName);
challenge.blockId = block.id;
challenge.blockId = '' + block.id;
challenge.isBeta = challenge.isBeta || isBeta;
challenge.isComingSoon = challenge.isComingSoon || isComingSoon;
challenge.isLocked = challenge.isLocked || isLocked;
@ -123,11 +124,35 @@ Observable.combineLatest(
.join(' ');
challenge.required = (challenge.required || []).concat(required);
challenge.template = challenge.template || template;
return challenge;
return _.omit(
challenge,
[
'betaSolutions',
'betaTests',
'hints',
'MDNlinks',
'null',
'rawSolutions',
'react',
'reactRedux',
'redux',
'releasedOn',
'translations',
'type'
]
);
});
})
.flatMap(challenges => createChallenges(challenges));
.flatMap(challenges => {
challenges.forEach(challenge => {
const result = validateChallenge(challenge);
if (result.error) {
console.log(result.value);
throw new Error(result.error);
}
});
return createChallenges(challenges);
});
})
.subscribe(
function(challenges) {