mirror of
https://github.com/TeamVanced/VancedMicroG
synced 2024-11-19 02:29:25 +01:00
75 lines
3.2 KiB
Java
75 lines
3.2 KiB
Java
|
/*
|
||
|
* Copyright 2013-2015 µg Project Team
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
|
||
|
package org.microg.gms.auth;
|
||
|
|
||
|
import android.accounts.Account;
|
||
|
import android.accounts.AccountManager;
|
||
|
import android.content.Context;
|
||
|
import android.util.Log;
|
||
|
|
||
|
public class AuthManager {
|
||
|
|
||
|
private static final String TAG = "GmsAuthManager";
|
||
|
|
||
|
public static void storeResponse(Context context, Account account, String packageName,
|
||
|
String sig, String service, AuthResponse response) {
|
||
|
AccountManager accountManager = AccountManager.get(context);
|
||
|
if (response.accountId != null)
|
||
|
accountManager.setUserData(account, "GoogleUserId", response.accountId);
|
||
|
if (response.Sid != null)
|
||
|
accountManager.setAuthToken(account, buildTokenKey(packageName, sig, "SID"), response.Sid);
|
||
|
if (response.LSid != null)
|
||
|
accountManager.setAuthToken(account, buildTokenKey(packageName, sig, "LSID"), response.LSid);
|
||
|
if (response.expiry > 0)
|
||
|
accountManager.setUserData(account, buildExpireKey(packageName, sig, service), Long.toString(response.expiry));
|
||
|
if (response.auth != null && response.expiry != 0) {
|
||
|
accountManager.setAuthToken(account, buildTokenKey(packageName, sig, service), response.auth);
|
||
|
accountManager.setUserData(account, buildPermKey(packageName, sig, service), "1");
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
public static boolean isPermitted(Context context, Account account, String packageName,
|
||
|
String sig, String service) {
|
||
|
AccountManager accountManager = AccountManager.get(context);
|
||
|
String perm = accountManager.getUserData(account, buildPermKey(packageName, sig, service));
|
||
|
if (!"1".equals(perm))
|
||
|
return false;
|
||
|
String exp = accountManager.getUserData(account, buildExpireKey(packageName, sig, service));
|
||
|
if (exp != null) {
|
||
|
long expLong = Long.parseLong(exp);
|
||
|
if (expLong < System.currentTimeMillis() / 1000L) {
|
||
|
Log.d(TAG, "Permission for " + packageName + " / " + service + " present, but expired");
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
private static String buildTokenKey(String packageName, String sig, String service) {
|
||
|
return packageName + ":" + sig + ":" + service;
|
||
|
}
|
||
|
|
||
|
private static String buildPermKey(String packageName, String sig, String service) {
|
||
|
return "perm." + packageName + ":" + sig + ":" + service;
|
||
|
}
|
||
|
|
||
|
private static String buildExpireKey(String packageName, String sig, String service) {
|
||
|
return "EXP." + packageName + ":" + sig + ":" + service;
|
||
|
}
|
||
|
}
|