-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathappstore-upload.ts
148 lines (130 loc) · 4.9 KB
/
appstore-upload.ts
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
import * as path from "path";
import { StringCommandParameter } from "../common/command-params";
import { BuildController } from "../controllers/build-controller";
import { IOSBuildData } from "../data/build-data";
import { IProjectData } from "../definitions/project";
import {
IITMSTransporterService,
IOptions,
IPlatformValidationService,
} from "../declarations";
import { ICommand, ICommandParameter } from "../common/definitions/commands";
import { IInjector } from "../common/definitions/yok";
import { injector } from "../common/yok";
import { IHostInfo, IErrors } from "../common/declarations";
import { IApplePortalSessionService } from "../services/apple-portal/definitions";
export class PublishIOS implements ICommand {
public allowedParameters: ICommandParameter[] = [
new StringCommandParameter(this.$injector),
new StringCommandParameter(this.$injector),
new StringCommandParameter(this.$injector),
new StringCommandParameter(this.$injector),
];
constructor(
private $applePortalSessionService: IApplePortalSessionService,
private $injector: IInjector,
private $itmsTransporterService: IITMSTransporterService,
private $logger: ILogger,
private $projectData: IProjectData,
private $options: IOptions,
private $prompter: IPrompter,
private $devicePlatformsConstants: Mobile.IDevicePlatformsConstants,
private $hostInfo: IHostInfo,
private $errors: IErrors,
private $buildController: BuildController,
private $platformValidationService: IPlatformValidationService
) {
this.$projectData.initializeProjectData();
}
public async execute(args: string[]): Promise<void> {
await this.$itmsTransporterService.validate(
this.$options.appleApplicationSpecificPassword
);
const username =
args[0] ||
(await this.$prompter.getString("Apple ID", { allowEmpty: false }));
const password =
args[1] || (await this.$prompter.getPassword("Apple ID password"));
const user = await this.$applePortalSessionService.createUserSession(
{ username, password },
{
applicationSpecificPassword:
this.$options.appleApplicationSpecificPassword,
sessionBase64: this.$options.appleSessionBase64,
requireInteractiveConsole: true,
requireApplicationSpecificPassword: true,
}
);
if (!user.areCredentialsValid) {
this.$errors.fail(
`Invalid username and password combination. Used '${username}' as the username.`
);
}
const mobileProvisionIdentifier = this.$options.provision ?? args[2];
let ipaFilePath = this.$options.ipa
? path.resolve(this.$options.ipa)
: null;
if (!mobileProvisionIdentifier && !ipaFilePath) {
this.$logger.warn(
"No mobile provision identifier set. A default mobile provision will be used. You can set one in app/App_Resources/iOS/build.xcconfig"
);
}
this.$options.release = true;
if (!ipaFilePath) {
const platform = this.$devicePlatformsConstants.iOS.toLowerCase();
// No .ipa path provided, build .ipa on out own.
if (mobileProvisionIdentifier) {
// This is not very correct as if we build multiple targets we will try to sign all of them using the signing identity here.
this.$logger.info(
"Building .ipa with the selected mobile provision and/or certificate. " +
mobileProvisionIdentifier
);
this.$options.provision = mobileProvisionIdentifier;
const buildData = new IOSBuildData(
this.$projectData.projectDir,
platform,
{ ...this.$options.argv, buildForAppStore: true, watch: false }
);
ipaFilePath = await this.$buildController.prepareAndBuild(buildData);
} else {
this.$logger.info(
"No .ipa, mobile provision or certificate set. Perfect! Now we'll build .xcarchive and let Xcode pick the distribution certificate and provisioning profile for you when exporting .ipa for AppStore submission."
);
const buildData = new IOSBuildData(
this.$projectData.projectDir,
platform,
{ ...this.$options.argv, buildForAppStore: true, watch: false }
);
ipaFilePath = await this.$buildController.prepareAndBuild(buildData);
this.$logger.info(`Export at: ${ipaFilePath}`);
}
}
await this.$itmsTransporterService.upload({
credentials: { username, password },
user,
applicationSpecificPassword:
this.$options.appleApplicationSpecificPassword,
ipaFilePath,
shouldExtractIpa: !!this.$options.ipa,
verboseLogging: this.$logger.getLevel() === "TRACE",
teamId: this.$options.teamId,
});
}
public async canExecute(args: string[]): Promise<boolean> {
if (!this.$hostInfo.isDarwin) {
this.$errors.fail("iOS publishing is only available on macOS.");
}
if (
!this.$platformValidationService.isPlatformSupportedForOS(
this.$devicePlatformsConstants.iOS,
this.$projectData
)
) {
this.$errors.fail(
`Applications for platform ${this.$devicePlatformsConstants.iOS} can not be built on this OS`
);
}
return true;
}
}
injector.registerCommand(["publish|ios", "appstore|upload"], PublishIOS);