2019-12-16 04:30:25 +00:00
|
|
|
const siteFragment = `
|
2020-06-27 22:15:13 +00:00
|
|
|
entity {
|
2019-12-16 04:30:25 +00:00
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
url
|
2020-06-27 22:15:13 +00:00
|
|
|
type
|
2020-07-02 02:04:28 +00:00
|
|
|
independent
|
2020-07-08 00:53:46 +00:00
|
|
|
hasLogo
|
2020-06-27 22:15:13 +00:00
|
|
|
parent {
|
2019-12-16 04:30:25 +00:00
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
url
|
2020-06-27 22:15:13 +00:00
|
|
|
type
|
2020-07-02 02:04:28 +00:00
|
|
|
independent
|
2020-07-08 00:53:46 +00:00
|
|
|
hasLogo
|
2019-12-16 04:30:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2020-01-02 23:59:02 +00:00
|
|
|
const sitesFragment = `
|
2020-06-27 22:15:13 +00:00
|
|
|
entities {
|
2020-01-02 23:59:02 +00:00
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
url
|
2020-06-27 22:15:13 +00:00
|
|
|
type
|
2020-07-02 02:04:28 +00:00
|
|
|
independent
|
2020-07-08 00:53:46 +00:00
|
|
|
hasLogo
|
2020-06-27 22:15:13 +00:00
|
|
|
parent {
|
2020-01-02 23:59:02 +00:00
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
url
|
2020-06-27 22:15:13 +00:00
|
|
|
type
|
2020-07-02 02:04:28 +00:00
|
|
|
independent
|
2020-07-08 00:53:46 +00:00
|
|
|
hasLogo
|
2020-01-02 23:59:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2020-03-09 04:06:37 +00:00
|
|
|
const actorFields = `
|
2019-12-16 04:30:25 +00:00
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
2020-05-15 02:40:59 +00:00
|
|
|
birthdate: dateOfBirth
|
2019-12-16 04:30:25 +00:00
|
|
|
age
|
2020-12-17 02:48:38 +00:00
|
|
|
ageFromBirth
|
|
|
|
dateOfBirth
|
2020-01-25 01:29:49 +00:00
|
|
|
gender
|
2020-05-17 03:24:46 +00:00
|
|
|
avatar: avatarMedia {
|
|
|
|
id
|
|
|
|
path
|
|
|
|
thumbnail
|
|
|
|
lazy
|
2020-05-25 00:02:28 +00:00
|
|
|
sfw: sfwMedia {
|
|
|
|
id
|
|
|
|
path
|
|
|
|
thumbnail
|
|
|
|
lazy
|
|
|
|
}
|
2020-05-17 03:24:46 +00:00
|
|
|
}
|
2020-06-17 02:07:24 +00:00
|
|
|
network: entity {
|
2020-03-27 03:39:13 +00:00
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
}
|
2020-06-28 20:29:18 +00:00
|
|
|
birthCountry: countryByBirthCountryAlpha2 {
|
2019-12-16 04:30:25 +00:00
|
|
|
alpha2
|
|
|
|
name
|
|
|
|
alias
|
|
|
|
}
|
2020-03-09 04:06:37 +00:00
|
|
|
`;
|
|
|
|
|
|
|
|
const releaseActorsFragment = `
|
|
|
|
actors: releasesActors(orderBy: ACTOR_BY_ACTOR_ID__GENDER_ASC) {
|
|
|
|
actor {
|
|
|
|
${actorFields}
|
2019-12-16 04:30:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const releaseTagsFragment = `
|
2020-01-04 01:51:58 +00:00
|
|
|
tags: releasesTags(orderBy: TAG_BY_TAG_ID__PRIORITY_DESC) {
|
2019-12-19 03:42:50 +00:00
|
|
|
tag {
|
2019-12-16 04:30:25 +00:00
|
|
|
name
|
|
|
|
priority
|
|
|
|
slug
|
|
|
|
id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const releasePosterFragment = `
|
2019-12-19 03:42:50 +00:00
|
|
|
poster: releasesPosterByReleaseId {
|
|
|
|
media {
|
2020-08-12 01:30:20 +00:00
|
|
|
id
|
2019-12-19 03:42:50 +00:00
|
|
|
index
|
|
|
|
path
|
|
|
|
thumbnail
|
2020-05-07 00:10:28 +00:00
|
|
|
lazy
|
2019-12-19 03:42:50 +00:00
|
|
|
comment
|
2020-04-02 00:02:03 +00:00
|
|
|
sfw: sfwMedia {
|
|
|
|
id
|
|
|
|
thumbnail
|
2020-05-08 23:10:07 +00:00
|
|
|
lazy
|
2020-04-02 00:02:03 +00:00
|
|
|
path
|
|
|
|
comment
|
|
|
|
}
|
2019-12-19 03:42:50 +00:00
|
|
|
}
|
2019-12-16 04:30:25 +00:00
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2020-02-12 03:39:57 +00:00
|
|
|
const releaseCoversFragment = `
|
|
|
|
covers: releasesCovers {
|
|
|
|
media {
|
2020-08-12 01:30:20 +00:00
|
|
|
id
|
2020-02-12 03:39:57 +00:00
|
|
|
index
|
|
|
|
path
|
|
|
|
thumbnail
|
2020-05-07 00:10:28 +00:00
|
|
|
lazy
|
2020-02-12 03:39:57 +00:00
|
|
|
comment
|
2020-04-02 00:02:03 +00:00
|
|
|
sfw: sfwMedia {
|
|
|
|
id
|
|
|
|
thumbnail
|
2020-05-08 23:10:07 +00:00
|
|
|
lazy
|
2020-04-02 00:02:03 +00:00
|
|
|
path
|
|
|
|
comment
|
|
|
|
}
|
2020-02-12 03:39:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2019-12-16 04:30:25 +00:00
|
|
|
const releasePhotosFragment = `
|
2019-12-19 03:42:50 +00:00
|
|
|
photos: releasesPhotos {
|
|
|
|
media {
|
2020-08-12 01:30:20 +00:00
|
|
|
id
|
2019-12-19 03:42:50 +00:00
|
|
|
index
|
|
|
|
path
|
|
|
|
thumbnail
|
2020-05-08 23:10:07 +00:00
|
|
|
lazy
|
2019-12-19 03:42:50 +00:00
|
|
|
comment
|
2020-04-02 00:02:03 +00:00
|
|
|
sfw: sfwMedia {
|
|
|
|
id
|
|
|
|
thumbnail
|
2020-05-08 23:10:07 +00:00
|
|
|
lazy
|
2020-04-02 00:02:03 +00:00
|
|
|
path
|
|
|
|
comment
|
|
|
|
}
|
2019-12-19 03:42:50 +00:00
|
|
|
}
|
2019-12-16 04:30:25 +00:00
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const releaseTrailerFragment = `
|
2019-12-19 03:42:50 +00:00
|
|
|
trailer: releasesTrailerByReleaseId {
|
|
|
|
media {
|
2020-08-12 01:30:20 +00:00
|
|
|
id
|
2019-12-19 03:42:50 +00:00
|
|
|
index
|
|
|
|
path
|
|
|
|
thumbnail
|
2020-02-02 04:14:58 +00:00
|
|
|
mime
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const releaseTeaserFragment = `
|
|
|
|
teaser: releasesTeaserByReleaseId {
|
|
|
|
media {
|
2020-08-20 18:48:52 +00:00
|
|
|
id
|
2020-02-02 04:14:58 +00:00
|
|
|
index
|
|
|
|
path
|
|
|
|
thumbnail
|
|
|
|
mime
|
2019-12-19 03:42:50 +00:00
|
|
|
}
|
2019-12-16 04:30:25 +00:00
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2020-01-08 23:23:37 +00:00
|
|
|
const releaseFields = `
|
|
|
|
id
|
|
|
|
title
|
|
|
|
date
|
2020-07-03 02:12:56 +00:00
|
|
|
datePrecision
|
2020-02-04 02:12:09 +00:00
|
|
|
slug
|
2020-07-02 02:04:28 +00:00
|
|
|
shootId
|
2020-07-02 23:28:22 +00:00
|
|
|
productionDate
|
2020-07-08 00:53:46 +00:00
|
|
|
comment
|
2020-01-08 23:23:37 +00:00
|
|
|
createdAt
|
|
|
|
url
|
2020-10-24 22:52:40 +00:00
|
|
|
createdBatchId
|
2020-01-08 23:23:37 +00:00
|
|
|
${releaseActorsFragment}
|
|
|
|
${releaseTagsFragment}
|
|
|
|
${releasePosterFragment}
|
2020-02-12 03:39:57 +00:00
|
|
|
${releaseCoversFragment}
|
2020-01-08 23:23:37 +00:00
|
|
|
${siteFragment}
|
|
|
|
studio {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
url
|
|
|
|
}
|
2020-03-02 02:41:41 +00:00
|
|
|
isNew
|
2020-01-08 23:23:37 +00:00
|
|
|
`;
|
|
|
|
|
2019-12-16 04:30:25 +00:00
|
|
|
const releasesFragment = `
|
2020-05-22 02:32:16 +00:00
|
|
|
connection: releasesConnection(
|
2019-12-18 01:42:55 +00:00
|
|
|
filter: {
|
|
|
|
date: {
|
|
|
|
lessThan: $before,
|
|
|
|
greaterThan: $after,
|
|
|
|
}
|
2020-05-22 02:32:16 +00:00
|
|
|
releasesTagsConnection: {
|
2020-01-30 22:41:10 +00:00
|
|
|
none: {
|
|
|
|
tag: {
|
|
|
|
slug: {
|
|
|
|
in: $exclude
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-18 01:42:55 +00:00
|
|
|
},
|
|
|
|
first: $limit,
|
2020-05-22 02:32:16 +00:00
|
|
|
offset: $offset,
|
2020-01-08 23:23:37 +00:00
|
|
|
orderBy: $orderBy,
|
2019-12-18 01:42:55 +00:00
|
|
|
) {
|
2020-05-22 02:32:16 +00:00
|
|
|
releases: nodes {
|
|
|
|
${releaseFields}
|
|
|
|
}
|
|
|
|
totalCount
|
2019-12-18 01:42:55 +00:00
|
|
|
}
|
2019-12-16 04:30:25 +00:00
|
|
|
`;
|
|
|
|
|
|
|
|
const releaseFragment = `
|
|
|
|
release(id: $releaseId) {
|
|
|
|
id
|
|
|
|
title
|
|
|
|
description
|
|
|
|
date
|
2020-07-03 02:12:56 +00:00
|
|
|
datePrecision
|
2019-12-16 04:30:25 +00:00
|
|
|
duration
|
|
|
|
createdAt
|
|
|
|
shootId
|
2020-07-02 23:28:22 +00:00
|
|
|
productionDate
|
2020-10-24 22:52:40 +00:00
|
|
|
createdBatchId
|
2020-08-20 02:57:38 +00:00
|
|
|
productionLocation
|
|
|
|
productionCity
|
|
|
|
productionState
|
|
|
|
productionCountry: countryByProductionCountryAlpha2 {
|
|
|
|
alpha2
|
|
|
|
name
|
|
|
|
alias
|
|
|
|
}
|
2020-07-08 00:53:46 +00:00
|
|
|
comment
|
2019-12-16 04:30:25 +00:00
|
|
|
url
|
|
|
|
${releaseActorsFragment}
|
|
|
|
${releaseTagsFragment}
|
|
|
|
${releasePosterFragment}
|
|
|
|
${releasePhotosFragment}
|
2020-03-08 03:23:10 +00:00
|
|
|
${releaseCoversFragment}
|
2019-12-16 04:30:25 +00:00
|
|
|
${releaseTrailerFragment}
|
2020-02-02 04:14:58 +00:00
|
|
|
${releaseTeaserFragment}
|
2019-12-16 04:30:25 +00:00
|
|
|
${siteFragment}
|
2020-08-20 17:52:02 +00:00
|
|
|
clips {
|
2020-08-20 02:57:38 +00:00
|
|
|
id
|
|
|
|
title
|
|
|
|
description
|
|
|
|
duration
|
2020-08-20 17:52:02 +00:00
|
|
|
tags: clipsTags {
|
2020-08-20 02:57:38 +00:00
|
|
|
tag {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
}
|
|
|
|
}
|
2020-08-20 17:52:02 +00:00
|
|
|
poster: clipsPosterByClipId {
|
2020-08-20 02:57:38 +00:00
|
|
|
media {
|
2020-08-20 18:48:52 +00:00
|
|
|
id
|
2020-08-20 02:57:38 +00:00
|
|
|
index
|
|
|
|
path
|
|
|
|
thumbnail
|
|
|
|
lazy
|
|
|
|
comment
|
|
|
|
sfw: sfwMedia {
|
|
|
|
id
|
|
|
|
thumbnail
|
|
|
|
lazy
|
|
|
|
path
|
|
|
|
comment
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-16 04:30:25 +00:00
|
|
|
studio {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
url
|
|
|
|
}
|
2020-08-12 01:30:20 +00:00
|
|
|
movies: moviesScenesBySceneId {
|
|
|
|
movie {
|
|
|
|
id
|
|
|
|
title
|
|
|
|
slug
|
2020-08-20 02:57:38 +00:00
|
|
|
covers: moviesCovers {
|
2020-08-12 01:30:20 +00:00
|
|
|
media {
|
2020-08-20 18:48:52 +00:00
|
|
|
id
|
2020-08-12 01:30:20 +00:00
|
|
|
index
|
|
|
|
path
|
|
|
|
thumbnail
|
|
|
|
lazy
|
|
|
|
comment
|
|
|
|
sfw: sfwMedia {
|
|
|
|
id
|
|
|
|
thumbnail
|
|
|
|
lazy
|
|
|
|
path
|
|
|
|
comment
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-16 04:30:25 +00:00
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2020-09-09 01:28:33 +00:00
|
|
|
function getIncludedEntities(router) {
|
2020-12-27 21:45:38 +00:00
|
|
|
const includedChannels = router.currentRoute.value.query.channels ? router.currentRoute.value.query.channels.split(',') : [];
|
|
|
|
const includedNetworks = router.currentRoute.value.query.networks ? router.currentRoute.value.query.networks.split(',') : [];
|
2020-09-09 01:28:33 +00:00
|
|
|
|
|
|
|
if (includedChannels.length === 0 && includedNetworks.length === 0) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
entity: {
|
|
|
|
slug: {
|
|
|
|
in: includedChannels,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
entity: {
|
|
|
|
parent: {
|
|
|
|
type: {
|
|
|
|
equalTo: 'network',
|
|
|
|
},
|
|
|
|
slug: {
|
|
|
|
in: includedNetworks,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
entity: {
|
|
|
|
type: {
|
|
|
|
equalTo: 'network',
|
|
|
|
},
|
|
|
|
slug: {
|
|
|
|
in: includedNetworks,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2020-09-12 01:09:05 +00:00
|
|
|
function getIncludedActors(router) {
|
2020-12-27 21:45:38 +00:00
|
|
|
const includedActors = router.currentRoute.value.query.actors ? router.currentRoute.value.query.actors.split(',') : [];
|
2020-09-12 01:09:05 +00:00
|
|
|
|
|
|
|
if (includedActors.length === 0) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
releasesActorsConnection: {
|
|
|
|
some: {
|
|
|
|
actor: {
|
|
|
|
slug: {
|
|
|
|
in: includedActors,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|
2020-09-09 01:28:33 +00:00
|
|
|
|
2019-12-16 04:30:25 +00:00
|
|
|
export {
|
2020-05-14 02:26:05 +00:00
|
|
|
releaseActorsFragment,
|
|
|
|
releaseFields,
|
|
|
|
releaseTagsFragment,
|
|
|
|
releasePosterFragment,
|
|
|
|
releasePhotosFragment,
|
|
|
|
releaseTrailerFragment,
|
|
|
|
releasesFragment,
|
|
|
|
releaseFragment,
|
|
|
|
siteFragment,
|
|
|
|
sitesFragment,
|
2020-09-09 01:28:33 +00:00
|
|
|
getIncludedEntities,
|
2020-09-12 01:09:05 +00:00
|
|
|
getIncludedActors,
|
2019-12-16 04:30:25 +00:00
|
|
|
};
|