-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathcocoapods-platform-manager.ts
130 lines (114 loc) · 6.48 KB
/
cocoapods-platform-manager.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
import { EOL } from "os";
import * as path from "path";
import * as semver from "semver";
import { PODFILE_NAME } from "../constants";
export class CocoaPodsPlatformManager implements ICocoaPodsPlatformManager {
public addPlatformSection(projectData: IProjectData, podfilePlatformData: IPodfilePlatformData, projectPodfileContent: string): string {
const platformSectionData = this.getPlatformSectionData(projectPodfileContent);
if (platformSectionData && platformSectionData.podfilePlatformData) {
const shouldReplacePlatformSection = this.shouldReplacePlatformSection(projectData, platformSectionData.podfilePlatformData, podfilePlatformData);
if (shouldReplacePlatformSection) {
const newSection = this.buildPlatformSection(podfilePlatformData);
projectPodfileContent = projectPodfileContent.replace(platformSectionData.platformSectionContent, newSection);
}
} else {
projectPodfileContent += this.buildPlatformSection(podfilePlatformData);
}
return projectPodfileContent;
}
public removePlatformSection(moduleName: string, projectPodfileContent: string, podfilePath: string): string {
const platformSectionData = this.getPlatformSectionData(projectPodfileContent);
if (platformSectionData && platformSectionData.podfilePlatformData && platformSectionData.podfilePlatformData.path === podfilePath) {
const podfileContentRegExp = new RegExp(`# Begin Podfile - ([\\s\\S]*?)# End Podfile`, "mg");
const allPodfiles = projectPodfileContent.match(podfileContentRegExp) || [];
const selectedPlatformData = this.selectPlatformDataFromProjectPodfile(allPodfiles);
const newPlatformSection = selectedPlatformData ? this.buildPlatformSection(selectedPlatformData) : "";
const regExp = new RegExp(`\\r?\\n${platformSectionData.platformSectionContent}\\r?\\n`, "mg");
projectPodfileContent = projectPodfileContent.replace(regExp, newPlatformSection);
}
return projectPodfileContent;
}
public replacePlatformRow(podfileContent: string, podfilePath: string): { replacedContent: string, podfilePlatformData: IPodfilePlatformData } {
let podfilePlatformData: IPodfilePlatformData = null;
const platformRowRegExp = new RegExp(`^\\s*?(platform\\b\\s*?\\:\\s*?ios\\b(?:,\\s*?['"](.+)['"])?)`, "gm");
const replacedContent = podfileContent.replace(platformRowRegExp, (substring: string, firstGroup: string, secondGroup: string) => {
podfilePlatformData = { content: firstGroup, version: secondGroup, path: podfilePath };
return `# ${substring.trim()}`;
});
return { replacedContent, podfilePlatformData };
}
private getPlatformSectionData(projectPodfileContent: string): { podfilePlatformData: IPodfilePlatformData, platformSectionContent: string } {
const platformSectionRegExp = new RegExp(`${this.getPlatformSectionHeader()} ([\\s\\S]*?)with[\\s\\S]*?\\n([\\s\\S]*?(?:,\\s*?['"](.+)['"])?)\\n${this.getPlatformSectionFooter()}`, "m");
const match = platformSectionRegExp.exec(projectPodfileContent);
let result = null;
if (match && match[0]) {
result = {
platformSectionContent: match[0],
podfilePlatformData: {
path: match[1].trim(),
content: match[2],
version: match[3]
}
};
}
return result;
}
private selectPlatformDataFromProjectPodfile(allPodfiles: string[]): IPodfilePlatformData {
const platformRowRegExp = new RegExp(`^\\s*?#\\s*?(platform\\b\\s*?\\:\\s*?ios\\b(?:,\\s*?['"](.+)['"])?)`, "m");
const podfilePathRegExp = new RegExp(`# Begin Podfile - ([\\s\\S]*?)${EOL}`);
let selectedPlatformData: IPodfilePlatformData = null;
_.each(allPodfiles, podfileContent => {
const platformMatch = platformRowRegExp.exec(podfileContent);
const podfilePathMatch: any[] = podfilePathRegExp.exec(podfileContent) || [];
// platform without version -> select it with highest priority
if (platformMatch && platformMatch[0] && !platformMatch[2]) {
selectedPlatformData = {
version: null,
content: platformMatch[1],
path: podfilePathMatch[1]
};
return false;
}
// platform with version
if (platformMatch && platformMatch[0] && platformMatch[2]) {
if (!selectedPlatformData || semver.gt(semver.coerce(platformMatch[2]), semver.coerce(selectedPlatformData.version))) {
selectedPlatformData = {
version: platformMatch[2],
content: platformMatch[1],
path: podfilePathMatch[1]
};
}
}
});
return selectedPlatformData;
}
private shouldReplacePlatformSection(projectData: IProjectData, oldPodfilePlatformData: IPodfilePlatformData, currentPodfilePlatformData: IPodfilePlatformData): boolean {
// The selected platform should be replaced in the following cases:
// 1. When the pod file is from App_Resources and the selected platform is not from App_Resources
// 2. When the pod file is from App_Resources, the selected platform is also from App_Resources
// and the pod's version is greater than the selected one
// 3. When the pod file doesn't have platform's version -> `platform :ios`
// 4. When the pod file has a version greater than the selected platform's version
const appResourcesPodfilePath = path.join(projectData.getAppResourcesDirectoryPath(), "iOS", PODFILE_NAME);
const isFromAppResources = oldPodfilePlatformData.path !== appResourcesPodfilePath && currentPodfilePlatformData.path === appResourcesPodfilePath;
const isFromAppResourcesWithGreaterPlatformVersion = oldPodfilePlatformData.path === appResourcesPodfilePath && currentPodfilePlatformData.path === appResourcesPodfilePath && semver.gt(semver.coerce(currentPodfilePlatformData.version), semver.coerce(oldPodfilePlatformData.version));
const isPodfileWithGreaterPlatformVersion = !currentPodfilePlatformData.version || (oldPodfilePlatformData.version && semver.gt(semver.coerce(currentPodfilePlatformData.version), semver.coerce(oldPodfilePlatformData.version)));
const result = isFromAppResources || isFromAppResourcesWithGreaterPlatformVersion || isPodfileWithGreaterPlatformVersion;
return result;
}
private buildPlatformSection(podfilePlatformData: IPodfilePlatformData) {
let result = `${this.getPlatformSectionHeader()} ${podfilePlatformData.path} with`;
if (podfilePlatformData.version) {
result += ` ${podfilePlatformData.version}`;
}
result += `${EOL}${podfilePlatformData.content}${EOL}${this.getPlatformSectionFooter()}`;
return result;
}
private getPlatformSectionHeader(): string {
return '# NativeScriptPlatformSection';
}
private getPlatformSectionFooter(): string {
return '# End NativeScriptPlatformSection';
}
}
$injector.register("cocoaPodsPlatformManager", CocoaPodsPlatformManager);