Skip to content

Commit

Permalink
Youtube Music Support and bug fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shabinder committed Jan 7, 2021
1 parent 0c0ebde commit 243cdf1
Show file tree
Hide file tree
Showing 8 changed files with 53 additions and 20 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ android {
//Some Os's Don't give Access to Music Dir , In API 29 if we Target 30
//noinspection OldTargetApi
targetSdkVersion 29
versionCode 13
versionName "2.0.1"
versionCode 14
versionName "2.1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -160,7 +160,7 @@ dependencies {
implementation 'com.razorpay:checkout:1.6.4'
implementation "com.github.amitbd1508:AppUpdater:4.1.0"
implementation "androidx.tonyodev.fetch2:xfetch2:3.1.5"
implementation 'com.github.sealedtx:java-youtube-downloader:2.4.4'
implementation 'com.github.sealedtx:java-youtube-downloader:2.4.6'

//Crashlytics & Analytics
implementation platform('com.google.firebase:firebase-bom:26.2.0')
Expand Down
1 change: 1 addition & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<package android:name="com.gaana" />
<package android:name="com.spotify.music" />
<package android:name="com.google.android.youtube" />
<package android:name="com.google.android.apps.youtube.music" />
</queries>

<uses-permission android:name="android.permission.INTERNET"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ class SpotifyProvider @Inject constructor(
spotifyLink = resolveLink(spotifyLink)
}


val link = spotifyLink.substringAfterLast('/', "Error").substringBefore('?')
val type = spotifyLink.substringBeforeLast('/', "Error").substringAfterLast('/')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,25 +41,31 @@ class YoutubeProvider @Inject constructor(
* HI-RES Url: https://i.ytimg.com/vi/$searchId/maxresdefault.jpg"
* Normal Url: https://i.ytimg.com/vi/$searchId/hqdefault.jpg"
* */
private val sampleDomain2 = "youtu.be"
private val sampleDomain1 = "youtube.com"
private val sampleDomain1 = "music.youtube.com"
private val sampleDomain2 = "youtube.com"
private val sampleDomain3 = "youtu.be"

override suspend fun query(fullLink: String): PlatformQueryResult?{
val link = fullLink.removePrefix("https://").removePrefix("http://")
if(link.contains("playlist",true) || link.contains("list",true)){
// Given Link is of a Playlist
log("YT Play",link)
val playlistId = link.substringAfter("?list=").substringAfter("&list=").substringBefore("&")
val playlistId = link.substringAfter("?list=").substringAfter("&list=").substringBefore("&").substringBefore("?")
return getYTPlaylist(
playlistId
)
}else{//Given Link is of a Video
var searchId = "error"
if(link.contains(sampleDomain1,true) ){
searchId = link.substringAfterLast("=","error")
}
if(link.contains(sampleDomain2,true) ){
searchId = link.substringAfterLast("/","error")
when{
link.contains(sampleDomain1,true) -> {//Youtube Music
searchId = link.substringAfterLast("/","error").substringBefore("&").substringAfterLast("=")
}
link.contains(sampleDomain2,true) -> {//Standard Youtube Link
searchId = link.substringAfterLast("=","error").substringBefore("&")
}
link.contains(sampleDomain3,true) -> {//Shortened Youtube Link
searchId = link.substringAfterLast("/","error").substringBefore("&")
}
}
return if(searchId != "error") {
getYTTrack(
Expand Down Expand Up @@ -214,7 +220,7 @@ class YoutubeProvider @Inject constructor(
}
} catch (e: Exception) {
e.printStackTrace()
showDialog("An Error Occurred While Processing!")
showDialog("An Error Occurred While Processing!,$searchId")
}
}
return if(result.title.isNotBlank()) result
Expand Down
9 changes: 7 additions & 2 deletions app/src/main/java/com/shabinder/spotiflyer/ui/home/Home.kt
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,21 @@ fun AboutColumn(mainActivity: MainActivity,modifier: Modifier = Modifier) {
modifier = Modifier.clickable(
onClick = { openPlatform("com.spotify.music","http://open.spotify.com",ctx) })
)
Spacer(modifier = modifier.padding(start = 24.dp))
Spacer(modifier = modifier.padding(start = 16.dp))
Icon(imageVector = vectorResource(id = R.drawable.ic_gaana ),tint = Color.Unspecified,
modifier = Modifier.clickable(
onClick = { openPlatform("com.gaana","http://gaana.com",ctx) })
)
Spacer(modifier = modifier.padding(start = 24.dp))
Spacer(modifier = modifier.padding(start = 16.dp))
Icon(imageVector = vectorResource(id = R.drawable.ic_youtube),tint = Color.Unspecified,
modifier = Modifier.clickable(
onClick = { openPlatform("com.google.android.youtube","http://m.youtube.com",ctx) })
)
Spacer(modifier = modifier.padding(start = 12.dp))
Icon(imageVector = vectorResource(id = R.drawable.ic_youtube_music_logo),tint = Color.Unspecified,
modifier = Modifier.clickable(
onClick = { openPlatform("com.google.android.apps.youtube.music","https://music.youtube.com/",ctx) })
)
}
}
}
Expand Down
22 changes: 22 additions & 0 deletions app/src/main/res/drawable/ic_youtube_music_logo.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!--
~ Copyright (c) 2021 Shabinder Singh
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
-->

<vector android:height="44dp" android:viewportHeight="192"
android:viewportWidth="192" android:width="44dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF0000" android:pathData="M96,96m-88,0a88,88 0,1 1,176 0a88,88 0,1 1,-176 0"/>
<path android:fillColor="#FFFFFF" android:pathData="M96,54.04c23.14,0 41.96,18.82 41.96,41.96S119.14,137.96 96,137.96S54.04,119.14 54.04,96S72.86,54.04 96,54.04M96,50c-25.41,0 -46,20.59 -46,46s20.59,46 46,46s46,-20.59 46,-46S121.41,50 96,50L96,50z"/>
<path android:fillColor="#FFFFFF" android:pathData="M80,119l39,-24l-39,-22z"/>
</vector>
4 changes: 2 additions & 2 deletions app/src/main/res/xml/app_update.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

<AppUpdater>
<update>
<latestVersion>2.0.1</latestVersion>
<latestVersionCode>13</latestVersionCode>
<latestVersion>2.1</latestVersion>
<latestVersionCode>14</latestVersionCode>
<url>https://github.com/Shabinder/SpotiFlyer/releases/</url>
</update>
</AppUpdater>
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
buildscript {
ext {
compose_version = '1.0.0-alpha09'
lifecycle_version = '2.3.0-rc01'
room_version = "2.2.6"
okhttp_version = "4.9.0"
coroutines_version = "1.4.2"
coil_version = "0.4.1"
kotlin_version = "1.4.21"
lifecycle_version = '2.3.0-rc01'
room_version = "2.2.6"
okhttp_version = "4.9.0"
hilt_version = '2.30.1-alpha'
}

Expand Down

0 comments on commit 243cdf1

Please sign in to comment.