aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/presentation/controller/SearchAnimeController.kt
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2021-05-12 14:49:55 +0200
committerClyhtsuriva <aimeric@adjutor.xyz>2021-05-12 14:49:55 +0200
commitd860cdd577879910792380cf0f227b206159a6f1 (patch)
tree5e2136926f343e650c91fa52160458d3238f3aa2 /app/src/main/java/xyz/adjutor/aniki/presentation/controller/SearchAnimeController.kt
parent95f421c72c2d700bf4fbe32d84919a461ffa6df2 (diff)
creating anime and manga packages for controllers
Diffstat (limited to 'app/src/main/java/xyz/adjutor/aniki/presentation/controller/SearchAnimeController.kt')
-rw-r--r--app/src/main/java/xyz/adjutor/aniki/presentation/controller/SearchAnimeController.kt73
1 files changed, 0 insertions, 73 deletions
diff --git a/app/src/main/java/xyz/adjutor/aniki/presentation/controller/SearchAnimeController.kt b/app/src/main/java/xyz/adjutor/aniki/presentation/controller/SearchAnimeController.kt
deleted file mode 100644
index d00137d..0000000
--- a/app/src/main/java/xyz/adjutor/aniki/presentation/controller/SearchAnimeController.kt
+++ /dev/null
@@ -1,73 +0,0 @@
-package xyz.adjutor.aniki.presentation.controller
-
-import com.google.gson.Gson
-import com.google.gson.GsonBuilder
-import retrofit2.Call
-import retrofit2.Callback
-import retrofit2.Response
-import retrofit2.Retrofit
-import retrofit2.converter.gson.GsonConverterFactory
-import xyz.adjutor.aniki.data.anime.SearchAnimeApi
-import xyz.adjutor.aniki.presentation.model.anime.SearchAnime
-import xyz.adjutor.aniki.presentation.model.anime.SearchAnimeResponse
-import xyz.adjutor.aniki.presentation.view.anime.SearchAnimePage
-
-class SearchAnimeController {
-
- lateinit var gson: Gson
- lateinit var baseUrl: String //the api's base url
- lateinit var view: SearchAnimePage
-
- fun onStart(searchAnimePage: SearchAnimePage) {
-
- view = searchAnimePage
- baseUrl = "https://api.jikan.moe/" //the api's base url
- gson = GsonBuilder()
- .setLenient()
- .create()
- }
-
- //call the API and show the list
- private fun makeApiCall(view: SearchAnimePage, BASE_URL: String, query: String) {
-
- val retrofit = Retrofit.Builder()
- .baseUrl(BASE_URL)
- .addConverterFactory(GsonConverterFactory.create(gson))
- .build()
-
- val service = retrofit.create(SearchAnimeApi::class.java)
- val call =
- service.getSearchAnimeData(q = query) //fate is an exemple, we'll have to replace it by the user input.
-
- call.enqueue(object : Callback<SearchAnimeResponse> {
- override fun onResponse(
- call: Call<SearchAnimeResponse>,
- response: Response<SearchAnimeResponse>
- ) {
- if (response.isSuccessful && response.body() != null) { //if the code returned is >= 200 and < 300 AND the the body ain't empty
-
- val animeList: List<SearchAnime> = response.body()!!
- .getResults() //getting the "search" field containing our list of SearchAnimes
-
- view.showList(
- view.requireView(),
- animeList
- ) //calling the method in charge of displaying on the recyclerview
-
- } else {
- view.showError() //a snackbar
- }
- }
-
- override fun onFailure(call: Call<SearchAnimeResponse>, t: Throwable) {
- view.showError()
- }
-
- })
- }
-
- fun updateList(userInput: String) {
- makeApiCall(view, baseUrl, userInput)
- }
-
-} \ No newline at end of file