• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2014 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.tv.settings.users;
18 
19 import android.content.Context;
20 import android.content.RestrictionEntry;
21 import android.content.res.Resources;
22 import android.os.Bundle;
23 import android.os.UserHandle;
24 import android.os.UserManager;
25 
26 import com.android.tv.settings.R;
27 
28 import java.util.ArrayList;
29 
30 public class RestrictionUtils {
31 
32     public static final String [] sRestrictionKeys = {
33         UserManager.DISALLOW_SHARE_LOCATION,
34     };
35 
36     public static final int [] sRestrictionTitles = {
37         R.string.restriction_location_enable_title,
38     };
39 
40     public static final int [] sRestrictionDescriptions = {
41         R.string.restriction_location_enable_summary,
42     };
43 
44     /**
45      * Returns the current user restrictions in the form of application
46      * restriction entries.
47      * @return list of RestrictionEntry objects with user-visible text.
48      */
getRestrictions(Context context, UserHandle user)49     public static ArrayList<RestrictionEntry> getRestrictions(Context context, UserHandle user) {
50         Resources res = context.getResources();
51         ArrayList<RestrictionEntry> entries = new ArrayList<>();
52         UserManager um = UserManager.get(context);
53         Bundle userRestrictions = um.getUserRestrictions(user);
54 
55         for (int i = 0; i < sRestrictionKeys.length; i++) {
56             RestrictionEntry entry = new RestrictionEntry(
57                     sRestrictionKeys[i],
58                     !userRestrictions.getBoolean(sRestrictionKeys[i], false));
59             entry.setTitle(res.getString(sRestrictionTitles[i]));
60             entry.setDescription(res.getString(sRestrictionDescriptions[i]));
61             entry.setType(RestrictionEntry.TYPE_BOOLEAN);
62             entries.add(entry);
63         }
64 
65         return entries;
66     }
67 
setRestrictions(Context context, ArrayList<RestrictionEntry> entries, UserHandle user)68     public static void setRestrictions(Context context, ArrayList<RestrictionEntry> entries,
69             UserHandle user) {
70         UserManager um = UserManager.get(context);
71 
72         for (RestrictionEntry entry : entries) {
73             um.setUserRestriction(entry.getKey(), !entry.getSelectedState(), user);
74         }
75     }
76 }
77