2016-01-25 20:50:04 +03:00
|
|
|
function isPost(jsonData) {
|
2017-05-30 13:40:39 +03:00
|
|
|
return jsonData.hasOwnProperty('html') &&
|
2016-01-25 20:50:04 +03:00
|
|
|
jsonData.hasOwnProperty('title') && jsonData.hasOwnProperty('slug');
|
|
|
|
}
|
|
|
|
|
|
|
|
function isTag(jsonData) {
|
|
|
|
return jsonData.hasOwnProperty('name') && jsonData.hasOwnProperty('slug') &&
|
2019-01-04 14:21:21 +03:00
|
|
|
jsonData.hasOwnProperty('description') && jsonData.hasOwnProperty('feature_image');
|
2016-01-25 20:50:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function isUser(jsonData) {
|
|
|
|
return jsonData.hasOwnProperty('bio') && jsonData.hasOwnProperty('website') &&
|
2017-10-05 14:50:55 +03:00
|
|
|
jsonData.hasOwnProperty('profile_image') && jsonData.hasOwnProperty('location');
|
2016-01-25 20:50:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function isNav(jsonData) {
|
|
|
|
return jsonData.hasOwnProperty('label') && jsonData.hasOwnProperty('url') &&
|
|
|
|
jsonData.hasOwnProperty('slug') && jsonData.hasOwnProperty('current');
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
isPost: isPost,
|
|
|
|
isTag: isTag,
|
|
|
|
isUser: isUser,
|
|
|
|
isNav: isNav
|
|
|
|
};
|