forked from HunterHillegas/iOS-BetaBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BuilderController.m
393 lines (315 loc) · 19.3 KB
/
BuilderController.m
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
//
// BuilderController.m
// BetaBuilder
//
// Created by Hunter Hillegas on 8/7/10.
// Copyright 2010 Hunter Hillegas. All rights reserved.
//
/*
iOS BetaBuilder - a tool for simpler iOS betas
Version 1.6
Condition of use and distribution:
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#import "NSFileManager+DirectoryLocations.h"
#import "BuilderController.h"
#import "ZipArchive.h"
@implementation BuilderController
- (IBAction)specifyIPAFile:(id)sender {
NSArray *allowedFileTypes = [NSArray arrayWithObjects:@"ipa", @"IPA", nil]; //only allow IPAs
NSOpenPanel *openDlg = [NSOpenPanel openPanel];
[openDlg setCanChooseFiles:YES];
[openDlg setCanChooseDirectories:NO];
[openDlg setAllowsMultipleSelection:NO];
[openDlg setAllowedFileTypes:allowedFileTypes];
if ([openDlg runModal] == NSOKButton) {
NSArray *files = [openDlg URLs];
for (int i = 0; i < [files count]; i++ ) {
NSURL *fileURL = [files objectAtIndex:i];
[self setupFromIPAFile:[fileURL path]];
}
}
}
- (void)setupFromIPAFile:(NSString *)ipaFilename {
[self.archiveIPAFilenameField setStringValue:ipaFilename];
//Attempt to pull values
NSError *fileCopyError;
NSError *fileDeleteError;
NSFileManager *fileManager = [NSFileManager defaultManager];
NSURL *ipaSourceURL = [NSURL fileURLWithPath:[self.archiveIPAFilenameField stringValue]];
NSURL *ipaDestinationURL = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@%@", NSTemporaryDirectory(), [[self.archiveIPAFilenameField stringValue] lastPathComponent]]];
[fileManager removeItemAtURL:ipaDestinationURL error:&fileDeleteError];
BOOL copiedIPAFile = [fileManager copyItemAtURL:ipaSourceURL toURL:ipaDestinationURL error:&fileCopyError];
if (!copiedIPAFile) {
NSLog(@"Error Copying IPA File: %@", fileCopyError);
NSAlert *theAlert = [NSAlert alertWithError:fileCopyError];
NSInteger button = [theAlert runModal];
if (button != NSAlertFirstButtonReturn) {
//user hit the rightmost button
}
} else {
//Remove Existing Trash in Temp Directory
[fileManager removeItemAtPath:[NSTemporaryDirectory() stringByAppendingPathComponent:@"extracted_app"] error:nil];
ZipArchive *za = [[ZipArchive alloc] init];
if ([za UnzipOpenFile:[ipaDestinationURL path]]) {
BOOL ret = [za UnzipFileTo:[NSTemporaryDirectory() stringByAppendingPathComponent:@"extracted_app"] overWrite:YES];
if (NO == ret){} [za UnzipCloseFile];
}
//read the Info.plist file
NSString *appDirectoryPath = [[NSTemporaryDirectory() stringByAppendingPathComponent:@"extracted_app"] stringByAppendingPathComponent:@"Payload"];
NSArray *payloadContents = [fileManager contentsOfDirectoryAtPath:appDirectoryPath error:nil];
if ([payloadContents count] > 0) {
NSString *plistPath = [[payloadContents objectAtIndex:0] stringByAppendingPathComponent:@"Info.plist"];
NSDictionary *bundlePlistFile = [NSDictionary dictionaryWithContentsOfFile:[appDirectoryPath stringByAppendingPathComponent:plistPath]];
if (bundlePlistFile) {
if ([bundlePlistFile valueForKey:@"CFBundleShortVersionString"])
[self.bundleVersionField setStringValue:[NSString stringWithFormat:@"%@ (%@)", [bundlePlistFile valueForKey:@"CFBundleShortVersionString"], [bundlePlistFile valueForKey:@"CFBundleVersion"]]];
else
[self.bundleVersionField setStringValue:[bundlePlistFile valueForKey:@"CFBundleVersion"]];
[self.bundleIdentifierField setStringValue:[bundlePlistFile valueForKey:@"CFBundleIdentifier"]];
if ([bundlePlistFile valueForKey:@"CFBundleDisplayName"])
[self.bundleNameField setStringValue:[bundlePlistFile valueForKey:@"CFBundleDisplayName"]];
else
[self.bundleNameField setStringValue:@""];
[self.webserverDirectoryField setStringValue:@""];
[self populateFieldsFromHistoryForBundleID:[bundlePlistFile valueForKey:@"CFBundleIdentifier"]];
if ([bundlePlistFile valueForKey:@"MinimumOSVersion"]) {
CGFloat minimumOSVerson = [[bundlePlistFile valueForKey:@"MinimumOSVersion"] floatValue];
if (minimumOSVerson < 4.0) {
[self.includeZipFileButton setState:NSOnState];
} else {
[self.includeZipFileButton setState:NSOffState];
}
}
}
//set mobile provision file
self.mobileProvisionFilePath = [appDirectoryPath stringByAppendingPathComponent:[[payloadContents objectAtIndex:0] stringByAppendingPathComponent:@"embedded.mobileprovision"]];
//set the app file icon path
self.appIconFilePath = [appDirectoryPath stringByAppendingPathComponent:[[payloadContents objectAtIndex:0] stringByAppendingPathComponent:@"iTunesArtwork"]];
if (![fileManager fileExistsAtPath:self.appIconFilePath]) { //iTunesArtwork file does not exist - look for Icon.png instead
self.appIconFilePath = [appDirectoryPath stringByAppendingPathComponent:[[payloadContents objectAtIndex:0] stringByAppendingPathComponent:@"Icon.png"]];
}
}
}
[self.generateFilesButton setEnabled:YES];
}
- (void)populateFieldsFromHistoryForBundleID:(NSString *)bundleID {
NSString *applicationSupportPath = [[NSFileManager defaultManager] applicationSupportDirectory];
NSString *historyPath = [applicationSupportPath stringByAppendingPathComponent:@"history.plist"];
NSDictionary *historyDictionary = [NSDictionary dictionaryWithContentsOfFile:historyPath];
if (historyDictionary) {
NSDictionary *historyItem = [historyDictionary valueForKey:bundleID];
if (historyItem) {
[self.webserverDirectoryField setStringValue:[historyItem valueForKey:@"webserverDirectory"]];
} else {
NSLog(@"No History Item Found for Bundle ID: %@", bundleID);
}
NSDictionary *outputPathItem = [historyDictionary valueForKey:[NSString stringWithFormat:@"%@-output", bundleID]];
if (outputPathItem) {
self.previousDestinationPathAsString = [outputPathItem valueForKey:@"outputDirectory"];
} else {
NSLog(@"No Output Path History Item Found for Bundle ID: %@", bundleID);
}
}
}
- (void)storeFieldsInHistoryForBundleID:(NSString *)bundleID {
NSString *applicationSupportPath = [[NSFileManager defaultManager] applicationSupportDirectory];
NSString *historyPath = [applicationSupportPath stringByAppendingPathComponent:@"history.plist"];
NSString *trimmedURLString = [[self.webserverDirectoryField stringValue] stringByReplacingOccurrencesOfString:@" " withString:@""];
NSString *outputDirectoryPath = [self.destinationPath path];
NSMutableDictionary *historyDictionary = [NSMutableDictionary dictionaryWithContentsOfFile:historyPath];
if (!historyDictionary) {
historyDictionary = [NSMutableDictionary dictionary];
}
NSDictionary *webserverDirectoryDictionary = [NSDictionary dictionaryWithObjectsAndKeys:trimmedURLString, @"webserverDirectory", nil];
[historyDictionary setValue:webserverDirectoryDictionary forKey:bundleID];
NSDictionary *outputDirectoryDictionary = [NSDictionary dictionaryWithObjectsAndKeys:outputDirectoryPath, @"outputDirectory", nil];
[historyDictionary setValue:outputDirectoryDictionary forKey:[NSString stringWithFormat:@"%@-output", bundleID]];
[historyDictionary writeToFile:historyPath atomically:YES];
}
- (IBAction)generateFiles:(id)sender {
[self generateFilesWithWebserverAddress:[self.webserverDirectoryField stringValue] andOutputDirectory:nil];
}
- (void)generateFilesWithWebserverAddress:(NSString *)webserver andOutputDirectory:(NSString *)outputPath {
//create plist
NSString *encodedWebserver = [webserver stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSString *trimmedURLString = [encodedWebserver stringByReplacingOccurrencesOfString:@" " withString:@""];
NSString *encodedIpaFilename = [[[self.archiveIPAFilenameField stringValue] lastPathComponent] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; //this isn't the most robust way to do this
NSString *ipaURLString = [NSString stringWithFormat:@"%@/%@", trimmedURLString, encodedIpaFilename];
NSDictionary *assetsDictionary = [NSDictionary dictionaryWithObjectsAndKeys:@"software-package", @"kind", ipaURLString, @"url", nil];
NSDictionary *metadataDictionary = [NSDictionary dictionaryWithObjectsAndKeys:[self.bundleIdentifierField stringValue], @"bundle-identifier", [self.bundleVersionField stringValue], @"bundle-version", @"software", @"kind", [self.bundleNameField stringValue], @"title", nil];
NSDictionary *innerManifestDictionary = [NSDictionary dictionaryWithObjectsAndKeys:[NSArray arrayWithObject:assetsDictionary], @"assets", metadataDictionary, @"metadata", nil];
NSDictionary *outerManifestDictionary = [NSDictionary dictionaryWithObjectsAndKeys:[NSArray arrayWithObject:innerManifestDictionary], @"items", nil];
NSLog(@"Manifest Created");
//create html file
NSString *applicationSupportPath = [[NSFileManager defaultManager] applicationSupportDirectory];
NSString *templatePath = nil;
if (_templateFile != nil) {
if ([_templateFile hasPrefix:@"~"]) {
_templateFile = [_templateFile stringByExpandingTildeInPath];
}
if ([_templateFile hasPrefix:@"/"]) {
templatePath = _templateFile;
} else {
templatePath = [applicationSupportPath stringByAppendingPathComponent:_templateFile];
} if (![[NSFileManager defaultManager] fileExistsAtPath:templatePath]) {
NSLog(@"Template file does not exist at path: %@", templatePath);
exit(1);
}
} else {
if ([self.includeZipFileButton state] == NSOnState) {
templatePath = [applicationSupportPath stringByAppendingPathComponent:@"index_template.html"];
} else {
templatePath = [applicationSupportPath stringByAppendingPathComponent:@"index_template_no_tether.html"];
}
}
NSString *htmlTemplateString = [NSString stringWithContentsOfFile:templatePath encoding:NSUTF8StringEncoding error:nil];
htmlTemplateString = [htmlTemplateString stringByReplacingOccurrencesOfString:@"[BETA_NAME]" withString:[self.bundleNameField stringValue]];
htmlTemplateString = [htmlTemplateString stringByReplacingOccurrencesOfString:@"[BETA_VERSION]" withString:[self.bundleVersionField stringValue]];
htmlTemplateString = [htmlTemplateString stringByReplacingOccurrencesOfString:@"[BETA_PLIST]" withString:[NSString stringWithFormat:@"%@/%@", trimmedURLString, @"manifest.plist"]];
//add formatted date
NSDateFormatter *shortDateFormatter = [[NSDateFormatter alloc] init];
[shortDateFormatter setTimeStyle:NSDateFormatterNoStyle];
[shortDateFormatter setDateStyle:NSDateFormatterMediumStyle];
NSString *formattedDateString = [shortDateFormatter stringFromDate:[NSDate date]];
htmlTemplateString = [htmlTemplateString stringByReplacingOccurrencesOfString:@"[BETA_DATE]" withString:formattedDateString];
if (!outputPath) {
//ask for save location
NSOpenPanel *directoryPanel = [NSOpenPanel openPanel];
[directoryPanel setCanChooseFiles:NO];
[directoryPanel setCanChooseDirectories:YES];
[directoryPanel setAllowsMultipleSelection:NO];
[directoryPanel setCanCreateDirectories:YES];
[directoryPanel setPrompt:@"Choose Directory"];
[directoryPanel setMessage:@"Choose the Directory for Beta Files - Probably Should Match Deployment Directory and Should NOT Include the IPA"];
if (self.previousDestinationPathAsString) {
if ([[NSFileManager defaultManager] fileExistsAtPath:self.previousDestinationPathAsString]) {
NSLog(@"Previous Directory Exists - Using That");
[directoryPanel setDirectoryURL:[NSURL fileURLWithPath:self.previousDestinationPathAsString]];
}
}
if ([directoryPanel runModal] == NSOKButton) {
NSURL *saveDirectoryURL = [directoryPanel directoryURL];
BOOL saved = [self saveFilesToOutputDirectory:saveDirectoryURL forManifestDictionary:outerManifestDictionary withTemplateHTML:htmlTemplateString];
if (saved) {
self.destinationPath = saveDirectoryURL;
NSSound *systemSound = [NSSound soundNamed:@"Glass"]; //Play Done Sound / Display Alert
[systemSound play];
//store history
if (trimmedURLString)
[self storeFieldsInHistoryForBundleID:[self.bundleIdentifierField stringValue]];
//show in finder
[self.openInFinderButton setEnabled:YES];
//put the doc in recent items
[[NSDocumentController sharedDocumentController] noteNewRecentDocumentURL:[NSURL fileURLWithPath:[self.archiveIPAFilenameField stringValue]]];
} else {
NSBeep();
}
}
} else {
NSURL *saveDirectoryURL = [NSURL fileURLWithPath:outputPath];
[self saveFilesToOutputDirectory:saveDirectoryURL forManifestDictionary:outerManifestDictionary withTemplateHTML:htmlTemplateString];
}
}
- (BOOL)saveFilesToOutputDirectory:(NSURL *)saveDirectoryURL forManifestDictionary:(NSDictionary *)outerManifestDictionary withTemplateHTML:(NSString *)htmlTemplateString {
BOOL savedSuccessfully = NO;
[self.progressIndicator startAnimation:nil];
NSFileManager *fileManager = [NSFileManager defaultManager];
fileManager.delegate = self;
//Copy IPA
NSError *fileCopyError;
NSURL *ipaSourceURL = [NSURL fileURLWithPath:[self.archiveIPAFilenameField stringValue]];
NSURL *ipaDestinationURL = [saveDirectoryURL URLByAppendingPathComponent:[[self.archiveIPAFilenameField stringValue] lastPathComponent]];
BOOL copiedIPAFile = [fileManager copyItemAtURL:ipaSourceURL toURL:ipaDestinationURL error:&fileCopyError];
if (!copiedIPAFile) {
NSLog(@"Error Copying IPA File: %@", fileCopyError);
NSAlert *theAlert = [NSAlert alertWithError:fileCopyError];
NSInteger button = [theAlert runModal];
if (button != NSAlertFirstButtonReturn) {
//user hit the rightmost button
}
return NO;
}
//Copy README
if ([self.includeZipFileButton state] == NSOnState) {
if ([self.overwriteFilesButton state] == NSOnState)
[fileManager removeItemAtURL:[saveDirectoryURL URLByAppendingPathComponent:@"README.txt"] error:nil];
NSString *readmeContents = [[NSBundle mainBundle] pathForResource:@"README" ofType:@""];
[readmeContents writeToURL:[saveDirectoryURL URLByAppendingPathComponent:@"README.txt"] atomically:YES encoding:NSASCIIStringEncoding error:nil];
}
//If iTunesArtwork file exists, use it
BOOL doesArtworkExist = [fileManager fileExistsAtPath:self.appIconFilePath];
if (doesArtworkExist) {
NSString *artworkDestinationFilename = [NSString stringWithFormat:@"%@.png", [self.appIconFilePath lastPathComponent]];
artworkDestinationFilename = [artworkDestinationFilename stringByReplacingOccurrencesOfString:@".png.png" withString:@".png"]; //fix for commonly incorrectly named files
NSURL *artworkSourceURL = [NSURL fileURLWithPath:self.appIconFilePath];
NSURL *artworkDestinationURL = [saveDirectoryURL URLByAppendingPathComponent:artworkDestinationFilename];
NSError *artworkCopyError;
BOOL copiedArtworkFile = [fileManager copyItemAtURL:artworkSourceURL toURL:artworkDestinationURL error:&artworkCopyError];
if (copiedArtworkFile) {
htmlTemplateString = [htmlTemplateString stringByReplacingOccurrencesOfString:@"[BETA_ICON]" withString:[NSString stringWithFormat:@"<p><img src='%@' length='57' width='57' /></p>", artworkDestinationFilename]];
} else {
htmlTemplateString = [htmlTemplateString stringByReplacingOccurrencesOfString:@"[BETA_ICON]" withString:@""];
}
} else {
NSLog(@"No iTunesArtwork File Exists in Bundle");
htmlTemplateString = [htmlTemplateString stringByReplacingOccurrencesOfString:@"[BETA_ICON]" withString:@""];
}
//Write Files
if ([self.overwriteFilesButton state] == NSOnState)
[fileManager removeItemAtURL:[saveDirectoryURL URLByAppendingPathComponent:@"manifest.plist"] error:nil];
NSError *fileWriteError;
[outerManifestDictionary writeToURL:[saveDirectoryURL URLByAppendingPathComponent:@"manifest.plist"] atomically:YES];
BOOL wroteHTMLFileSuccessfully = [htmlTemplateString writeToURL:[saveDirectoryURL URLByAppendingPathComponent:@"index.html"] atomically:YES encoding:NSUTF8StringEncoding error:&fileWriteError];
if (!wroteHTMLFileSuccessfully) {
NSLog(@"Error Writing HTML File: %@ to %@", fileWriteError, saveDirectoryURL);
savedSuccessfully = NO;
} else {
savedSuccessfully = YES;
}
//Create Archived Version for 3.0 Apps
if ([self.includeZipFileButton state] == NSOnState) {
ZipArchive *zip = [[ZipArchive alloc] init];
[zip CreateZipFile2:[[saveDirectoryURL path] stringByAppendingPathComponent:@"beta_archive.zip"]];
[zip addFileToZip:[self.archiveIPAFilenameField stringValue] newname:@"application.ipa"];
[zip addFileToZip:self.mobileProvisionFilePath newname:@"beta_provision.mobileprovision"];
if (![zip CloseZipFile2]) {
NSLog(@"Error Creating 3.x Zip File");
}
}
[self.progressIndicator stopAnimation:nil];
return savedSuccessfully;
}
- (BOOL)fileManager:(NSFileManager *)fileManager shouldCopyItemAtURL:(NSURL *)srcURL toURL:(NSURL *)dstURL {
if ([srcURL isEqual:dstURL])
return NO;
if ([self.overwriteFilesButton state] == NSOnState) {
if ([fileManager fileExistsAtPath:[dstURL path]]) {
NSLog(@"Overwriting File: %@", dstURL);
NSError *deleteError;
BOOL deleted = [fileManager removeItemAtURL:dstURL error:&deleteError];
if (!deleted) {
NSLog(@"Error Deleting %@: %@", dstURL, deleteError);
}
} else {
NSLog(@"File Didn't Exist to Delete: %@", dstURL);
}
}
return YES;
}
- (IBAction)openInFinder:(id)sender {
[[NSWorkspace sharedWorkspace] openURL:self.destinationPath];
}
@end