You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
176 lines
4.8 KiB
176 lines
4.8 KiB
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.ensureApplicationTargetEntitlementsFileConfigured = ensureApplicationTargetEntitlementsFileConfigured;
|
|
exports.getEntitlementsPath = getEntitlementsPath;
|
|
exports.setAssociatedDomains = setAssociatedDomains;
|
|
exports.withAssociatedDomains = void 0;
|
|
|
|
function _fs() {
|
|
const data = _interopRequireDefault(require("fs"));
|
|
|
|
_fs = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _path() {
|
|
const data = _interopRequireDefault(require("path"));
|
|
|
|
_path = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _slash() {
|
|
const data = _interopRequireDefault(require("slash"));
|
|
|
|
_slash = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _iosPlugins() {
|
|
const data = require("../plugins/ios-plugins");
|
|
|
|
_iosPlugins = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _Target() {
|
|
const data = require("./Target");
|
|
|
|
_Target = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _Xcodeproj() {
|
|
const data = require("./utils/Xcodeproj");
|
|
|
|
_Xcodeproj = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _string() {
|
|
const data = require("./utils/string");
|
|
|
|
_string = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
const withAssociatedDomains = (0, _iosPlugins().createEntitlementsPlugin)(setAssociatedDomains, 'withAssociatedDomains');
|
|
exports.withAssociatedDomains = withAssociatedDomains;
|
|
|
|
function setAssociatedDomains(config, {
|
|
'com.apple.developer.associated-domains': _,
|
|
...entitlementsPlist
|
|
}) {
|
|
var _config$ios;
|
|
|
|
if ((_config$ios = config.ios) !== null && _config$ios !== void 0 && _config$ios.associatedDomains) {
|
|
return { ...entitlementsPlist,
|
|
'com.apple.developer.associated-domains': config.ios.associatedDomains
|
|
};
|
|
}
|
|
|
|
return entitlementsPlist;
|
|
}
|
|
|
|
function getEntitlementsPath(projectRoot, {
|
|
targetName,
|
|
buildConfiguration = 'Release'
|
|
} = {}) {
|
|
const project = (0, _Xcodeproj().getPbxproj)(projectRoot);
|
|
const xcBuildConfiguration = (0, _Target().getXCBuildConfigurationFromPbxproj)(project, {
|
|
targetName,
|
|
buildConfiguration
|
|
});
|
|
|
|
if (!xcBuildConfiguration) {
|
|
return null;
|
|
}
|
|
|
|
const entitlementsPath = getEntitlementsPathFromBuildConfiguration(projectRoot, xcBuildConfiguration);
|
|
return entitlementsPath && _fs().default.existsSync(entitlementsPath) ? entitlementsPath : null;
|
|
}
|
|
|
|
function getEntitlementsPathFromBuildConfiguration(projectRoot, xcBuildConfiguration) {
|
|
var _xcBuildConfiguration;
|
|
|
|
const entitlementsPathRaw = xcBuildConfiguration === null || xcBuildConfiguration === void 0 ? void 0 : (_xcBuildConfiguration = xcBuildConfiguration.buildSettings) === null || _xcBuildConfiguration === void 0 ? void 0 : _xcBuildConfiguration.CODE_SIGN_ENTITLEMENTS;
|
|
|
|
if (entitlementsPathRaw) {
|
|
return _path().default.normalize(_path().default.join(projectRoot, 'ios', (0, _string().trimQuotes)(entitlementsPathRaw)));
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
function ensureApplicationTargetEntitlementsFileConfigured(projectRoot) {
|
|
const project = (0, _Xcodeproj().getPbxproj)(projectRoot);
|
|
const projectName = (0, _Xcodeproj().getProjectName)(projectRoot);
|
|
const productName = (0, _Xcodeproj().getProductName)(project);
|
|
const [, applicationTarget] = (0, _Target().findFirstNativeTarget)(project);
|
|
const buildConfigurations = (0, _Xcodeproj().getBuildConfigurationsForListId)(project, applicationTarget.buildConfigurationList);
|
|
let hasChangesToWrite = false;
|
|
|
|
for (const [, xcBuildConfiguration] of buildConfigurations) {
|
|
const oldEntitlementPath = getEntitlementsPathFromBuildConfiguration(projectRoot, xcBuildConfiguration);
|
|
|
|
if (oldEntitlementPath && _fs().default.existsSync(oldEntitlementPath)) {
|
|
return;
|
|
}
|
|
|
|
hasChangesToWrite = true; // Use posix formatted path, even on Windows
|
|
|
|
const entitlementsRelativePath = (0, _slash().default)(_path().default.join(projectName, `${productName}.entitlements`));
|
|
|
|
const entitlementsPath = _path().default.normalize(_path().default.join(projectRoot, 'ios', entitlementsRelativePath));
|
|
|
|
_fs().default.mkdirSync(_path().default.dirname(entitlementsPath), {
|
|
recursive: true
|
|
});
|
|
|
|
if (!_fs().default.existsSync(entitlementsPath)) {
|
|
_fs().default.writeFileSync(entitlementsPath, ENTITLEMENTS_TEMPLATE);
|
|
}
|
|
|
|
xcBuildConfiguration.buildSettings.CODE_SIGN_ENTITLEMENTS = entitlementsRelativePath;
|
|
}
|
|
|
|
if (hasChangesToWrite) {
|
|
_fs().default.writeFileSync(project.filepath, project.writeSync());
|
|
}
|
|
}
|
|
|
|
const ENTITLEMENTS_TEMPLATE = `
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
</dict>
|
|
</plist>
|
|
`;
|
|
//# sourceMappingURL=Entitlements.js.map
|