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.
196 lines
5.2 KiB
196 lines
5.2 KiB
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.getGoogleServicesFile = getGoogleServicesFile;
|
|
exports.getGoogleSignInReservedClientId = getGoogleSignInReservedClientId;
|
|
exports.setGoogleConfig = setGoogleConfig;
|
|
exports.setGoogleServicesFile = setGoogleServicesFile;
|
|
exports.setGoogleSignInReservedClientId = setGoogleSignInReservedClientId;
|
|
exports.withGoogleServicesFile = exports.withGoogle = void 0;
|
|
|
|
function _plist() {
|
|
const data = _interopRequireDefault(require("@expo/plist"));
|
|
|
|
_plist = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _assert() {
|
|
const data = _interopRequireDefault(require("assert"));
|
|
|
|
_assert = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
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 _iosPlugins() {
|
|
const data = require("../plugins/ios-plugins");
|
|
|
|
_iosPlugins = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _Paths() {
|
|
const data = require("./Paths");
|
|
|
|
_Paths = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _Scheme() {
|
|
const data = require("./Scheme");
|
|
|
|
_Scheme = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _Xcodeproj() {
|
|
const data = require("./utils/Xcodeproj");
|
|
|
|
_Xcodeproj = function () {
|
|
return data;
|
|
};
|
|
|
|
return data;
|
|
}
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
const withGoogle = config => {
|
|
return (0, _iosPlugins().withInfoPlist)(config, config => {
|
|
config.modResults = setGoogleConfig(config, config.modResults, config.modRequest);
|
|
return config;
|
|
});
|
|
};
|
|
|
|
exports.withGoogle = withGoogle;
|
|
|
|
const withGoogleServicesFile = config => {
|
|
return (0, _iosPlugins().withXcodeProject)(config, config => {
|
|
config.modResults = setGoogleServicesFile(config, {
|
|
projectRoot: config.modRequest.projectRoot,
|
|
project: config.modResults
|
|
});
|
|
return config;
|
|
});
|
|
};
|
|
|
|
exports.withGoogleServicesFile = withGoogleServicesFile;
|
|
|
|
function readGoogleServicesInfoPlist(relativePath, {
|
|
projectRoot
|
|
}) {
|
|
const googleServiceFilePath = _path().default.resolve(projectRoot, relativePath);
|
|
|
|
const contents = _fs().default.readFileSync(googleServiceFilePath, 'utf8');
|
|
|
|
(0, _assert().default)(contents, 'GoogleService-Info.plist is empty');
|
|
return _plist().default.parse(contents);
|
|
}
|
|
|
|
function getGoogleSignInReservedClientId(config, modRequest) {
|
|
var _config$ios$config$go, _config$ios, _config$ios$config, _config$ios$config$go2, _infoPlist$REVERSED_C;
|
|
|
|
const reservedClientId = (_config$ios$config$go = (_config$ios = config.ios) === null || _config$ios === void 0 ? void 0 : (_config$ios$config = _config$ios.config) === null || _config$ios$config === void 0 ? void 0 : (_config$ios$config$go2 = _config$ios$config.googleSignIn) === null || _config$ios$config$go2 === void 0 ? void 0 : _config$ios$config$go2.reservedClientId) !== null && _config$ios$config$go !== void 0 ? _config$ios$config$go : null;
|
|
|
|
if (reservedClientId) {
|
|
return reservedClientId;
|
|
}
|
|
|
|
const googleServicesFileRelativePath = getGoogleServicesFile(config);
|
|
|
|
if (googleServicesFileRelativePath === null) {
|
|
return null;
|
|
}
|
|
|
|
const infoPlist = readGoogleServicesInfoPlist(googleServicesFileRelativePath, modRequest);
|
|
return (_infoPlist$REVERSED_C = infoPlist.REVERSED_CLIENT_ID) !== null && _infoPlist$REVERSED_C !== void 0 ? _infoPlist$REVERSED_C : null;
|
|
}
|
|
|
|
function getGoogleServicesFile(config) {
|
|
var _config$ios$googleSer, _config$ios2;
|
|
|
|
return (_config$ios$googleSer = (_config$ios2 = config.ios) === null || _config$ios2 === void 0 ? void 0 : _config$ios2.googleServicesFile) !== null && _config$ios$googleSer !== void 0 ? _config$ios$googleSer : null;
|
|
}
|
|
|
|
function setGoogleSignInReservedClientId(config, infoPlist, modRequest) {
|
|
const reservedClientId = getGoogleSignInReservedClientId(config, modRequest);
|
|
|
|
if (reservedClientId === null) {
|
|
return infoPlist;
|
|
}
|
|
|
|
return (0, _Scheme().appendScheme)(reservedClientId, infoPlist);
|
|
}
|
|
|
|
function setGoogleConfig(config, infoPlist, modRequest) {
|
|
infoPlist = setGoogleSignInReservedClientId(config, infoPlist, modRequest);
|
|
return infoPlist;
|
|
}
|
|
|
|
function setGoogleServicesFile(config, {
|
|
projectRoot,
|
|
project
|
|
}) {
|
|
const googleServicesFileRelativePath = getGoogleServicesFile(config);
|
|
|
|
if (googleServicesFileRelativePath === null) {
|
|
return project;
|
|
}
|
|
|
|
const googleServiceFilePath = _path().default.resolve(projectRoot, googleServicesFileRelativePath);
|
|
|
|
_fs().default.copyFileSync(googleServiceFilePath, _path().default.join((0, _Paths().getSourceRoot)(projectRoot), 'GoogleService-Info.plist'));
|
|
|
|
const projectName = (0, _Xcodeproj().getProjectName)(projectRoot);
|
|
const plistFilePath = `${projectName}/GoogleService-Info.plist`;
|
|
|
|
if (!project.hasFile(plistFilePath)) {
|
|
project = (0, _Xcodeproj().addResourceFileToGroup)({
|
|
filepath: plistFilePath,
|
|
groupName: projectName,
|
|
project,
|
|
isBuildFile: true,
|
|
verbose: true
|
|
});
|
|
}
|
|
|
|
return project;
|
|
}
|
|
//# sourceMappingURL=Google.js.map
|