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): Bellroy new releases (DIYgod#12038)
* feat(route): bellroy new releases * feat: add rader file * fix: RouteEn * fix: radar source `https://bellroy.com/new-releases` does not exist `https://bellroy.com/collection/new-releases` does ---------
- Loading branch information
1 parent
d00d13a
commit 7035c39
Showing
6 changed files
with
73 additions
and
16 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,3 @@ | ||
module.exports = { | ||
'/new-releases': ['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,26 @@ | ||
const got = require('@/utils/got'); | ||
|
||
module.exports = async (ctx) => { | ||
const host = 'https://bellroy.com'; | ||
const url = 'https://production.products.boobook-services.com/products'; | ||
const response = await got({ | ||
method: 'get', | ||
url, | ||
searchParams: { | ||
currency_identifier: '1abe985632a1392e6a94b885fe193d5943b7c213', | ||
price_group: 'bellroy.com', | ||
'filter[dimensions][web_new_release]': 'new_style', | ||
}, | ||
}); | ||
const data = response.data.products; | ||
|
||
ctx.state.data = { | ||
title: 'Bellroy - New Releases', | ||
link: 'https://bellroy.com/collection/new-releases', | ||
description: 'Bellroy - New Releases', | ||
item: data.map((item) => ({ | ||
title: item.attributes.name + ' - ' + item.attributes.dimensions.color, | ||
link: host + item.attributes.canonical_uri, | ||
})), | ||
}; | ||
}; |
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 = { | ||
'bellroy.com': { | ||
_name: 'Bellroy', | ||
'.': [ | ||
{ | ||
title: '新发布', | ||
docs: 'https://docs.rsshub.app/shopping.html#bellroy', | ||
source: ['/collection/new-releases', '/'], | ||
target: '/bellroy/new-releases', | ||
}, | ||
], | ||
}, | ||
}; |
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('/new-releases', require('./new-releases')); | ||
}; |