forked from DIYgod/RSSHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(route): sony software downloads (DIYgod#12046)
* feat(route): sony software downloads * Update lib/v2/sony/downloads.js * chore: use map instead of forEach, delete description ---------
- Loading branch information
1 parent
569c630
commit c8f06fe
Showing
7 changed files
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
const got = require('@/utils/got'); | ||
const cheerio = require('cheerio'); | ||
const host = 'https://www.sony.com'; | ||
module.exports = async (ctx) => { | ||
const { productType, productId } = ctx.params; | ||
const url = `${host}/electronics/support/${productType}/${productId}/downloads`; | ||
const response = await got({ | ||
method: 'get', | ||
url, | ||
}); | ||
const data = response.data; | ||
|
||
const $ = cheerio.load(data); | ||
const contents = $('script:contains("window.__PRELOADED_STATE__.downloads")').text(); | ||
|
||
const regex = /window\.__PRELOADED_STATE__\.downloads\s*=\s*({.*?});\s*window\.__PRELOADED_STATE__/s; | ||
|
||
const match = contents.match(regex); | ||
let results = {}; | ||
if (match) { | ||
results = JSON.parse(match[1]).searchResults.results; | ||
} | ||
const list = results.map((item) => { | ||
const data = {}; | ||
data.title = item.title; | ||
data.pubDate = item.publicationDate; | ||
const url = item.url; | ||
if (url.startsWith('http')) { | ||
data.url = url; | ||
} else if (url.startsWith('//')) { | ||
data.url = 'https:' + url; | ||
} else { | ||
data.url = host + url; | ||
} | ||
return data; | ||
}); | ||
ctx.state.data = { | ||
title: `Sony - ${productId.toUpperCase()}`, | ||
link: url, | ||
description: `Sony - ${productId.toUpperCase()}`, | ||
item: list.map((item) => ({ | ||
title: item.title, | ||
link: item.url, | ||
pubDate: item.pubDate, | ||
})), | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
'/downloads/:productType/:productId': ['NavePnow'], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module.exports = { | ||
'sony.com': { | ||
_name: 'Sony', | ||
'.': [ | ||
{ | ||
title: 'Software Downloads', | ||
docs: 'https://docs.rsshub.app/program-update.html#sony', | ||
source: ['/electronics/support/:productType/:productId/downloads'], | ||
target: '/sony/downloads/:productType/:productId', | ||
}, | ||
], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = function (router) { | ||
router.get('/downloads/:productType/:productId', require('./downloads')); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<div> | ||
<br><br> | ||
Release Date: {{ item.pubDate }} | ||
</div> |