aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/DetailSearchAnimeController.kt
blob: e12de3afe7517a71f0e2b0323f5d3545fd9b4a6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package xyz.adjutor.aniki.presentation.controller.anime

import com.google.gson.Gson
import com.google.gson.GsonBuilder
import retrofit2.Call
import retrofit2.Callback
import retrofit2.Response
import xyz.adjutor.aniki.presentation.Singletons
import xyz.adjutor.aniki.presentation.model.anime.AnimeResponse
import xyz.adjutor.aniki.presentation.view.anime.DetailSearchAnimeActivity

class DetailSearchAnimeController {

    lateinit var gson: Gson
    private lateinit var baseUrl: String //the api's base url
    lateinit var view: DetailSearchAnimeActivity

    fun onStart(DetailSearchAnimeActivity: DetailSearchAnimeActivity, animeId: String) {

        view = DetailSearchAnimeActivity
        baseUrl = "https://api.jikan.moe/" //the api's base url
        gson = GsonBuilder()
            .setLenient()
            .create()

        makeApiCall(baseUrl, animeId)
    }

    private fun makeApiCall(BASE_URL: String, animeId: String) {

        Singletons
            .animeApi
            .getAnimeData(animeId) //based on the id
            .enqueue(object : Callback<AnimeResponse> {
                override fun onResponse(
                    call: Call<AnimeResponse>,
                    response: Response<AnimeResponse>
                ) {
                    if (response.isSuccessful && response.body() != null) { //if the code returned is >= 200 and < 300 AND the the body ain't empty

                        val anime = response.body() //getting the AnimeResponse fields
                        view.showDetail(anime!!)

                    } else {
                    view.showError("API ERROR : is not successful")
                }
            }

            override fun onFailure(call: Call<AnimeResponse>, t: Throwable) {
                view.showError("API ERROR : onFailure")
            }

        })
    }

}