Skip to content

Commit a76feb3

Browse files
committed
feat: add api series season count
1 parent 53194bd commit a76feb3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib/media_server_web/controllers/series_controller.ex

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ defmodule MediaServerWeb.SeriesController do
2121
"title" => x["title"],
2222
"overview" => x["overview"],
2323
"year" => x["year"],
24+
"seasonCount" => x["statistics"]["seasonCount"],
2425
"poster" => ~p"/api/images?series=#{x["id"]}&type=poster",
2526
"background" => ~p"/api/images?series=#{x["id"]}&type=background"
2627
}
@@ -53,6 +54,7 @@ defmodule MediaServerWeb.SeriesController do
5354
"title" => x["title"],
5455
"overview" => x["overview"],
5556
"year" => x["year"],
57+
"seasonCount" => x["statistics"]["seasonCount"],
5658
"poster" => ~p"/api/images?series=#{x["id"]}&type=poster",
5759
"background" => ~p"/api/images?series=#{x["id"]}&type=background"
5860
}

test/media_server_web/controllers/series_controller_test.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ defmodule MediaServerWeb.SeriesControllerTest do
1212

1313
assert conn.status === 200
1414

15-
assert conn.resp_body === "{\"items\":[{\"background\":\"/api/images?series=1&type=background\",\"id\":1,\"overview\":\"An object in the sky spreads radiation over North America. Fearing terrorism, U.S. Homeland Security agents are dispatched to investigate and contain the damage. What they discover will have implications for the entire world.\",\"poster\":\"/api/images?series=1&type=poster\",\"title\":\"Pioneer One\",\"year\":2010}],\"next_page\":\"/api/series?page=2\",\"prev_page\":\"/api/series?page=0\",\"total\":1}"
15+
assert conn.resp_body === "{\"items\":[{\"background\":\"/api/images?series=1&type=background\",\"id\":1,\"overview\":\"An object in the sky spreads radiation over North America. Fearing terrorism, U.S. Homeland Security agents are dispatched to investigate and contain the damage. What they discover will have implications for the entire world.\",\"poster\":\"/api/images?series=1&type=poster\",\"seasonCount\":1,\"title\":\"Pioneer One\",\"year\":2010}],\"next_page\":\"/api/series?page=2\",\"prev_page\":\"/api/series?page=0\",\"total\":1}"
1616
end
1717

1818
test "it should have all paged", %{conn: conn, user: user} do
1919
conn = get(conn, ~p"/api/series?page=1&token=#{user.api_token.token}")
2020

2121
assert conn.status === 200
2222

23-
assert conn.resp_body === "{\"items\":[{\"background\":\"/api/images?series=1&type=background\",\"id\":1,\"overview\":\"An object in the sky spreads radiation over North America. Fearing terrorism, U.S. Homeland Security agents are dispatched to investigate and contain the damage. What they discover will have implications for the entire world.\",\"poster\":\"/api/images?series=1&type=poster\",\"title\":\"Pioneer One\",\"year\":2010}],\"next_page\":\"/api/series?page=2\",\"prev_page\":\"/api/series?page=0\",\"total\":1}"
23+
assert conn.resp_body === "{\"items\":[{\"background\":\"/api/images?series=1&type=background\",\"id\":1,\"overview\":\"An object in the sky spreads radiation over North America. Fearing terrorism, U.S. Homeland Security agents are dispatched to investigate and contain the damage. What they discover will have implications for the entire world.\",\"poster\":\"/api/images?series=1&type=poster\",\"seasonCount\":1,\"title\":\"Pioneer One\",\"year\":2010}],\"next_page\":\"/api/series?page=2\",\"prev_page\":\"/api/series?page=0\",\"total\":1}"
2424
end
2525

2626
test "it should NOT have all paged", %{conn: conn, user: user} do

0 commit comments

Comments
 (0)