PixelDroid-App-Android/app/src/main/java/com/h/pixeldroid/LoginActivity.kt

184 lines
6.2 KiB
Kotlin
Raw Normal View History

2020-03-05 19:02:22 +01:00
package com.h.pixeldroid
import android.content.ActivityNotFoundException
import android.content.Context
2020-03-06 18:24:20 +01:00
import android.content.Intent
import android.content.SharedPreferences
2020-03-05 20:36:23 +01:00
import android.net.Uri
2020-03-05 19:02:22 +01:00
import android.os.Bundle
import android.util.Log
2020-03-05 20:36:23 +01:00
import androidx.appcompat.app.AppCompatActivity
import androidx.browser.customtabs.CustomTabsIntent
2020-03-05 20:36:23 +01:00
import com.h.pixeldroid.api.PixelfedAPI
2020-03-06 08:37:59 +01:00
import com.h.pixeldroid.objects.Application
2020-03-06 18:24:20 +01:00
import com.h.pixeldroid.objects.Token
import kotlinx.android.synthetic.main.activity_login.*
2020-03-06 18:24:20 +01:00
import okhttp3.HttpUrl
import retrofit2.Call
import retrofit2.Callback
import retrofit2.Response
2020-03-05 19:02:22 +01:00
class LoginActivity : AppCompatActivity() {
2020-03-06 18:24:20 +01:00
private val OAUTH_SCHEME = "oauth2redirect"
private val PACKAGE_ID = "com.h.pixeldroid"
private val SCOPE = "read write follow"
private val APP_NAME = "PixelDroid"
private lateinit var preferences: SharedPreferences
2020-03-05 19:02:22 +01:00
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_login)
2020-03-05 20:36:23 +01:00
2020-03-06 18:24:20 +01:00
connect_instance_button.setOnClickListener { onClickConnect() }
preferences = getSharedPreferences(
"$PACKAGE_ID.pref", Context.MODE_PRIVATE
)
}
override fun onStart(){
super.onStart()
val url = intent.data
if (url != null && url.toString().startsWith("$OAUTH_SCHEME://$PACKAGE_ID")) {
val code = url.getQueryParameter("code")
val error = url.getQueryParameter("error")
// Restore previous values from preferences
val domain = preferences.getString("domain", "")
val clientId = preferences.getString("clientID", "")
val clientSecret = preferences.getString("clientSecret", "")
if (code != null && !domain.isNullOrEmpty() && !clientId.isNullOrEmpty() && !clientSecret.isNullOrEmpty()) {
//Successful authorization
val callback = object : Callback<Token> {
override fun onResponse(call: Call<Token>, response: Response<Token>) {
if (response.isSuccessful) {
authenticationSuccessful(domain, response.body()?.access_token)
} else {
failedRegistration("Error getting token")
}
}
override fun onFailure(call: Call<Token>, t: Throwable) {
failedRegistration("Error getting token")
}
}
val pixelfedAPI = PixelfedAPI.create("https://$domain")
pixelfedAPI.obtainToken(clientId, clientSecret, "$OAUTH_SCHEME://$PACKAGE_ID", SCOPE, code,
"authorization_code").enqueue(callback)
} else if (error != null) {
failedRegistration("Authentication denied")
} else {
failedRegistration("Unknown response")
}
}
2020-03-05 19:02:22 +01:00
}
2020-03-06 18:24:20 +01:00
private fun authenticationSuccessful(domain: String, accessToken: String?) {
Log.e("Token", accessToken!!)
val intent = Intent(this, MainActivity::class.java)
startActivity(intent)
finish()
}
private fun onClickConnect() {
connect_instance_button.isEnabled = false
val domain = editText.text.toString()
val normalizedDomain = normalizeDomain(domain)
try{
HttpUrl.Builder().host(domain).scheme("https").build()
} catch (e: IllegalArgumentException) {
failedRegistration("Invalid domain")
return
}
preferences.edit()
.putString("domain", normalizedDomain)
.apply()
val callback = object : Callback<Application> {
override fun onResponse(call: Call<Application>, response: Response<Application>) {
if (!response.isSuccessful) {
2020-03-06 18:24:20 +01:00
failedRegistration()
return
}
val credentials = response.body()
2020-03-06 18:24:20 +01:00
val clientId = credentials?.client_id ?: return failedRegistration()
val clientSecret = credentials.client_secret
2020-03-06 18:24:20 +01:00
preferences.edit()
.putString("clientID", clientId)
.putString("clientSecret", clientSecret)
.apply()
2020-03-06 18:24:20 +01:00
redirect(normalizedDomain, clientId)
}
override fun onFailure(call: Call<Application>, t: Throwable) {
2020-03-06 18:24:20 +01:00
failedRegistration()
return
}
}
2020-03-06 18:24:20 +01:00
val pixelfedAPI = PixelfedAPI.create("https://$normalizedDomain")
pixelfedAPI.registerApplication(
APP_NAME,
"$OAUTH_SCHEME://$PACKAGE_ID", SCOPE
)
.enqueue(callback)
}
2020-03-05 20:36:23 +01:00
2020-03-06 18:24:20 +01:00
private fun failedRegistration(message: String =
"Could not register the application with this server"){
connect_instance_button.isEnabled = true
editText.error = message
}
private fun normalizeDomain(domain: String): String {
var d = domain.replace("http://", "")
d = d.replace("https://", "")
return d.trim(Char::isWhitespace)
}
2020-03-05 20:36:23 +01:00
2020-03-06 18:24:20 +01:00
fun redirect(normalizedDomain: String, client_id: String) {
val url = "https://$normalizedDomain/oauth/authorize?" +
"client_id" + "=" + client_id + "&" +
2020-03-06 18:24:20 +01:00
"redirect_uri" + "=" + "$OAUTH_SCHEME://$PACKAGE_ID" + "&" +
"response_type=code" + "&" +
2020-03-06 18:24:20 +01:00
"scope=$SCOPE"
browser(this, url)
2020-03-05 20:36:23 +01:00
}
2020-03-05 19:02:22 +01:00
2020-03-06 18:24:20 +01:00
private fun browser(context: Context, url: String) {
val intent = CustomTabsIntent.Builder().build()
try {
intent.launchUrl(context, Uri.parse(url))
} catch (e: ActivityNotFoundException) {
2020-03-06 18:24:20 +01:00
val browserIntent = Intent(Intent.ACTION_VIEW, Uri.parse(url))
if (browserIntent.resolveActivity(packageManager) != null) {
startActivity(browserIntent)
} else {
failedRegistration(message="Could not launch a browser, do you have one?")
return
}
}
2020-03-06 18:24:20 +01:00
connect_instance_button.isEnabled = true
2020-03-05 19:02:22 +01:00
}
}