blob: 3f1d008720b68a07ecfced90d9b952152f7c7563 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
package xyz.adjutor.aniki.topanime
import android.content.Context
import android.content.SharedPreferences
import android.os.Bundle
import android.widget.ImageView
import android.widget.TextView
import android.widget.Toast
import androidx.appcompat.app.AppCompatActivity
import com.bumptech.glide.Glide
import com.bumptech.glide.request.RequestOptions
import com.google.gson.GsonBuilder
import com.google.gson.reflect.TypeToken
import retrofit2.Call
import retrofit2.Callback
import retrofit2.Response
import retrofit2.Retrofit
import retrofit2.converter.gson.GsonConverterFactory
import xyz.adjutor.aniki.R
import xyz.adjutor.aniki.anime.AnimeApi
import xyz.adjutor.aniki.anime.RestAnimeResponse
import java.lang.reflect.Type
class DetailTopAnimeActivity : AppCompatActivity() {
private var baseUrl = "https://api.jikan.moe/"
var sharedPreferences: SharedPreferences? = null
private val gson = GsonBuilder()
.setLenient()
.create()
private val intentAnimeId = "theanimeid"
private val intentAnimeTitle = "theanimetitle"
private val intentAnimeRank = "theanimerank"
private val intentAnimeScore = "theanimescore"
private val intentAnimeImageUrl = "theanimeimageurl"
private val intentAnimeEpisodes = "theanimeepisodes"
private val intentAnimeStartDate = "theanimestartdate"
private val intentAnimeEndDate = "theanimeenddate"
private val intentAnimeUrl = "theanimeurl"
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_detail_top_anime)
sharedPreferences = this.getSharedPreferences("sp_anime", Context.MODE_PRIVATE)
val animeId = intent.getStringExtra(intentAnimeId)
val animeTitle = intent.getStringExtra(intentAnimeTitle)
val animeRank = intent.getStringExtra(intentAnimeRank)
val animeScore = intent.getStringExtra(intentAnimeScore)
val animeImageUrl = intent.getStringExtra(intentAnimeImageUrl)
val animeEpisodes = intent.getStringExtra(intentAnimeEpisodes)
val animeStartDate = intent.getStringExtra(intentAnimeStartDate)
val animeEndDate = intent.getStringExtra(intentAnimeEndDate)
val animeUrl = intent.getStringExtra(intentAnimeUrl)
val tvId: TextView = findViewById(R.id.tv_detail_id)
val tvTitle: TextView = findViewById(R.id.tv_detail_title)
val tvRank: TextView = findViewById(R.id.tv_detail_rank)
val tvScore: TextView = findViewById(R.id.tv_detail_score)
val ivImage: ImageView = findViewById(R.id.iv_detail_image)
val tvEpisodes: TextView = findViewById(R.id.tv_episodes)
val tvStartDate: TextView = findViewById(R.id.tv_start_date)
val tvEndDate: TextView = findViewById(R.id.tv_end_date)
val tvUrl: TextView = findViewById(R.id.tv_url)
tvId.text = animeId
tvTitle.text = animeTitle
tvRank.text = animeRank
tvScore.text = animeScore
Glide
.with(this)
.load(animeImageUrl)
.apply(RequestOptions().override(400))
.into(ivImage)
//using null as a string because it has been converted to a string before
tvEpisodes.text = if (animeEpisodes != "null"){
animeEpisodes
} else {
fieldIsNull()
}
tvStartDate.text = animeStartDate
tvEndDate.text = if (animeEndDate != "null"){
animeEndDate
} else {
fieldIsNull()
}
tvUrl.text = animeUrl
val anime: RestAnimeResponse? = getDataFromCache(animeId.toString())
if(anime != null ){
showDetail(anime)
} else {
//taking the API's fields I want and displaying them
makeApiCall(baseUrl, animeId.toString())
}
}
private fun getDataFromCache(animeId: String): RestAnimeResponse? {
val jsonAnime: String?= sharedPreferences?.getString(animeId, null)
return if(jsonAnime == null) {
null
} else {
val type: Type = object : TypeToken<RestAnimeResponse>() {}.type
gson.fromJson(jsonAnime, type)
}
}
private fun makeApiCall(BASE_URL: String, animeId: String) {
val retrofit = Retrofit.Builder()
.baseUrl(BASE_URL)
.addConverterFactory(GsonConverterFactory.create(gson))
.build()
val service = retrofit.create(AnimeApi::class.java)
val call = service.getAnimeData(animeId) //based on the id
call.enqueue(object : Callback<RestAnimeResponse> {
override fun onResponse(call: Call<RestAnimeResponse>, response: Response<RestAnimeResponse>) {
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 RestAnimeResponse fields
saveList(anime)
showDetail(anime!!)
} else {
showError("API ERROR : is not successful")
}
}
override fun onFailure(call: Call<RestAnimeResponse>, t: Throwable) {
showError("API ERROR : onFailure")
}
})
}
private fun showDetail(anime: RestAnimeResponse) {
//elements from RestAnimeResponse
val tvSynopsis: TextView = findViewById(R.id.tv_synopsis)
tvSynopsis.text = anime.synopsis.toString()
}
fun showError(text: String) {
Toast.makeText(this, text, Toast.LENGTH_LONG).show()
}
private fun fieldIsNull(): String{
return "Unknown"
}
fun saveList(anime: RestAnimeResponse?) {
val jsonString: String = gson.toJson(anime)
sharedPreferences
?.edit()
?.putString(anime?.mal_id.toString(), jsonString)
?.apply()
}
}
|