mirror of https://github.com/kurisufriend/Clover
Fix success toast always showing, even when the task was not successfulmultisite
parent
a18b41e572
commit
ee98b5c3cf
@ -0,0 +1,82 @@ |
|||||||
|
/* |
||||||
|
* Clover - 4chan browser https://github.com/Floens/Clover/
|
||||||
|
* Copyright (C) 2014 Floens |
||||||
|
* |
||||||
|
* 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 <http://www.gnu.org/licenses/>.
|
||||||
|
*/ |
||||||
|
package org.floens.chan.ui.helper; |
||||||
|
|
||||||
|
import android.app.Activity; |
||||||
|
import android.content.pm.PackageManager; |
||||||
|
import android.support.annotation.NonNull; |
||||||
|
import android.support.v4.app.ActivityCompat; |
||||||
|
import android.support.v4.content.ContextCompat; |
||||||
|
|
||||||
|
import static org.floens.chan.utils.AndroidUtils.getAppContext; |
||||||
|
|
||||||
|
public class RuntimePermissionsHelper { |
||||||
|
private static final int RUNTIME_PERMISSION_RESULT_ID = 3; |
||||||
|
|
||||||
|
private ActivityCompat.OnRequestPermissionsResultCallback callbackActvity; |
||||||
|
|
||||||
|
private CallbackHolder pendingCallback; |
||||||
|
|
||||||
|
public RuntimePermissionsHelper(ActivityCompat.OnRequestPermissionsResultCallback callbackActvity) { |
||||||
|
this.callbackActvity = callbackActvity; |
||||||
|
} |
||||||
|
|
||||||
|
public boolean hasPermission(String permission) { |
||||||
|
return ContextCompat.checkSelfPermission(getAppContext(), permission) == PackageManager.PERMISSION_GRANTED; |
||||||
|
} |
||||||
|
|
||||||
|
public boolean requestPermission(String permission, Callback callback) { |
||||||
|
if (pendingCallback == null) { |
||||||
|
pendingCallback = new CallbackHolder(); |
||||||
|
pendingCallback.callback = callback; |
||||||
|
pendingCallback.permission = permission; |
||||||
|
|
||||||
|
ActivityCompat.requestPermissions((Activity) callbackActvity, new String[]{permission}, RUNTIME_PERMISSION_RESULT_ID); |
||||||
|
|
||||||
|
return true; |
||||||
|
} else { |
||||||
|
return false; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) { |
||||||
|
if (requestCode == RUNTIME_PERMISSION_RESULT_ID && pendingCallback != null) { |
||||||
|
boolean granted = false; |
||||||
|
|
||||||
|
for (int i = 0; i < permissions.length; i++) { |
||||||
|
String permission = permissions[i]; |
||||||
|
if (permission.equals(pendingCallback.permission) && grantResults[i] == PackageManager.PERMISSION_GRANTED) { |
||||||
|
granted = true; |
||||||
|
break; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
pendingCallback.callback.onRuntimePermissionResult(granted); |
||||||
|
pendingCallback = null; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private class CallbackHolder { |
||||||
|
private Callback callback; |
||||||
|
private String permission; |
||||||
|
} |
||||||
|
|
||||||
|
public interface Callback { |
||||||
|
void onRuntimePermissionResult(boolean granted); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue