feat: add movie search service (#293)

* feat: add movie search service
close #183

* chore: update display name

* chore: code review fix

* feat: avoid panic when fields would be null or missed

* chore: make it more readable

* fix: correct format
This commit is contained in:
zhaoyang
2021-12-07 19:27:10 +08:00
committed by GitHub
parent ea15a0f0fe
commit e53c3bb52c
15 changed files with 911 additions and 1 deletions

65
movie/examples.json Normal file
View File

@@ -0,0 +1,65 @@
{
"search": [
{
"title": "Search for movies",
"run_check": false,
"description": "Search for movies",
"request": {
"language": "en-US",
"query": "inception",
"page": 1,
"region": "US",
"year": 2010,
"primary_release_year": 2010
},
"response": {
"total_results": 2,
"total_pages": 1,
"page": 1,
"results": [
{
"poster_path": "/9gk7adHYeDvHkCSEqAvQNLV5Uge.jpg",
"adult": false,
"overview": "Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: \"inception\", the implantation of another person's idea into a target's subconscious.",
"release_date": "2010-07-16",
"genre_ids": [
28,
878,
12
],
"id": 27205,
"original_title": "Inception",
"original_language": "en",
"title": "Inception",
"backdrop_path": "/9gk7adHYeDvHkCSEqAvQNLV5Uge.jpg",
"popularity": 130.507,
"vote_count": 30372,
"video": false,
"vote_average": 8.4
},
{
"poster_path": "/sNxqwtyHMNQwKWoFYDqcYTui5Ok.jpg",
"adult": false,
"overview": "The Cobol Job is a fourteen-minute animated prequel to Christopher Nolans award-winning movie: Inception, detailing the heist on Mr. Kaneda's mind by Nash, Cobb, Arthur, and several Cobol Engineering thugs.",
"release_date": "2010-12-07",
"genre_ids": [
16,
28,
53,
878
],
"id": 64956,
"original_title": "Inception: The Cobol Job",
"original_language": "en",
"title": "Inception: The Cobol Job",
"backdrop_path": "/sNxqwtyHMNQwKWoFYDqcYTui5Ok.jpg",
"popularity": 9.748,
"vote_count": 269,
"video": false,
"vote_average": 7.3
}
]
}
}
]
}