Added showcased column, hiding most LegalPorno/AnalVids studios. Refined Adult Time network structure.

This commit is contained in:
DebaucheryLibrarian
2022-10-05 22:01:27 +02:00
parent b130e98430
commit a6905e4664
61 changed files with 122 additions and 120 deletions

View File

@@ -10,6 +10,7 @@ const studios = [
alias: [
'gio',
],
showcased: true,
},
{
name: 'Gonzo.com',
@@ -19,18 +20,21 @@ const studios = [
alias: [
'sz',
],
showcased: true,
},
{
name: 'Porn World',
slug: 'pornworld',
url: 'https://www.analvids.com/studios/porn-world',
parent: 'analvids',
showcased: true,
},
{
name: 'Angelo Godshack Original',
slug: 'angelogodshackoriginal',
url: 'https://www.analvids.com/studios/angelo-godshack-original',
parent: 'analvids',
showcased: true,
},
{
name: 'NRX-Studio',
@@ -40,6 +44,7 @@ const studios = [
alias: [
'nrx',
],
showcased: true,
},
{
name: "Giorgio's Lab",
@@ -49,6 +54,7 @@ const studios = [
alias: [
'gl',
],
showcased: true,
},
{
name: 'Yummy estudio',
@@ -58,12 +64,14 @@ const studios = [
alias: [
'ye',
],
showcased: true,
},
{
name: 'XfreaX',
slug: 'xfreax',
url: 'https://www.analvids.com/studios/xfreax',
parent: 'analvids',
showcased: true,
},
{
name: 'Natasha Teen Productions',
@@ -73,6 +81,7 @@ const studios = [
alias: [
'nt',
],
showcased: true,
},
{
name: 'Bang Bros',
@@ -88,6 +97,7 @@ const studios = [
alias: [
'vk',
],
showcased: true,
},
{
name: 'Toby Dick Studio',
@@ -107,6 +117,7 @@ const studios = [
tags: [
'transsexual',
],
showcased: true,
},
{
name: 'TheWonderToys Training Studio',
@@ -122,6 +133,7 @@ const studios = [
alias: [
'nf',
],
showcased: true,
},
{
name: 'Vira Gold Films',
@@ -148,10 +160,11 @@ const studios = [
parent: 'analvids',
},
{
name: 'LATIN TEENS productions',
name: 'Latin Teens Productions',
slug: 'latinteensproductions',
url: 'https://www.analvids.com/studios/latin-teens-productions',
parent: 'analvids',
showcased: true,
},
{
name: 'PISSING E ANAL FANTASY',
@@ -164,6 +177,7 @@ const studios = [
slug: 'lvtstudio',
url: 'https://www.analvids.com/studios/lvt-studio',
parent: 'analvids',
showcased: true,
},
{
name: 'Sineplex CZ',
@@ -173,6 +187,7 @@ const studios = [
alias: [
'sz',
],
showcased: true,
},
{
name: 'Kinky Sex',
@@ -182,6 +197,7 @@ const studios = [
alias: [
'ks',
],
showcased: true,
},
{
name: 'Mambo Perv',
@@ -194,6 +210,7 @@ const studios = [
slug: 'studiopl',
url: 'https://www.analvids.com/studios/studio_pl',
parent: 'analvids',
showcased: true,
},
{
name: 'Interracial Vision',
@@ -203,6 +220,7 @@ const studios = [
alias: [
'iv',
],
showcased: true,
},
{
name: 'Argendana Official',
@@ -224,6 +242,7 @@ const studios = [
alias: [
'rs',
],
showcased: true,
},
{
name: 'X-TV Studio',
@@ -280,6 +299,7 @@ const studios = [
alias: [
'aa',
],
showcased: true,
},
{
name: 'Lydia Black Studio',
@@ -306,19 +326,21 @@ const studios = [
parent: 'analvids',
},
{
name: 'Eden does',
name: 'Eden Does',
slug: 'edendoes',
url: 'https://www.analvids.com/studios/eden-does',
parent: 'analvids',
showcased: true,
},
{
name: 'Black in White',
name: 'Black In White',
slug: 'blackinwhite',
url: 'https://www.analvids.com/studios/black-in-white',
parent: 'analvids',
alias: [
'biw',
],
showcased: true,
},
{
name: 'vilevixen Studio',
@@ -444,6 +466,7 @@ const studios = [
slug: 'gg',
url: 'https://www.analvids.com/studios/gg',
parent: 'analvids',
showcased: true,
},
{
name: 'Andy Casanova',
@@ -507,6 +530,7 @@ const studios = [
slug: 'sineplexclassic',
url: 'https://www.analvids.com/studios/sineplex-classic',
parent: 'analvids',
showcased: true,
},
{
name: 'Porn Force',
@@ -648,6 +672,7 @@ const studios = [
'af',
'anal forever',
],
showcased: true,
},
{
name: 'WeFuckin Studio',
@@ -5178,7 +5203,12 @@ const studios = [
parent: 'analvids',
description: 'Producing raw amateur porn leaded by Bluff, the creator, filmmaker and photographer. The models are from a circle of friends that creates and share all together. Through webcam nights, professionally made productions or from spontaneous projects, the general desire always was to produce high quality amateur porn. A wide variety of content is offered. *No custom video request *all models are 18+ and consented to appear in the photos/videos.',
},
];
].map((studio) => (studio.parent === 'analvids' && studio.showcased !== true
? {
...studio,
showcased: false,
}
: studio));
/* eslint-disable max-len */
exports.seed = (knex) => Promise.resolve()
@@ -5195,6 +5225,7 @@ exports.seed = (knex) => Promise.resolve()
type: 'studio',
parent_id: networksMap[studio.parent],
has_logo: studio.hasLogo || false,
showcased: studio.showcased,
}));
return upsert('entities', studiosWithNetwork, ['slug', 'type'], knex);