aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/presentation/controller/DetailSearchMangaController.kt
blob: d2f718aadc5a38d80e6238bec349b187ffd2be75 (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
package xyz.adjutor.aniki.presentation.controller

import retrofit2.Call
import retrofit2.Callback
import retrofit2.Response
import xyz.adjutor.aniki.presentation.Singletons
import xyz.adjutor.aniki.presentation.model.response.MangaResponse
import xyz.adjutor.aniki.presentation.view.activity.DetailSearchMangaActivity

class DetailSearchMangaController {

    lateinit var view: DetailSearchMangaActivity

    fun onStart(DetailSearchMangaActivity: DetailSearchMangaActivity, mangaId: String) {

        view = DetailSearchMangaActivity

        makeApiCall(mangaId)
    }

    private fun makeApiCall(mangaId: String) {

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

                        val manga = response.body() //getting the MangaResponse fields
                        view.showDetail(manga!!)

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

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

        })
    }

}