Adapted Score scraper for 18eighteen, 40 Something Mag and 50 Plus Milfs. Updated Score network logo and favicon.

This commit is contained in:
2020-02-03 02:57:53 +01:00
parent dfa0183669
commit 5bae5b6e5f
9 changed files with 42 additions and 21 deletions

View File

@@ -3054,23 +3054,27 @@ const sites = [
slug: '18eighteen',
url: 'https://www.18eighteen.com',
network: 'score',
parameters: { path: '/xxx-teen-videos' },
},
{
name: '40 Something Mag',
slug: '40somethingmag',
url: 'https://www.40somethingmag.com',
parameters: { path: '/xxx-mature-videos' },
network: 'score',
},
{
name: '50 Plus MILFs',
slug: '50plusmilfs',
url: 'https://www.50plusmilfs.com',
parameters: { path: '/xxx-milf-videos' },
network: 'score',
},
{
name: '60 Plus MILFs',
slug: '60plusmilfs',
url: 'https://www.60plusmilfs.com',
parameters: { path: '/xxx-granny-videos' },
network: 'score',
},
{
@@ -3481,6 +3485,7 @@ const sites = [
url: 'https://www.scorepass.com/scorelandtv',
network: 'score',
priority: 1,
enabled: false, // appears to be streaming service for other sites
},
{
name: 'ScoreTV',
@@ -3488,6 +3493,7 @@ const sites = [
url: 'https://www.scoretv.tv',
network: 'score',
priority: 1,
enabled: false, // similar to or same as Scoreland TV
},
{
name: 'Score Videos',
@@ -3928,6 +3934,7 @@ exports.seed = knex => Promise.resolve()
parameters: JSON.stringify(site.parameters),
network_id: networksMap[site.network],
priority: site.priority,
enabled: site.enabled,
}));
return upsert('sites', sitesWithNetworks, 'slug', knex);