- WiP
This commit is contained in:
parent
c86ebdcf2c
commit
67fcb14b0c
@ -73,3 +73,6 @@ android {
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.android.support.constraint:constraint-layout:+'
|
||||
}
|
||||
|
@ -16,18 +16,19 @@
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/AppTheme"
|
||||
tools:ignore="GoogleAppIndexingWarning">
|
||||
|
||||
<activity android:name=".activity.VideoListActivity"
|
||||
<activity
|
||||
android:name=".activity.VideoListActivity"
|
||||
android:launchMode="singleTop">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.intent.action.SEARCH" />
|
||||
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
|
||||
<meta-data
|
||||
android:name="android.app.searchable"
|
||||
android:resource="@xml/searchable">
|
||||
</meta-data>
|
||||
android:resource="@xml/searchable"></meta-data>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.LoginActivity"
|
||||
@ -49,7 +50,11 @@
|
||||
android:enabled="true"
|
||||
android:exported="false" />
|
||||
|
||||
<activity android:name=".activity.SelectServerActivity"/>
|
||||
<activity android:name=".activity.SelectServerActivity" />
|
||||
|
||||
<service android:name=".service.VideoPlayerService" />
|
||||
|
||||
<activity android:name=".activity.UserActivity"></activity>
|
||||
</application>
|
||||
|
||||
</manifest>
|
@ -1,49 +1,33 @@
|
||||
package net.schueller.peertube.activity;
|
||||
|
||||
import android.os.StrictMode;
|
||||
import android.content.SharedPreferences;
|
||||
import android.preference.PreferenceManager;
|
||||
import android.support.annotation.NonNull;
|
||||
import android.support.v7.app.AppCompatActivity;
|
||||
import android.os.Bundle;
|
||||
import android.util.Log;
|
||||
import android.view.View;
|
||||
import android.widget.AutoCompleteTextView;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
import android.widget.Toast;
|
||||
|
||||
import net.schueller.peertube.R;
|
||||
import net.schueller.peertube.helper.APIUrlHelper;
|
||||
import net.schueller.peertube.model.OauthClient;
|
||||
import net.schueller.peertube.model.Token;
|
||||
import net.schueller.peertube.model.VideoList;
|
||||
import net.schueller.peertube.network.AuthenticationService;
|
||||
import net.schueller.peertube.network.GetVideoDataService;
|
||||
import net.schueller.peertube.network.RetrofitInstance;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import okhttp3.FormBody;
|
||||
import okhttp3.MediaType;
|
||||
import okhttp3.OkHttpClient;
|
||||
import okhttp3.Request;
|
||||
import okhttp3.RequestBody;
|
||||
import okhttp3.Response;
|
||||
import retrofit2.Call;
|
||||
import retrofit2.Callback;
|
||||
import retrofit2.Response;
|
||||
|
||||
public class LoginActivity extends AppCompatActivity {
|
||||
|
||||
OkHttpClient client = new OkHttpClient();
|
||||
public static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");
|
||||
|
||||
private String TAG = "LoginActivity";
|
||||
|
||||
|
||||
// UI references.
|
||||
private AutoCompleteTextView mEmailView;
|
||||
private EditText mPasswordView;
|
||||
private View mProgressView;
|
||||
private View mLoginFormView;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
@ -57,17 +41,12 @@ public class LoginActivity extends AppCompatActivity {
|
||||
mEmailView = findViewById(R.id.email);
|
||||
mPasswordView = findViewById(R.id.password);
|
||||
|
||||
// if (android.os.Build.VERSION.SDK_INT > 9) {
|
||||
// StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
|
||||
// StrictMode.setThreadPolicy(policy);
|
||||
// }
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
private void attemptLogin() {
|
||||
|
||||
SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(this);
|
||||
|
||||
// Reset errors.
|
||||
mEmailView.setError(null);
|
||||
@ -84,15 +63,18 @@ public class LoginActivity extends AppCompatActivity {
|
||||
AuthenticationService service = RetrofitInstance.getRetrofitInstance(apiBaseURL).create(AuthenticationService.class);
|
||||
|
||||
Call<OauthClient> call = service.getOauthClientLocal();
|
||||
|
||||
call.enqueue(new Callback<OauthClient>() {
|
||||
@Override
|
||||
public void onResponse(@NonNull Call<OauthClient> call, @NonNull retrofit2.Response<OauthClient> response) {
|
||||
public void onResponse(@NonNull Call<OauthClient> call, @NonNull Response<OauthClient> response) {
|
||||
|
||||
if (response.body() != null) {
|
||||
if (response.isSuccessful()) {
|
||||
|
||||
OauthClient oauthClient = response.body();
|
||||
|
||||
Call<Token> call2 = service.getAuthenticationToken(
|
||||
response.body().getClientId(),
|
||||
response.body().getClientSecret(),
|
||||
oauthClient.getClientId(),
|
||||
oauthClient.getClientSecret(),
|
||||
"code",
|
||||
"password",
|
||||
"upload",
|
||||
@ -103,11 +85,20 @@ public class LoginActivity extends AppCompatActivity {
|
||||
@Override
|
||||
public void onResponse(@NonNull Call<Token> call2, @NonNull retrofit2.Response<Token> response2) {
|
||||
|
||||
if (response2.body() != null) {
|
||||
Log.wtf(TAG, response2.body().getAccessToken());
|
||||
Log.wtf(TAG, response2.body().getExpiresIn());
|
||||
Log.wtf(TAG, response2.body().getRefreshToken());
|
||||
Log.wtf(TAG, response2.body().getTokenType());
|
||||
if (response2.isSuccessful()) {
|
||||
|
||||
Token token = response2.body();
|
||||
|
||||
SharedPreferences.Editor editor = sharedPref.edit();
|
||||
|
||||
// TODO: calc expiration
|
||||
//editor.putInt(getString(R.string.pref_token_expiration), token.getRefreshToken());
|
||||
|
||||
editor.putString(getString(R.string.pref_token_access), token.getAccessToken());
|
||||
editor.putString(getString(R.string.pref_token_refresh), token.getExpiresIn());
|
||||
editor.putString(getString(R.string.pref_token_type), token.getTokenType());
|
||||
editor.commit();
|
||||
|
||||
} else {
|
||||
Log.wtf(TAG, response2.toString());
|
||||
}
|
||||
|
@ -0,0 +1,41 @@
|
||||
package net.schueller.peertube.activity;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.support.v7.app.AppCompatActivity;
|
||||
import android.os.Bundle;
|
||||
|
||||
import net.schueller.peertube.R;
|
||||
|
||||
public class UserActivity extends AppCompatActivity {
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_user);
|
||||
|
||||
init();
|
||||
}
|
||||
|
||||
private void init() {
|
||||
// try to get user data
|
||||
if (!getUserData()) {
|
||||
Intent intent = new Intent(this, LoginActivity.class);
|
||||
this.startActivity(intent);
|
||||
}
|
||||
}
|
||||
|
||||
private boolean getUserData() {
|
||||
|
||||
// TODO
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onResume() {
|
||||
super.onResume();
|
||||
|
||||
init();
|
||||
|
||||
}
|
||||
}
|
@ -103,10 +103,10 @@ public class VideoListActivity extends AppCompatActivity {
|
||||
|
||||
case R.id.navigation_account:
|
||||
//Log.v(TAG, "navigation_account");
|
||||
Toast.makeText(VideoListActivity.this, "Account Not Implemented", Toast.LENGTH_SHORT).show();
|
||||
// Toast.makeText(VideoListActivity.this, "Account Not Implemented", Toast.LENGTH_SHORT).show();
|
||||
|
||||
// Intent intent = new Intent(this, LoginActivity.class);
|
||||
// this.startActivity(intent);
|
||||
Intent intent = new Intent(this, UserActivity.class);
|
||||
this.startActivity(intent);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
144
app/src/main/java/net/schueller/peertube/model/Me.java
Normal file
144
app/src/main/java/net/schueller/peertube/model/Me.java
Normal file
@ -0,0 +1,144 @@
|
||||
package net.schueller.peertube.model;
|
||||
|
||||
public class Me {
|
||||
|
||||
private Integer id;
|
||||
private Account account;
|
||||
private Boolean autoPlayVideo;
|
||||
private Boolean blocked;
|
||||
private String blockedReason;
|
||||
private String createdAt;
|
||||
private String email;
|
||||
private String emailVerified;
|
||||
private String nsfwPolicy;
|
||||
private Integer role;
|
||||
private String roleLabel;
|
||||
private String username;
|
||||
|
||||
// private VideoChannels videoChannels;
|
||||
private Integer videoQuota;
|
||||
private Integer videoQuotaDaily;
|
||||
private String webTorrentEnabled;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Account getAccount() {
|
||||
return account;
|
||||
}
|
||||
|
||||
public void setAccount(Account account) {
|
||||
this.account = account;
|
||||
}
|
||||
|
||||
public Boolean getAutoPlayVideo() {
|
||||
return autoPlayVideo;
|
||||
}
|
||||
|
||||
public void setAutoPlayVideo(Boolean autoPlayVideo) {
|
||||
this.autoPlayVideo = autoPlayVideo;
|
||||
}
|
||||
|
||||
public Boolean getBlocked() {
|
||||
return blocked;
|
||||
}
|
||||
|
||||
public void setBlocked(Boolean blocked) {
|
||||
this.blocked = blocked;
|
||||
}
|
||||
|
||||
public String getBlockedReason() {
|
||||
return blockedReason;
|
||||
}
|
||||
|
||||
public void setBlockedReason(String blockedReason) {
|
||||
this.blockedReason = blockedReason;
|
||||
}
|
||||
|
||||
public String getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
|
||||
public void setCreatedAt(String createdAt) {
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public String getEmailVerified() {
|
||||
return emailVerified;
|
||||
}
|
||||
|
||||
public void setEmailVerified(String emailVerified) {
|
||||
this.emailVerified = emailVerified;
|
||||
}
|
||||
|
||||
public String getNsfwPolicy() {
|
||||
return nsfwPolicy;
|
||||
}
|
||||
|
||||
public void setNsfwPolicy(String nsfwPolicy) {
|
||||
this.nsfwPolicy = nsfwPolicy;
|
||||
}
|
||||
|
||||
public Integer getRole() {
|
||||
return role;
|
||||
}
|
||||
|
||||
public void setRole(Integer role) {
|
||||
this.role = role;
|
||||
}
|
||||
|
||||
public String getRoleLabel() {
|
||||
return roleLabel;
|
||||
}
|
||||
|
||||
public void setRoleLabel(String roleLabel) {
|
||||
this.roleLabel = roleLabel;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public Integer getVideoQuota() {
|
||||
return videoQuota;
|
||||
}
|
||||
|
||||
public void setVideoQuota(Integer videoQuota) {
|
||||
this.videoQuota = videoQuota;
|
||||
}
|
||||
|
||||
public Integer getVideoQuotaDaily() {
|
||||
return videoQuotaDaily;
|
||||
}
|
||||
|
||||
public void setVideoQuotaDaily(Integer videoQuotaDaily) {
|
||||
this.videoQuotaDaily = videoQuotaDaily;
|
||||
}
|
||||
|
||||
public String getWebTorrentEnabled() {
|
||||
return webTorrentEnabled;
|
||||
}
|
||||
|
||||
public void setWebTorrentEnabled(String webTorrentEnabled) {
|
||||
this.webTorrentEnabled = webTorrentEnabled;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,13 @@
|
||||
package net.schueller.peertube.model;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
public class OauthClient {
|
||||
|
||||
@SerializedName("client_id")
|
||||
private String clientId;
|
||||
|
||||
@SerializedName("client_secret")
|
||||
private String clientSecret;
|
||||
|
||||
public String getClientId() {
|
||||
|
@ -1,10 +1,19 @@
|
||||
package net.schueller.peertube.model;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
public class Token {
|
||||
|
||||
@SerializedName("access_token")
|
||||
private String accessToken;
|
||||
|
||||
@SerializedName("expires_in")
|
||||
private String expiresIn;
|
||||
|
||||
@SerializedName("refresh_token")
|
||||
private String refreshToken;
|
||||
|
||||
@SerializedName("token_type")
|
||||
private String tokenType;
|
||||
|
||||
public String getAccessToken() {
|
||||
|
@ -0,0 +1,24 @@
|
||||
package net.schueller.peertube.network;
|
||||
|
||||
import net.schueller.peertube.model.Token;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import okhttp3.Interceptor;
|
||||
import okhttp3.Response;
|
||||
|
||||
public class AuthorizationInterceptor implements Interceptor {
|
||||
|
||||
public AuthorizationInterceptor() {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public Response intercept(Chain chain) throws IOException {
|
||||
Response mainResponse = chain.proceed(chain.request());
|
||||
if (mainResponse.code() == 401 || mainResponse.code() == 403) {
|
||||
|
||||
}
|
||||
return mainResponse;
|
||||
}
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package net.schueller.peertube.network;
|
||||
|
||||
import net.schueller.peertube.model.Me;
|
||||
|
||||
import retrofit2.Call;
|
||||
import retrofit2.http.GET;
|
||||
import retrofit2.http.Header;
|
||||
import retrofit2.http.Query;
|
||||
|
||||
public interface GetUserService {
|
||||
|
||||
@GET("users/me")
|
||||
Call<Me> getMe(@Header("Authorization") String authorization);
|
||||
}
|
@ -1,5 +1,6 @@
|
||||
package net.schueller.peertube.network;
|
||||
|
||||
import okhttp3.OkHttpClient;
|
||||
import retrofit2.Retrofit;
|
||||
import retrofit2.converter.gson.GsonConverterFactory;
|
||||
|
||||
@ -11,7 +12,14 @@ public class RetrofitInstance {
|
||||
public static Retrofit getRetrofitInstance(String newBaseUrl) {
|
||||
if (retrofit == null || !newBaseUrl.equals(baseUrl)) {
|
||||
baseUrl = newBaseUrl;
|
||||
|
||||
OkHttpClient.Builder okhttpClientBuilder = new OkHttpClient.Builder();
|
||||
|
||||
okhttpClientBuilder.addInterceptor(new TokenRenewInterceptor());
|
||||
okhttpClientBuilder.addInterceptor(new AuthorizationInterceptor());
|
||||
|
||||
retrofit = new retrofit2.Retrofit.Builder()
|
||||
.client(okhttpClientBuilder.build())
|
||||
.baseUrl(baseUrl)
|
||||
.addConverterFactory(GsonConverterFactory.create())
|
||||
.build();
|
||||
|
@ -0,0 +1,29 @@
|
||||
package net.schueller.peertube.network;
|
||||
|
||||
import net.schueller.peertube.model.Token;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import okhttp3.Interceptor;
|
||||
import okhttp3.Response;
|
||||
|
||||
public class TokenRenewInterceptor implements Interceptor {
|
||||
|
||||
public TokenRenewInterceptor() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public Response intercept(Chain chain) throws IOException {
|
||||
Response response = chain.proceed(chain.request());
|
||||
|
||||
// if 'x-auth-token' is available into the response header
|
||||
// save the new token into session.The header key can be
|
||||
// different upon implementation of backend.
|
||||
String newToken = response.header("x-auth-token");
|
||||
if (newToken != null) {
|
||||
|
||||
}
|
||||
|
||||
return response;
|
||||
}
|
||||
}
|
9
app/src/main/res/layout/activity_user.xml
Normal file
9
app/src/main/res/layout/activity_user.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".activity.UserActivity">
|
||||
|
||||
</android.support.constraint.ConstraintLayout>
|
@ -8,7 +8,7 @@
|
||||
<!-- Strings related to login -->
|
||||
<string name="prompt_server">Serveur</string>
|
||||
<string name="prompt_email">Email</string>
|
||||
<string name="prompt_password">Mot de passe (optionnel)</string>
|
||||
<string name="prompt_password">Mot de passe</string>
|
||||
<string name="action_sign_in">Connexion</string>
|
||||
<string name="action_sign_in_short">Connexion</string>
|
||||
<string name="error_invalid_email">Cette adresse mail n\'est pas valide</string>
|
||||
|
@ -8,7 +8,7 @@
|
||||
<!-- Strings related to login -->
|
||||
<string name="prompt_server">Server</string>
|
||||
<string name="prompt_email">Email</string>
|
||||
<string name="prompt_password">Password (optional)</string>
|
||||
<string name="prompt_password">Password</string>
|
||||
<string name="action_sign_in">Sign in</string>
|
||||
<string name="action_sign_in_short">Sign in</string>
|
||||
<string name="error_invalid_email">This email address is invalid</string>
|
||||
@ -59,5 +59,9 @@
|
||||
<string name="descr_overflow_button">More</string>
|
||||
<string name="menu_share">Share</string>
|
||||
<string name="playback_channel_name">PeerTube</string>
|
||||
<string name="pref_token_access">pref_token_access</string>
|
||||
<string name="pref_token_refresh">pref_token_refresh</string>
|
||||
<string name="pref_token_expiration">pref_token_expiration</string>
|
||||
<string name="pref_token_type">pref_token_type</string>
|
||||
|
||||
</resources>
|
||||
|
Loading…
Reference in New Issue
Block a user