aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2021-05-19 10:07:23 +0200
committerClyhtsuriva <aimeric@adjutor.xyz>2021-05-19 10:07:23 +0200
commit8ede9457fd21ac5e272e73f5ece1d4bc9c23faab (patch)
tree366dcab01a2a6ab40fed72cc25cf1bb4368c9589 /app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime
parent1740c8c0ec4a7fe371c30bc6be784bdc9407dbe2 (diff)
Big updaterelease/3.2
Restructuring the packages and adding a Constants.kt for the api URL. Also adding gson in Singletons.kt
Diffstat (limited to 'app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime')
-rw-r--r--app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/DetailSearchAnimeController.kt56
-rw-r--r--app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/DetailTopAnimeController.kt90
-rw-r--r--app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/SearchAnimeController.kt65
-rw-r--r--app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/TopAnimeController.kt124
4 files changed, 0 insertions, 335 deletions
diff --git a/app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/DetailSearchAnimeController.kt b/app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/DetailSearchAnimeController.kt
deleted file mode 100644
index e12de3a..0000000
--- a/app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/DetailSearchAnimeController.kt
+++ /dev/null
@@ -1,56 +0,0 @@
-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")
- }
-
- })
- }
-
-} \ No newline at end of file
diff --git a/app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/DetailTopAnimeController.kt b/app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/DetailTopAnimeController.kt
deleted file mode 100644
index 3fb13b4..0000000
--- a/app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/DetailTopAnimeController.kt
+++ /dev/null
@@ -1,90 +0,0 @@
-package xyz.adjutor.aniki.presentation.controller.anime
-
-import android.content.Context
-import android.content.SharedPreferences
-import com.google.gson.Gson
-import com.google.gson.GsonBuilder
-import com.google.gson.reflect.TypeToken
-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.DetailTopAnimeActivity
-import java.lang.reflect.Type
-
-class DetailTopAnimeController {
-
- private lateinit var sharedPreferences: SharedPreferences
- lateinit var gson: Gson
- private lateinit var baseUrl: String //the api's base url
- lateinit var view: DetailTopAnimeActivity
-
- fun onStart(DetailTopAnimeActivity: DetailTopAnimeActivity, animeId: String) {
-
- view = DetailTopAnimeActivity
- baseUrl = "https://api.jikan.moe/" //the api's base url
- gson = GsonBuilder()
- .setLenient()
- .create()
- sharedPreferences =
- view.applicationContext.getSharedPreferences("sp_anime", Context.MODE_PRIVATE)
-
- val anime: AnimeResponse? = getDataFromCache(animeId)
- if (anime != null) {
- view.showDetail(anime)
- } else {
- //taking the API's fields I want and displaying them
- makeApiCall(baseUrl, animeId)
- }
- }
-
- private fun getDataFromCache(animeId: String): AnimeResponse? {
- val jsonAnime: String? = sharedPreferences.getString(animeId, null)
-
- return if (jsonAnime == null) {
- null
- } else {
- val type: Type = object : TypeToken<AnimeResponse>() {}.type
- gson.fromJson(jsonAnime, type)
- }
- }
-
- 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
- saveList(anime)
- view.showDetail(anime!!)
-
- } else {
- view.showError("API ERROR : is not successful")
- }
- }
-
- override fun onFailure(call: Call<AnimeResponse>, t: Throwable) {
- view.showError("API ERROR : onFailure")
- }
-
- })
- }
-
- fun saveList(anime: AnimeResponse?) {
- val jsonString: String = gson.toJson(anime)
-
- sharedPreferences
- .edit()
- .putString(anime?.mal_id.toString(), jsonString)
- .apply()
- }
-
-} \ No newline at end of file
diff --git a/app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/SearchAnimeController.kt b/app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/SearchAnimeController.kt
deleted file mode 100644
index 5951f1b..0000000
--- a/app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/SearchAnimeController.kt
+++ /dev/null
@@ -1,65 +0,0 @@
-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.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) {
-
- Singletons
- .searchAnimeApi
- .getSearchAnimeData(q = query)
- .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
diff --git a/app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/TopAnimeController.kt b/app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/TopAnimeController.kt
deleted file mode 100644
index 57dc10b..0000000
--- a/app/src/main/java/xyz/adjutor/aniki/presentation/controller/anime/TopAnimeController.kt
+++ /dev/null
@@ -1,124 +0,0 @@
-package xyz.adjutor.aniki.presentation.controller.anime
-
-import android.content.Context
-import android.content.SharedPreferences
-import android.view.View
-import com.google.gson.Gson
-import com.google.gson.GsonBuilder
-import com.google.gson.reflect.TypeToken
-import retrofit2.Call
-import retrofit2.Callback
-import retrofit2.Response
-import xyz.adjutor.aniki.presentation.Singletons
-import xyz.adjutor.aniki.presentation.model.anime.TopAnime
-import xyz.adjutor.aniki.presentation.model.anime.TopAnimeResponse
-import xyz.adjutor.aniki.presentation.view.anime.TopAnimePage
-import java.lang.reflect.Type
-import kotlin.properties.Delegates
-
-class TopAnimeController {
-
- lateinit var sharedPreferences: SharedPreferences
- lateinit var gson: Gson
- lateinit var baseUrl: String //the api's base url
- var page by Delegates.notNull<Int>()
- lateinit var view: TopAnimePage
-
- fun onStart(topAnimePage: TopAnimePage, viewTopAnimePage: View) {
-
- view = topAnimePage
- baseUrl = "https://api.jikan.moe/" //the api's base url
- page = 1
- gson = GsonBuilder()
- .setLenient()
- .create()
- sharedPreferences =
- viewTopAnimePage.context.getSharedPreferences("sp_anime", Context.MODE_PRIVATE)
-
-
- val animeList: List<TopAnime>? = getDataFromCache()
- if (animeList != null) {
- view.showList(viewTopAnimePage, animeList)
- } else {
- makeApiCall(view, baseUrl, 1)
- }
- }
-
- fun makeApiCall(view: TopAnimePage, BASE_URL: String, page: Int) {
-
- Singletons
- .topAnimeApi
- .getTopAnimeData(page)
- .enqueue(object : Callback<TopAnimeResponse> {
- override fun onResponse(
- call: Call<TopAnimeResponse>,
- response: Response<TopAnimeResponse>
- ) {
- if (response.isSuccessful && response.body() != null) { //if the code returned is >= 200 and < 300 AND the the body ain't empty
-
- val animeList: List<TopAnime> = response.body()!!
- .getResults() //getting the "top" field containing our list of TopAnimes
- saveList(animeList)
- 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<TopAnimeResponse>, t: Throwable) {
- view.showError()
- }
-
- })
- }
-
- private fun saveList(animeList: List<TopAnime>) {
- val jsonString: String = gson.toJson(animeList)
-
- sharedPreferences
- .edit()
- .putString("jsonAnimeList", jsonString)
- .apply()
- }
-
- private fun getDataFromCache(): List<TopAnime>? {
- //the value of the animeList json, if nothing is found, return null
- val jsonAnime: String? = sharedPreferences.getString("jsonAnimeList", null)
-
- //if it's null, well, return null
- return if (jsonAnime == null) {
- null
- } else { //else deserialize the list and return it
- val listType: Type = object : TypeToken<List<TopAnime>>() {}.type
- gson.fromJson(jsonAnime, listType)
- }
- }
-
-
- fun onButtonPrevClick() {
- if (page > 1) { // if we're not on the first page, because we can't go back if we're on the first one.
- page -= 1
- makeApiCall(view, baseUrl, page)
- view.showText("Page $page has been loaded.")
- } else {
- view.showText("You're already on page 1. (If you're actually not, refresh the list.)")
- }
- }
-
- fun onButtonNextClick() {
- page += 1
- makeApiCall(view, baseUrl, page)
- view.showText("Page $page has been loaded.")
- }
-
- fun updateList() {
- makeApiCall(view, baseUrl, 1)
- view.showText("Data refreshed")
- page = 1
- }
-
-} \ No newline at end of file