| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223 |
9x
9x
4x
4x
4x
1x
1x
1x
1x
4x
8x
21x
21x
1x
1x
3x
3x
4x
4x
4x
4x
4x
4x
4x
4x
4x
4x
4x
4x
4x
1x
1x
1x
1x
1x
1x
1x
1x
1x
3x
3x
9x
9x
6x
6x
6x
6x
2x
2x
2x
1x
6x
4x
4x
4x
4x
4x
3x
4x
4x
4x
3x
4x
4x
4x
1x
5x
| import _ from 'lodash';
import { plist } from 'appium-support';
import path from 'path';
import log from './logger';
import compare from 'semver-compare';
// returns path to plist based on id for plist.
// these ids are appium terms
async function plistPaths (sim, identifier) {
let paths = [];
let simDirectory = sim.getDir();
switch (identifier) {
case 'webInspector':
paths.push(path.resolve(simDirectory, 'Library', 'Preferences', 'com.apple.webInspector.plist'));
break;
case 'mobileSafari':
paths.push(path.resolve(await sim.getAppDir('com.apple.mobilesafari'), 'Library', 'Preferences', 'com.apple.mobilesafari.plist'));
break;
case 'webUI':
paths.push(path.resolve(simDirectory, 'Library', 'Preferences', 'com.apple.WebUI.plist'));
break;
case 'webFoundation':
paths.push(path.resolve(simDirectory, 'Library', 'Preferences', 'com.apple.WebFoundation.plist'));
break;
case 'preferences':
paths.push(path.resolve(simDirectory, 'Library', 'Preferences', 'com.apple.Preferences.plist'));
break;
case 'locationServices':
paths.push(path.resolve(simDirectory, 'Library', 'Preferences', 'com.apple.locationd.plist'));
break;
case 'locationClients':
paths.push(path.resolve(simDirectory, 'Library', 'Caches', 'locationd', 'clients.plist'));
break;
case 'locationCache':
paths.push(path.resolve(simDirectory, 'Library', 'Caches', 'locationd', 'cache.plist'));
paths.push(path.resolve(simDirectory, 'Library', 'Preferences', 'com.apple.locationd.plist'));
break;
case 'userSettings':
Eif (compare(sim.xcodeVersion.versionString, '7.3') < 0) {
paths.push(path.resolve(simDirectory, 'Library', 'ConfigurationProfiles', 'UserSettings.plist'));
paths.push(path.resolve(simDirectory, 'Library', 'ConfigurationProfiles', 'EffectiveUserSettings.plist'));
paths.push(path.resolve(simDirectory, 'Library', 'ConfigurationProfiles', 'PublicInfo', 'PublicEffectiveUserSettings.plist'));
} else {
paths.push(path.resolve(simDirectory, 'Library', 'UserConfigurationProfiles', 'UserSettings.plist'));
paths.push(path.resolve(simDirectory, 'Library', 'UserConfigurationProfiles', 'EffectiveUserSettings.plist'));
paths.push(path.resolve(simDirectory, 'Library', 'UserConfigurationProfiles', 'PublicInfo', 'PublicEffectiveUserSettings.plist'));
}
break;
case 'effectiveUserSettings':
paths.push(path.resolve(simDirectory, 'Library', 'ConfigurationProfiles', 'EffectiveUserSettings.plist'));
paths.push(path.resolve(simDirectory, 'Library', 'ConfigurationProfiles', 'PublicInfo', 'PublicEffectiveUserSettings.plist'));
break;
}
return paths;
}
async function updateSettings (sim, plist, updates) {
let paths = await plistPaths(sim, plist);
for (let path of paths) {
await update(path, updates);
}
}
// update a plist file, located at pathToPlist
// pass in an object, all settings specified in the object will be
// updated on the plist, all others left as-is
async function update (pathToPlist, updates) {
let currentSettings = await read(pathToPlist);
let newSettings = _.merge(currentSettings, updates);
await plist.updatePlistFile(pathToPlist, newSettings, true, false);
return newSettings;
}
async function readSettings (sim, plist) {
let settings = {};
let paths = await plistPaths(sim, plist);
for (let path of paths) {
settings[path] = await read(path);
}
return settings;
}
async function read (pathToPlist) {
return await plist.parsePlistFile(pathToPlist, false);
}
async function updateLocationSettings (sim, bundleId, authorized) {
// update location cache
let newCachePrefs = {
LastFenceActivityTimestamp: 412122103.232983,
CleanShutdown: true
};
await updateSettings(sim, 'locationCache', {[bundleId]: newCachePrefs});
// update location clients
let newClientPrefs = {
BundleId: bundleId,
Authorized: !!authorized,
Whitelisted: false,
};
for (let file of await plistPaths(sim, 'locationClients')) {
log.debug(`Updating location client file: ${file}`);
let updates = {};
// see if the bundle is already there
let plist = await read(file);
// random data that always seems to be in the clients.plist
let weirdLocKey = 'com.apple.locationd.bundle-/System/Library/' +
'PrivateFrameworks/AOSNotification.framework';
Eif (!_.has(plist, weirdLocKey)) {
updates[weirdLocKey] = {
BundlePath: '/System/Library/PrivateFrameworks/AOSNotification.framework',
Whitelisted: false,
Executable: '',
Registered: ''
};
}
// create the update, and make sure it has sensible values
let baseSetting = _.has(plist, bundleId) ? plist[bundleId] : {};
updates[bundleId] = _.defaults(newClientPrefs, baseSetting);
updates[bundleId].Executable = updates[bundleId].Executable || '';
updates[bundleId].Registered = updates[bundleId].Registered || '';
await update(file, updates);
}
}
async function updateSafariUserSettings (sim, settingSet) {
// add extra stuff to UserSettings.plist and EffectiveUserSettings.plist
let newUserSettings = {};
Eif (_.has(settingSet, 'WebKitJavaScriptEnabled')) {
newUserSettings.safariAllowJavaScript = settingSet.WebKitJavaScriptEnabled;
}
Eif (_.has(settingSet, 'WebKitJavaScriptCanOpenWindowsAutomatically')) {
newUserSettings.safariAllowPopups = settingSet.WebKitJavaScriptCanOpenWindowsAutomatically;
}
Eif (_.has(settingSet, 'WarnAboutFraudulentWebsites')) {
newUserSettings.safariForceFraudWarning = !settingSet.WarnAboutFraudulentWebsites;
}
if (_.size(newUserSettings) > 0) {
log.debug('Updating Safari user settings');
let curUserSettings = await readSettings(sim, 'userSettings');
for (let [file, userSettingSet] of _.toPairs(curUserSettings)) {
// the user settings plist has two buckets, one for
// boolean settings (`restrictedBool`) and one for
// other value settings (`restrictedValue`). In each, the value
// is in a `value` sub-field.
Iif (!_.has(userSettingSet, 'restrictedBool')) {
userSettingSet.restrictedBool = {};
}
for (let [key, value] of _.toPairs(newUserSettings)) {
userSettingSet.restrictedBool[key] = {value};
}
// actually do the update
await update(file, userSettingSet);
}
}
}
async function updateLocale (sim, language, locale, calendarFormat) {
let globalPrefs = path.resolve(sim.getDir(), 'Library', 'Preferences',
'.GlobalPreferences.plist');
// get the current data
let data = await read(globalPrefs);
let updates = {};
// if we are setting the language, add it to the beginning of the list of languages
if (language) {
log.debug(`New language: ${language}`);
let supportedLangs = data.AppleLanguages || [];
// if the language is first, we don't need to do anything
if (supportedLangs.indexOf(language) !== 0) {
updates.AppleLanguages = [language].concat(_.without(supportedLangs, language));
}
}
// if we are setting the locale or calendar format, set them as appropriate
if (locale || calendarFormat) {
let calSplit = '@calendar=';
let curLocaleAndCal = data.AppleLocale || language || 'en';
let split = curLocaleAndCal.split(calSplit);
let curLoc = split[0];
if (calendarFormat || split[1]) {
calendarFormat = `${calSplit}${calendarFormat || split[1] || ''}`;
}
calendarFormat = calendarFormat || '';
let newLocaleAndCal = locale ? locale : curLoc;
if (calendarFormat) {
newLocaleAndCal = `${newLocaleAndCal}${calendarFormat}`;
}
// only need to update if it has changed
Eif (newLocaleAndCal !== curLocaleAndCal) {
log.debug(`New locale: ${newLocaleAndCal}`);
updates.AppleLocale = newLocaleAndCal;
}
}
if (_.size(updates) === 0) {
log.debug('No locale updates necessary.');
return false;
}
log.debug('Writing new locale plist data');
await update(globalPrefs, updates);
return true;
}
async function stub () {
return await plistPaths;
}
export { update, updateSettings, updateLocationSettings,
updateSafariUserSettings, updateLocale, read, readSettings, stub };
|