Browse Source

merged api

yattoz 4 years ago
parent
commit
f133bea0ac

+ 2 - 2
app/build.gradle View File

29
         applicationId "fr.forum_thalie.tsumugi"
29
         applicationId "fr.forum_thalie.tsumugi"
30
         minSdkVersion 16
30
         minSdkVersion 16
31
         targetSdkVersion 29
31
         targetSdkVersion 29
32
-        versionCode 100
33
-        versionName "1.0.0"
32
+        versionCode 110
33
+        versionName "1.1.0"
34
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
34
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
35
         vectorDrawables.useSupportLibrary = true
35
         vectorDrawables.useSupportLibrary = true
36
     }
36
     }

+ 0 - 3
app/src/main/AndroidManifest.xml View File

31
                 <action android:name="android.media.browse.MediaBrowserService" />
31
                 <action android:name="android.media.browse.MediaBrowserService" />
32
             </intent-filter>
32
             </intent-filter>
33
         </service>
33
         </service>
34
-        <service android:name=".streamerNotificationService.StreamerMonitorService"
35
-            android:enabled="true"
36
-            android:exported="true"/>
37
 
34
 
38
         <receiver android:name=".BootBroadcastReceiver"
35
         <receiver android:name=".BootBroadcastReceiver"
39
             android:directBootAware="true"
36
             android:directBootAware="true"

+ 3 - 0
app/src/main/java/fr/forum_thalie/tsumugi/BootBroadcastReceiver.kt View File

22
 
22
 
23
         if (arg1.getStringExtra("action") == "$tag.${Actions.PLAY_OR_FALLBACK.name}" )
23
         if (arg1.getStringExtra("action") == "$tag.${Actions.PLAY_OR_FALLBACK.name}" )
24
         {
24
         {
25
+
25
             RadioAlarm.instance.setNextAlarm(context) // schedule next alarm
26
             RadioAlarm.instance.setNextAlarm(context) // schedule next alarm
27
+            if (!PlayerStore.instance.isInitialized)
28
+                PlayerStore.instance.initApi()
26
             if (PlayerStore.instance.streamerName.value.isNullOrBlank())
29
             if (PlayerStore.instance.streamerName.value.isNullOrBlank())
27
                 PlayerStore.instance.initPicture(context)
30
                 PlayerStore.instance.initPicture(context)
28
 
31
 

+ 6 - 3
app/src/main/java/fr/forum_thalie/tsumugi/MainActivity.kt View File

129
         colorGreenListCompat = (ResourcesCompat.getColorStateList(resources, R.color.button_green_compat, null))
129
         colorGreenListCompat = (ResourcesCompat.getColorStateList(resources, R.color.button_green_compat, null))
130
         colorAccent = (ResourcesCompat.getColor(resources, R.color.colorAccent, null))
130
         colorAccent = (ResourcesCompat.getColor(resources, R.color.colorAccent, null))
131
 
131
 
132
+        // fetch program
133
+        Planning.instance.parseUrl(/* getString(R.string.planning_url) */ context = this)
134
+
135
+        PlayerStore.instance.initUrl(this)
136
+        PlayerStore.instance.initApi()
137
+
132
         // Post-UI Launch
138
         // Post-UI Launch
133
         if (PlayerStore.instance.isInitialized)
139
         if (PlayerStore.instance.isInitialized)
134
         {
140
         {
160
             isTimerStarted = true
166
             isTimerStarted = true
161
         }
167
         }
162
 
168
 
163
-        // fetch program
164
-        Planning.instance.parseUrl(/* getString(R.string.planning_url) */ context = this)
165
-
166
         // initialize the UI
169
         // initialize the UI
167
         setTheme(R.style.AppTheme)
170
         setTheme(R.style.AppTheme)
168
         setContentView(R.layout.activity_main)
171
         setContentView(R.layout.activity_main)

+ 12 - 0
app/src/main/java/fr/forum_thalie/tsumugi/ParametersActivity.kt View File

1
 package fr.forum_thalie.tsumugi
1
 package fr.forum_thalie.tsumugi
2
 
2
 
3
 import android.os.Bundle
3
 import android.os.Bundle
4
+import android.view.MenuItem
4
 import fr.forum_thalie.tsumugi.preferences.*
5
 import fr.forum_thalie.tsumugi.preferences.*
5
 
6
 
6
 
7
 
38
             .replace(R.id.parameters_host_container, fragmentToLoad)
39
             .replace(R.id.parameters_host_container, fragmentToLoad)
39
             .commit()
40
             .commit()
40
     }
41
     }
42
+
43
+    // Make the Up button function as back instead of always bringing us to the main activity
44
+    override fun onOptionsItemSelected(item: MenuItem): Boolean {
45
+        return when (item.itemId) {
46
+            android.R.id.home -> {
47
+                onBackPressed()
48
+                true
49
+            }
50
+            else -> super.onOptionsItemSelected(item)
51
+        }
52
+    }
41
 }
53
 }

+ 28 - 0
app/src/main/java/fr/forum_thalie/tsumugi/RadioService.kt View File

124
 
124
 
125
     private val titleObserver = Observer<String> {
125
     private val titleObserver = Observer<String> {
126
         // We're checking if a new song arrives. If so, we put the currentSong in Lp and update the backup.
126
         // We're checking if a new song arrives. If so, we put the currentSong in Lp and update the backup.
127
+
128
+        if (PlayerStore.instance.playbackState.value == PlaybackStateCompat.STATE_PLAYING)
129
+        {
130
+            Log.d(tag, radioTag + "SONG CHANGED AND PLAYING")
131
+            // we activate latency compensation only if it's been at least 2 songs...
132
+            when {
133
+                PlayerStore.instance.isStreamDown -> {
134
+                    // if we reach here, it means that the observer has been called by a new song and that the stream was down previously.
135
+                    // so the stream is now back to normal.
136
+                    PlayerStore.instance.isStreamDown = false
137
+                    PlayerStore.instance.initApi()
138
+                }
139
+                PlayerStore.instance.currentSong.title.value == noConnectionValue -> {
140
+                    PlayerStore.instance.isStreamDown = true
141
+                }
142
+                else -> {
143
+                    PlayerStore.instance.fetchApi(numberOfSongs >= 2)
144
+                }
145
+            }
146
+        }
147
+
127
         if (PlayerStore.instance.currentSong != PlayerStore.instance.currentSongBackup
148
         if (PlayerStore.instance.currentSong != PlayerStore.instance.currentSongBackup
128
             && it != noConnectionValue)
149
             && it != noConnectionValue)
129
         {
150
         {
130
             PlayerStore.instance.updateLp()
151
             PlayerStore.instance.updateLp()
152
+            PlayerStore.instance.updateQueue()
131
         }
153
         }
132
         nowPlayingNotification.update(this)
154
         nowPlayingNotification.update(this)
133
         Planning.instance.checkProgramme()
155
         Planning.instance.checkProgramme()
163
 
185
 
164
         preferenceStore = PreferenceManager.getDefaultSharedPreferences(this)
186
         preferenceStore = PreferenceManager.getDefaultSharedPreferences(this)
165
 
187
 
188
+        // start ticker for when the player is stopped
189
+        val periodString = PreferenceManager.getDefaultSharedPreferences(this).getString("fetchPeriod", "10") ?: "10"
190
+        val period: Long = Integer.parseInt(periodString).toLong()
191
+        if (period > 0)
192
+            apiTicker.schedule(ApiFetchTick(), 0, period * 1000)
193
+
166
         // Define managers
194
         // Define managers
167
         telephonyManager = getSystemService(Context.TELEPHONY_SERVICE) as TelephonyManager
195
         telephonyManager = getSystemService(Context.TELEPHONY_SERVICE) as TelephonyManager
168
         telephonyManager?.listen(phoneStateListener, PhoneStateListener.LISTEN_CALL_STATE)
196
         telephonyManager?.listen(phoneStateListener, PhoneStateListener.LISTEN_CALL_STATE)

+ 10 - 0
app/src/main/java/fr/forum_thalie/tsumugi/Tickers.kt View File

1
 package fr.forum_thalie.tsumugi
1
 package fr.forum_thalie.tsumugi
2
 
2
 
3
+import android.support.v4.media.session.PlaybackStateCompat
3
 import fr.forum_thalie.tsumugi.playerstore.PlayerStore
4
 import fr.forum_thalie.tsumugi.playerstore.PlayerStore
4
 import java.util.*
5
 import java.util.*
5
 
6
 
7
+class ApiFetchTick  : TimerTask() {
8
+    override fun run() {
9
+        if (PlayerStore.instance.playbackState.value == PlaybackStateCompat.STATE_STOPPED)
10
+        {
11
+            PlayerStore.instance.fetchApi()
12
+        }
13
+    }
14
+}
15
+
6
 class Tick  : TimerTask() {
16
 class Tick  : TimerTask() {
7
     override fun run() {
17
     override fun run() {
8
         PlayerStore.instance.currentTime.postValue(PlayerStore.instance.currentTime.value!! + 500)
18
         PlayerStore.instance.currentTime.postValue(PlayerStore.instance.currentTime.value!! + 500)

+ 197 - 0
app/src/main/java/fr/forum_thalie/tsumugi/playerstore/PlayerStore.kt View File

7
 import android.util.Log
7
 import android.util.Log
8
 import androidx.lifecycle.MutableLiveData
8
 import androidx.lifecycle.MutableLiveData
9
 import fr.forum_thalie.tsumugi.*
9
 import fr.forum_thalie.tsumugi.*
10
+import org.json.JSONObject
11
+import java.net.URL
12
+import java.text.ParseException
13
+import java.text.SimpleDateFormat
14
+import java.util.*
15
+import kotlin.collections.ArrayList
10
 
16
 
11
 class PlayerStore {
17
 class PlayerStore {
12
 
18
 
19
+    private lateinit var urlToScrape: String
13
     val isPlaying: MutableLiveData<Boolean> = MutableLiveData()
20
     val isPlaying: MutableLiveData<Boolean> = MutableLiveData()
14
     val isServiceStarted: MutableLiveData<Boolean> = MutableLiveData()
21
     val isServiceStarted: MutableLiveData<Boolean> = MutableLiveData()
15
     val volume: MutableLiveData<Int> = MutableLiveData()
22
     val volume: MutableLiveData<Int> = MutableLiveData()
27
     val listenersCount: MutableLiveData<Int> = MutableLiveData()
34
     val listenersCount: MutableLiveData<Int> = MutableLiveData()
28
     var latencyCompensator : Long = 0
35
     var latencyCompensator : Long = 0
29
     var isInitialized: Boolean = false
36
     var isInitialized: Boolean = false
37
+    var isStreamDown: Boolean = false
30
 
38
 
31
     init {
39
     init {
32
         playbackState.value = PlaybackStateCompat.STATE_STOPPED
40
         playbackState.value = PlaybackStateCompat.STATE_STOPPED
43
         listenersCount.value = 0
51
         listenersCount.value = 0
44
     }
52
     }
45
 
53
 
54
+    fun initUrl(c: Context)
55
+    {
56
+        urlToScrape = c.getString(R.string.API_URL)
57
+    }
58
+
59
+    private fun getTimestamp(s: String) : Long
60
+    {
61
+        val dateFormat = SimpleDateFormat("yyyy-MM-dd hh:mm:ss", Locale.getDefault())
62
+        try {
63
+            val t: Date? = dateFormat.parse(s)
64
+            return t!!.time
65
+        } catch (e: ParseException) {
66
+            e.printStackTrace()
67
+        }
68
+        return 0
69
+    }
70
+
71
+
72
+    // ##################################################
73
+    // ################# API FUNCTIONS ##################
74
+    // ##################################################
75
+
76
+    private fun updateApi(res: JSONObject, isCompensatingLatency : Boolean = false) {
77
+        // If we're not in PLAYING state, update title / artist metadata. If we're playing, the ICY will take care of that.
78
+
79
+        val resMain = res.getJSONObject("tracks").getJSONObject("current")
80
+        val s = extractSong(resMain)
81
+        if (playbackState.value != PlaybackStateCompat.STATE_PLAYING || currentSong.title.value.isNullOrEmpty()
82
+            || currentSong.title.value == noConnectionValue)
83
+            currentSong.setTitleArtist("${s.artist.value} - ${s.title.value}")
84
+
85
+        val starts = s.startTime.value
86
+        val ends = s.stopTime.value
87
+
88
+        if (currentSong.startTime.value != starts)
89
+            currentSong.startTime.value = starts
90
+
91
+        currentSong.stopTime.value = ends
92
+
93
+        // I noticed that the server has a big (3 to 9 seconds !!) offset for current time.
94
+        // we can measure it when the player is playing, to compensate it and have our progress bar perfectly timed
95
+        // latencyCompensator is set to null when beginPlaying() (we can't measure it at the moment we start playing, since we're in the middle of a song),
96
+        // at this moment, we set it to 0. Then, next time the updateApi is called when we're playing, we measure the latency and we set out latencyComparator.
97
+        if(isCompensatingLatency)
98
+        {
99
+            latencyCompensator = getTimestamp(res.getJSONObject("station").getString("schedulerTime")) - (currentSong.startTime.value ?: getTimestamp(res.getJSONObject("station").getString("schedulerTime")))
100
+            Log.d(tag, "latency compensator set to ${(latencyCompensator).toFloat()/1000} s")
101
+        }
102
+        currentTime.value = getTimestamp(res.getJSONObject("station").getString("schedulerTime")) - (latencyCompensator)
103
+
104
+        /*
105
+        val listeners = resMain.getInt("listeners")
106
+        listenersCount.value = listeners
107
+        Log.d(tag, playerStoreTag +  "store updated")
108
+         */
109
+    }
110
+
111
+    private val scrape : (Any?) -> String =
112
+        {
113
+            URL(urlToScrape).readText()
114
+        }
115
+
116
+    /* initApi is called :
117
+        - at startup
118
+        - when a streamer changes.
119
+        the idea is to fetch the queue when a streamer changes (potentially Hanyuu), and at startup.
120
+        The Last Played is only fetched if it's empty (so, only at startup), not when a streamer changes.
121
+     */
122
+    fun initApi()
123
+    {
124
+        val post : (parameter: Any?) -> Unit = {
125
+            val result = JSONObject(it as String)
126
+            if (result.has("tracks"))
127
+            {
128
+                updateApi(result)
129
+                currentSongBackup.copy(currentSong)
130
+
131
+                isQueueUpdated.value = true
132
+
133
+                isLpUpdated.value = true
134
+            }
135
+            isInitialized = true
136
+        }
137
+        Async(scrape, post)
138
+    }
139
+
140
+    fun fetchApi(isCompensatingLatency: Boolean = false) {
141
+        val post: (parameter: Any?) -> Unit = {
142
+            val result = JSONObject(it as String)
143
+            if (!result.isNull("tracks"))
144
+            {
145
+                updateApi(result, isCompensatingLatency)
146
+            }
147
+        }
148
+        Async(scrape, post)
149
+    }
150
+
151
+    private fun extractSong(songJSON: JSONObject) : Song {
152
+        val song = Song()
153
+        song.setTitleArtist(songJSON.getString("name"))
154
+        song.startTime.value = getTimestamp(songJSON.getString("starts"))
155
+        song.stopTime.value = getTimestamp(songJSON.getString("ends"))
156
+        song.type.value = 0 // only used for R/a/dio
157
+        return song
158
+    }
159
+
160
+
46
     // ##################################################
161
     // ##################################################
47
     // ############## QUEUE / LP FUNCTIONS ##############
162
     // ############## QUEUE / LP FUNCTIONS ##############
48
     // ##################################################
163
     // ##################################################
49
 
164
 
165
+    fun updateQueue() {
166
+        if (queue.isNotEmpty()) {
167
+            queue.remove(queue.first())
168
+            Log.d(tag, queue.toString())
169
+            fetchLastRequest()
170
+            isQueueUpdated.value = true
171
+        } else if (isInitialized) {
172
+            fetchLastRequest()
173
+        } else {
174
+            Log.d(tag,  "queue is empty! fetching anyway !!")
175
+            fetchLastRequest()
176
+        }
177
+    }
178
+
50
     fun updateLp() {
179
     fun updateLp() {
51
         // note : lp is empty at initialization. This check was needed when we used the R/a/dio API.
180
         // note : lp is empty at initialization. This check was needed when we used the R/a/dio API.
52
         //if (lp.isNotEmpty()){
181
         //if (lp.isNotEmpty()){
61
     }
190
     }
62
 
191
 
63
 
192
 
193
+    private fun fetchLastRequest()
194
+    {
195
+        val sleepScrape: (Any?) -> String = {
196
+            /* we can maximize our chances to retrieve the last queued song by specifically waiting for the number of seconds we measure between ICY metadata and API change.
197
+             we add 2 seconds just to get a higher probability that the API has correctly updated. (the latency compensator can have a jitter of 1 second usually)
198
+             If, against all odds, the API hasn't updated yet, we will retry in the same amount of seconds. So we'll have the data anyway.
199
+            This way to fetch at the most probable time is a good compromise between fetch speed and fetch frequency
200
+            We don't fetch too often, and we start to fetch at the most *probable* time.
201
+            If there's no latencyCompensator measured yet, we only wait for 3 seconds.
202
+            If the song is the same, it will be called again. 3 seconds is a good compromise between speed and frequency:
203
+            it might be called twice, rarely 3 times, and it's only the 2 first songs ; after these, the latencyCompensator is set to fetch at the most probable time.
204
+             */
205
+            val sleepTime: Long = if (latencyCompensator > 0) latencyCompensator + 2000 else 3000
206
+            Thread.sleep(sleepTime) // we wait a bit (10s) for the API to get updated on R/a/dio side!
207
+            URL(urlToScrape).readText()
208
+        }
209
+
210
+        lateinit var post: (parameter: Any?) -> Unit
211
+
212
+        fun postFun(result: JSONObject)
213
+        {
214
+            if (result.has("tracks")) {
215
+                val resMain = result.getJSONObject("tracks")
216
+                /*
217
+                if ((resMain.has("isafkstream") && !resMain.getBoolean("isafkstream")) &&
218
+                    queue.isNotEmpty())
219
+                {
220
+                    queue.clear() //we're not requesting anything anymore.
221
+                    isQueueUpdated.value = true
222
+                } else if (resMain.has("isafkstream") && resMain.getBoolean("isafkstream") &&
223
+                    queue.isEmpty())
224
+                {
225
+                    initApi()
226
+                } else
227
+                */
228
+                if (resMain.has("next") /*&& queue.isNotEmpty()*/) {
229
+                    val queueJSON =
230
+                        resMain.getJSONObject("next")
231
+                    val t = extractSong(queueJSON)
232
+                    if (queue.isNotEmpty() && t == queue.last())
233
+                    {
234
+                        Log.d(tag, playerStoreTag +  "Song already in there: $t")
235
+                        Async(sleepScrape, post)
236
+                    } else {
237
+                        queue.add(queue.size, t)
238
+                        Log.d(tag, playerStoreTag +  "added last queue song: $t")
239
+                        isQueueUpdated.value = true
240
+                    }
241
+                }
242
+            }
243
+        }
244
+
245
+        post = {
246
+            val result = JSONObject(it as String)
247
+            /*  The goal is to pass the result to a function that will process it (postFun).
248
+                The magic trick is, under circumstances, the last queue song might not have been updated yet when we fetch it.
249
+                So if this is detected ==> if (t == queue.last() )
250
+                Then the function re-schedule an Async(sleepScrape, post).
251
+                To do that, the "post" must be defined BEFORE the function, but the function must be defined BEFORE the "post" value.
252
+                So I declare "post" as lateinit var, define the function, then define the "post" that calls the function. IT SHOULD WORK.
253
+             */
254
+            postFun(result)
255
+        }
256
+
257
+        Async(sleepScrape, post)
258
+    }
259
+
260
+
64
     // ##################################################
261
     // ##################################################
65
     // ############## PICTURE FUNCTIONS #################
262
     // ############## PICTURE FUNCTIONS #################
66
     // ##################################################
263
     // ##################################################

+ 20 - 3
app/src/main/java/fr/forum_thalie/tsumugi/preferences/CustomizeFragment.kt View File

1
 package fr.forum_thalie.tsumugi.preferences
1
 package fr.forum_thalie.tsumugi.preferences
2
 
2
 
3
-import android.content.Intent
4
-import android.net.Uri
5
 import android.os.Bundle
3
 import android.os.Bundle
6
-import android.util.Log
7
 import androidx.appcompat.app.AlertDialog
4
 import androidx.appcompat.app.AlertDialog
8
 import androidx.preference.*
5
 import androidx.preference.*
9
 import fr.forum_thalie.tsumugi.R
6
 import fr.forum_thalie.tsumugi.R
40
             true
37
             true
41
         }
38
         }
42
 
39
 
40
+
41
+        val fetchPeriod = preferenceScreen.findPreference<ListPreference>("fetchPeriod")
42
+        fetchPeriod?.summaryProvider = ListPreference.SimpleSummaryProvider.getInstance()
43
+        fetchPeriod?.setOnPreferenceChangeListener { _, newValue ->
44
+            val builder1 = AlertDialog.Builder(context!!)
45
+            if (Integer.parseInt(newValue as String) == 0)
46
+                builder1.setMessage(R.string.restart_the_app)
47
+            else
48
+                builder1.setMessage(R.string.restart_the_app)
49
+            builder1.setCancelable(true)
50
+
51
+            builder1.setPositiveButton("Close" ) { dialog, _ ->
52
+                dialog.cancel()
53
+            }
54
+
55
+            val alert11 = builder1.create()
56
+            alert11.show()
57
+            true
58
+        }
59
+
43
     }
60
     }
44
 }
61
 }

+ 8 - 6
app/src/main/java/fr/forum_thalie/tsumugi/ui/nowplaying/NowPlayingFragment.kt View File

49
         val volumeText: TextView = root.findViewById(R.id.volume_text)
49
         val volumeText: TextView = root.findViewById(R.id.volume_text)
50
         val progressBar: ProgressBar = root.findViewById(R.id.progressBar)
50
         val progressBar: ProgressBar = root.findViewById(R.id.progressBar)
51
         val volumeIconImage : ImageView = root.findViewById(R.id.volume_icon)
51
         val volumeIconImage : ImageView = root.findViewById(R.id.volume_icon)
52
-
52
+        val currentProgrammeText: TextView  = root.findViewById(R.id.text_current_programme)
53
         val streamerPictureImageView: ImageView = root.findViewById(R.id.streamerPicture)
53
         val streamerPictureImageView: ImageView = root.findViewById(R.id.streamerPicture)
54
 
54
 
55
         // Note: these values are not used in the generic app, but if you want to, you can use them.
55
         // Note: these values are not used in the generic app, but if you want to, you can use them.
56
         val songTitleNextText: TextView = root.findViewById(R.id.text_song_title_next)
56
         val songTitleNextText: TextView = root.findViewById(R.id.text_song_title_next)
57
-        //val songArtistNextText: TextView = root.findViewById(R.id.text_song_artist_next)
57
+        val songArtistNextText: TextView = root.findViewById(R.id.text_song_artist_next)
58
 
58
 
59
         /*
59
         /*
60
         val streamerNameText : TextView = root.findViewById(R.id.streamerName)
60
         val streamerNameText : TextView = root.findViewById(R.id.streamerName)
69
             listenersText,8, 16, 2, TypedValue.COMPLEX_UNIT_SP)
69
             listenersText,8, 16, 2, TypedValue.COMPLEX_UNIT_SP)
70
          */
70
          */
71
 
71
 
72
-        /*
72
+
73
         // trick : I can't observe the queue because it's an ArrayDeque that doesn't trigger any change...
73
         // trick : I can't observe the queue because it's an ArrayDeque that doesn't trigger any change...
74
         // so I observe a dedicated Mutable that gets set when the queue is updated.
74
         // so I observe a dedicated Mutable that gets set when the queue is updated.
75
         PlayerStore.instance.isQueueUpdated.observe(viewLifecycleOwner, Observer {
75
         PlayerStore.instance.isQueueUpdated.observe(viewLifecycleOwner, Observer {
76
-            val t = if (PlayerStore.instance.queue.size > 0) PlayerStore.instance.queue[0] else Song("No queue - ") // (it.peekFirst != null ? it.peekFirst : Song() )
76
+            val t = if (PlayerStore.instance.queue.size > 0) PlayerStore.instance.queue[0] else Song(noConnectionValue) // (it.peekFirst != null ? it.peekFirst : Song() )
77
             songTitleNextText.text = t.title.value
77
             songTitleNextText.text = t.title.value
78
             songArtistNextText.text = t.artist.value
78
             songArtistNextText.text = t.artist.value
79
         })
79
         })
80
-
80
+        /*
81
         PlayerStore.instance.streamerName.observe(viewLifecycleOwner, Observer {
81
         PlayerStore.instance.streamerName.observe(viewLifecycleOwner, Observer {
82
             streamerNameText.text = it
82
             streamerNameText.text = it
83
         })
83
         })
92
             songTitleText.text = it
92
             songTitleText.text = it
93
         })
93
         })
94
 
94
 
95
+
95
         Planning.instance.currentProgramme.observe(viewLifecycleOwner, Observer {
96
         Planning.instance.currentProgramme.observe(viewLifecycleOwner, Observer {
96
-            songTitleNextText.text = it
97
+            currentProgrammeText.text = it
97
         })
98
         })
98
 
99
 
100
+
99
         PlayerStore.instance.currentSong.artist.observe(viewLifecycleOwner, Observer {
101
         PlayerStore.instance.currentSong.artist.observe(viewLifecycleOwner, Observer {
100
             songArtistText.text = it
102
             songArtistText.text = it
101
         })
103
         })

+ 1 - 1
app/src/main/java/fr/forum_thalie/tsumugi/ui/programme/ProgrammeFragment.kt View File

37
 
37
 
38
         viewPager.adapter = adapter
38
         viewPager.adapter = adapter
39
         val todaySundayFirst = Calendar.getInstance(Planning.instance.timeZone).get(Calendar.DAY_OF_WEEK) - 1
39
         val todaySundayFirst = Calendar.getInstance(Planning.instance.timeZone).get(Calendar.DAY_OF_WEEK) - 1
40
-        viewPager.currentItem = (todaySundayFirst - 1)%7
40
+        viewPager.currentItem = (todaySundayFirst - 1 + 7)%7 // don't do modulos on negative, seems like it's weird
41
 
41
 
42
         val tabLayout : TabLayout = root.findViewById(R.id.dayTabLayout)
42
         val tabLayout : TabLayout = root.findViewById(R.id.dayTabLayout)
43
         tabLayout.setupWithViewPager(viewPager)
43
         tabLayout.setupWithViewPager(viewPager)

+ 49 - 19
app/src/main/res/layout/fragment_nowplaying.xml View File

93
             android:visibility="gone"
93
             android:visibility="gone"
94
             />
94
             />
95
 
95
 
96
-        <androidx.constraintlayout.widget.Guideline
97
-            android:id="@+id/topInfoGuideline"
98
-            android:layout_width="wrap_content"
99
-            android:layout_height="wrap_content"
100
-            android:orientation="horizontal"
101
-            app:layout_constraintGuide_percent="0.95" />
102
-
103
         <TextView
96
         <TextView
104
             android:id="@+id/sleepInfo"
97
             android:id="@+id/sleepInfo"
105
             android:layout_width="0dp"
98
             android:layout_width="0dp"
162
             android:layout_width="0dp"
155
             android:layout_width="0dp"
163
             android:layout_height="0dp"
156
             android:layout_height="0dp"
164
             android:fillViewport="true"
157
             android:fillViewport="true"
165
-            app:layout_constraintBottom_toTopOf="@id/topInfoGuideline"
158
+            android:layout_marginBottom="4dp"
159
+            app:layout_constraintBottom_toTopOf="@id/text_current_programme"
166
             app:layout_constraintEnd_toStartOf="@id/streamerPicture"
160
             app:layout_constraintEnd_toStartOf="@id/streamerPicture"
167
             app:layout_constraintStart_toStartOf="parent"
161
             app:layout_constraintStart_toStartOf="parent"
168
             app:layout_constraintTop_toBottomOf="@id/seek_bar_volume">
162
             app:layout_constraintTop_toBottomOf="@id/seek_bar_volume">
184
                     android:layout_gravity="top"
178
                     android:layout_gravity="top"
185
                     android:text="@string/up_next"
179
                     android:text="@string/up_next"
186
                     android:textAlignment="center"
180
                     android:textAlignment="center"
187
-                    android:textColor="@color/whited3"
181
+                    android:textColor="@color/whited5"
188
                     android:layout_marginTop="8dp"
182
                     android:layout_marginTop="8dp"
189
                     app:layout_constraintStart_toStartOf="parent"
183
                     app:layout_constraintStart_toStartOf="parent"
190
                     app:layout_constraintEnd_toEndOf="parent"
184
                     app:layout_constraintEnd_toEndOf="parent"
199
                     android:text=""
193
                     android:text=""
200
                     android:textAlignment="center"
194
                     android:textAlignment="center"
201
                     android:textColor="@color/whited3"
195
                     android:textColor="@color/whited3"
202
-                    android:textSize="16sp"
196
+                    android:textSize="14sp"
203
                     app:layout_constraintStart_toStartOf="parent"
197
                     app:layout_constraintStart_toStartOf="parent"
204
                     app:layout_constraintTop_toBottomOf="@id/upNext"
198
                     app:layout_constraintTop_toBottomOf="@id/upNext"
205
-                    android:visibility="gone"/>
199
+                    android:visibility="visible"/>
206
 
200
 
207
                 <TextView
201
                 <TextView
208
                     android:id="@+id/text_song_title_next"
202
                     android:id="@+id/text_song_title_next"
212
                     android:text=""
206
                     android:text=""
213
                     android:textAlignment="center"
207
                     android:textAlignment="center"
214
                     android:textColor="@color/whited"
208
                     android:textColor="@color/whited"
215
-                    android:textSize="16sp"
209
+                    android:textSize="14sp"
216
                     app:layout_constraintStart_toStartOf="parent"
210
                     app:layout_constraintStart_toStartOf="parent"
217
-                    app:layout_constraintTop_toBottomOf="@id/text_song_artist_next" />
211
+                    app:layout_constraintTop_toBottomOf="@id/text_song_artist_next"
212
+                    android:visibility="visible" />
218
 
213
 
219
             </androidx.constraintlayout.widget.ConstraintLayout>
214
             </androidx.constraintlayout.widget.ConstraintLayout>
220
         </ScrollView>
215
         </ScrollView>
221
 
216
 
217
+        <TextView
218
+            android:id="@+id/current_programme"
219
+            android:layout_width="wrap_content"
220
+            android:layout_height="wrap_content"
221
+            android:gravity="bottom"
222
+            android:text="@string/current_programme"
223
+            android:textAlignment="center"
224
+            android:textColor="@color/whited3"
225
+            android:textSize="14sp"
226
+            app:layout_constraintStart_toStartOf="parent"
227
+            app:layout_constraintBottom_toBottomOf="@id/topInfoGuideline"
228
+            android:visibility="visible" />
229
+
230
+        <TextView
231
+            android:id="@+id/text_current_programme"
232
+            android:layout_width="0dp"
233
+            android:layout_height="wrap_content"
234
+            android:text=""
235
+            android:layout_marginStart="8sp"
236
+            android:layout_marginLeft="8sp"
237
+            android:gravity="start|bottom"
238
+            android:textAlignment="textStart"
239
+            android:textColor="@color/whited"
240
+            android:textSize="14sp"
241
+            app:layout_constraintStart_toEndOf="@id/current_programme"
242
+            app:layout_constraintEnd_toEndOf="parent"
243
+            app:layout_constraintBottom_toBottomOf="@id/topInfoGuideline"
244
+            android:visibility="visible"
245
+             />
222
 
246
 
247
+        <androidx.constraintlayout.widget.Guideline
248
+            android:id="@+id/topInfoGuideline"
249
+            android:layout_width="wrap_content"
250
+            android:layout_height="wrap_content"
251
+            android:orientation="horizontal"
252
+            app:layout_constraintGuide_percent="0.97" />
223
 
253
 
224
     </androidx.constraintlayout.widget.ConstraintLayout>
254
     </androidx.constraintlayout.widget.ConstraintLayout>
225
 
255
 
268
                     android:text=""
298
                     android:text=""
269
                     android:textAlignment="center"
299
                     android:textAlignment="center"
270
                     android:textColor="@color/whited"
300
                     android:textColor="@color/whited"
271
-                    android:textSize="20sp"
301
+                    android:textSize="18sp"
272
                     app:layout_constraintBottom_toBottomOf="parent"
302
                     app:layout_constraintBottom_toBottomOf="parent"
273
                     app:layout_constraintStart_toStartOf="parent" />
303
                     app:layout_constraintStart_toStartOf="parent" />
274
 
304
 
280
                     android:text=""
310
                     android:text=""
281
                     android:textAlignment="center"
311
                     android:textAlignment="center"
282
                     android:textColor="@color/whited3"
312
                     android:textColor="@color/whited3"
283
-                    android:textSize="20sp"
313
+                    android:textSize="18sp"
284
                     app:layout_constraintBottom_toTopOf="@id/text_song_title"
314
                     app:layout_constraintBottom_toTopOf="@id/text_song_title"
285
                     app:layout_constraintStart_toStartOf="parent" />
315
                     app:layout_constraintStart_toStartOf="parent" />
286
 
316
 
305
             android:progressDrawable="@drawable/progress_bar_progress"
335
             android:progressDrawable="@drawable/progress_bar_progress"
306
             app:layout_constraintBottom_toTopOf="@id/play_pause"
336
             app:layout_constraintBottom_toTopOf="@id/play_pause"
307
             tools:layout_editor_absoluteX="0dp"
337
             tools:layout_editor_absoluteX="0dp"
308
-            android:visibility="gone"/>
338
+            android:visibility="visible"/>
309
 
339
 
310
         <!-- REMOVE VISIBILITY GONE IF YOU HAVE TIME VALUES TO DISPLAY THE PROGRESS BAR -->
340
         <!-- REMOVE VISIBILITY GONE IF YOU HAVE TIME VALUES TO DISPLAY THE PROGRESS BAR -->
311
         <TextView
341
         <TextView
318
             android:textAlignment="textEnd"
348
             android:textAlignment="textEnd"
319
             app:layout_constraintEnd_toEndOf="@id/progressBar"
349
             app:layout_constraintEnd_toEndOf="@id/progressBar"
320
             app:layout_constraintTop_toBottomOf="@id/progressBar"
350
             app:layout_constraintTop_toBottomOf="@id/progressBar"
321
-            android:visibility="gone"/>
351
+            android:visibility="visible"/>
322
 
352
 
323
         <!-- REMOVE VISIBILITY GONE IF YOU HAVE TIME VALUES TO DISPLAY THE PROGRESS BAR -->
353
         <!-- REMOVE VISIBILITY GONE IF YOU HAVE TIME VALUES TO DISPLAY THE PROGRESS BAR -->
324
         <TextView
354
         <TextView
331
             android:textAlignment="textStart"
361
             android:textAlignment="textStart"
332
             app:layout_constraintStart_toStartOf="@id/progressBar"
362
             app:layout_constraintStart_toStartOf="@id/progressBar"
333
             app:layout_constraintTop_toBottomOf="@id/progressBar"
363
             app:layout_constraintTop_toBottomOf="@id/progressBar"
334
-            android:visibility="gone"/>
364
+            android:visibility="visible"/>
335
 
365
 
336
 
366
 
337
 
367
 
381
         android:layout_width="wrap_content"
411
         android:layout_width="wrap_content"
382
         android:layout_height="wrap_content"
412
         android:layout_height="wrap_content"
383
         android:orientation="horizontal"
413
         android:orientation="horizontal"
384
-        app:layout_constraintGuide_percent="0.33" />
414
+        app:layout_constraintGuide_percent="0.38" />
385
 
415
 
386
     <androidx.constraintlayout.widget.Guideline
416
     <androidx.constraintlayout.widget.Guideline
387
     android:id="@+id/splitHorizontalLayout"
417
     android:id="@+id/splitHorizontalLayout"

+ 31 - 0
app/src/main/res/values-fr/arrays.xml View File

1
+<?xml version="1.0" encoding="utf-8"?>
2
+<resources>
3
+
4
+    <string-array name="snoozeValues">
5
+        <item name="0">@string/disable</item>
6
+        <item name="1">1</item>
7
+        <item name="2">2</item>
8
+        <item name="5">5</item>
9
+        <item name="10">10</item>
10
+        <item name="15">15</item>
11
+        <item name="20">20</item>
12
+        <item name="25">25</item>
13
+        <item name="30">30</item>
14
+    </string-array>
15
+
16
+    <string-array name="fetchPeriodString">
17
+        <item name="5">Toutes les 5 secondes (mise à jour rapide)</item>
18
+        <item name="10">Toutes les 10 secondes</item>
19
+        <item name="15">Toutes les 15 secondes</item>
20
+        <item name="20">Toutes les 20 secondes</item>
21
+        <item name="30">Toutes les 30 secondes (moins d\'utilisation de batterie)</item>
22
+    </string-array>
23
+    <string-array name="fetchPeriodValues">
24
+        <item name="5">5</item>
25
+        <item name="10">10</item>
26
+        <item name="15">15</item>
27
+        <item name="20">20</item>
28
+        <item name="30">30</item>
29
+    </string-array>
30
+
31
+</resources>

+ 3 - 1
app/src/main/res/values-fr/strings.xml View File

10
 
10
 
11
     <string name="volume">Volume : </string>
11
     <string name="volume">Volume : </string>
12
 
12
 
13
-    <string name="up_next">Émission en cours :</string>
13
+    <string name="up_next">Prochain titre :</string>
14
+    <string name="current_programme">Émission en cours : </string>
14
     <string name="now_streaming">En cours</string>
15
     <string name="now_streaming">En cours</string>
15
     <string name="error_webView">Erreur du chargement de WebView. Téléchargez Google Chrome sur le Play Store, ou activez le si vous l\'avez désactivé.</string>
16
     <string name="error_webView">Erreur du chargement de WebView. Téléchargez Google Chrome sur le Play Store, ou activez le si vous l\'avez désactivé.</string>
16
     <string name="action_settings">Paramètres</string>
17
     <string name="action_settings">Paramètres</string>
50
     <string name="sleepClosesApp">Minuterie avant fermeture de l\'application</string>
51
     <string name="sleepClosesApp">Minuterie avant fermeture de l\'application</string>
51
     <string name="setSleepDuration">Choisir une durée (en minutes)</string>
52
     <string name="setSleepDuration">Choisir une durée (en minutes)</string>
52
     <string name="willCloseIn">Extinction dans %1$d minutes</string>
53
     <string name="willCloseIn">Extinction dans %1$d minutes</string>
54
+    <string name="fetchPeriod">Choisir la fréquence de mise à jour quand la radio est stoppée</string>
53
 
55
 
54
 </resources>
56
 </resources>

+ 15 - 0
app/src/main/res/values/arrays.xml View File

13
         <item name="30">30</item>
13
         <item name="30">30</item>
14
     </string-array>
14
     </string-array>
15
 
15
 
16
+    <string-array name="fetchPeriodString">
17
+        <item name="5">Every 5 seconds (faster update)</item>
18
+        <item name="10">Every 10 seconds</item>
19
+        <item name="15">Every 15 seconds</item>
20
+        <item name="20">Every 20 seconds</item>
21
+        <item name="30">Every 30 seconds (less battery-intensive)</item>
22
+    </string-array>
23
+    <string-array name="fetchPeriodValues">
24
+        <item name="5">5</item>
25
+        <item name="10">10</item>
26
+        <item name="15">15</item>
27
+        <item name="20">20</item>
28
+        <item name="30">30</item>
29
+    </string-array>
30
+
16
 </resources>
31
 </resources>

+ 3 - 3
app/src/main/res/values/colors.xml View File

11
     <color name="whited3">#999999</color>
11
     <color name="whited3">#999999</color>
12
     <color name="whited4">#999999</color>
12
     <color name="whited4">#999999</color>
13
     <color name="whited5">#7F7F7F</color>
13
     <color name="whited5">#7F7F7F</color>
14
-    <color name="rblue">#4FC3F7</color>
14
+    <color name="rblue">#64B5F6</color>
15
     <color name="bluereq">#527a8e</color>
15
     <color name="bluereq">#527a8e</color>
16
     <color name="blueTitle">#527a8e</color>
16
     <color name="blueTitle">#527a8e</color>
17
     <color name="reqButtonPressed">#5cb85c</color>
17
     <color name="reqButtonPressed">#5cb85c</color>
20
 
20
 
21
     <color name="seek_bar_background">#585858</color>
21
     <color name="seek_bar_background">#585858</color>
22
     <color name="seek_bar_progress">#f58b01</color>
22
     <color name="seek_bar_progress">#f58b01</color>
23
-    <color name="seek_bar_secondary_progress">#4FC3F7</color>
23
+    <color name="seek_bar_secondary_progress">#64B5F6</color>
24
 
24
 
25
     <color name="progress_bar_background">#585858</color>
25
     <color name="progress_bar_background">#585858</color>
26
-    <color name="progress_bar_progress">#4FC3F7</color>
26
+    <color name="progress_bar_progress">#64B5F6</color>
27
     <color name="progress_bar_secondary_progress">#f58b01</color>
27
     <color name="progress_bar_secondary_progress">#f58b01</color>
28
 
28
 
29
     <color name="white">#FFFFFF</color>
29
     <color name="white">#FFFFFF</color>

+ 4 - 1
app/src/main/res/values/strings.xml View File

7
     <string name="github_url_new_issue">https://github.com/yattoz/Tsumugi-app/issues/</string>
7
     <string name="github_url_new_issue">https://github.com/yattoz/Tsumugi-app/issues/</string>
8
     <string name="website_url">https://tsumugi.forum-thalie.fr/</string>
8
     <string name="website_url">https://tsumugi.forum-thalie.fr/</string>
9
     <string name="rss_url">https://tsumugi.forum-thalie.fr/?feed=rss2</string>
9
     <string name="rss_url">https://tsumugi.forum-thalie.fr/?feed=rss2</string>
10
+    <string name="API_URL">https://radio.mahoro-net.org/airtime/api/live-info-v2</string>
10
     <string name="planning_url">ADD SOME URL HERE</string>
11
     <string name="planning_url">ADD SOME URL HERE</string>
11
 
12
 
12
 
13
 
24
 
25
 
25
     <string name="volume">Volume: </string>
26
     <string name="volume">Volume: </string>
26
 
27
 
27
-    <string name="up_next">Émission en cours :</string>
28
+    <string name="up_next">Up next :</string>
29
+    <string name="current_programme">Current programme : </string>
28
     <string name="now_streaming">Now streaming</string>
30
     <string name="now_streaming">Now streaming</string>
29
     <string name="error_webView">Error loading WebView. Try downloading Google Chrome on Google Play, or enabling it if you disabled it.</string>
31
     <string name="error_webView">Error loading WebView. Try downloading Google Chrome on Google Play, or enabling it if you disabled it.</string>
30
     <string name="action_settings">Settings</string>
32
     <string name="action_settings">Settings</string>
69
     <string name="sleepClosesApp">Sleep - close app after some time</string>
71
     <string name="sleepClosesApp">Sleep - close app after some time</string>
70
     <string name="setSleepDuration">Set duration (minutes)</string>
72
     <string name="setSleepDuration">Set duration (minutes)</string>
71
     <string name="willCloseIn">Will close in %1$d minutes</string>
73
     <string name="willCloseIn">Will close in %1$d minutes</string>
74
+    <string name="fetchPeriod">Set update period when stopped</string>
72
 
75
 
73
 </resources>
76
 </resources>

+ 10 - 0
app/src/main/res/xml/customize_preferences.xml View File

29
         app:defaultValue="false"
29
         app:defaultValue="false"
30
         />
30
         />
31
 
31
 
32
+    <ListPreference
33
+        app:key="fetchPeriod"
34
+        app:iconSpaceReserved="false"
35
+        android:title="@string/fetchPeriod"
36
+        app:singleLineTitle="false"
37
+        android:entries="@array/fetchPeriodString"
38
+        android:entryValues="@array/fetchPeriodValues"
39
+        android:defaultValue="10"
40
+        />
41
+
32
 </PreferenceScreen>
42
 </PreferenceScreen>