157 lines
5.9 KiB
JavaScript
157 lines
5.9 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.getAndroidManifestAsync = getAndroidManifestAsync;
|
|
exports.getAppBuildGradleAsync = getAppBuildGradleAsync;
|
|
exports.getAppBuildGradleFilePath = getAppBuildGradleFilePath;
|
|
exports.getFileInfo = getFileInfo;
|
|
exports.getGradleFilePath = getGradleFilePath;
|
|
exports.getMainActivityAsync = getMainActivityAsync;
|
|
exports.getMainApplicationAsync = getMainApplicationAsync;
|
|
exports.getProjectBuildGradleAsync = getProjectBuildGradleAsync;
|
|
exports.getProjectBuildGradleFilePath = getProjectBuildGradleFilePath;
|
|
exports.getProjectFilePath = getProjectFilePath;
|
|
exports.getProjectPathOrThrowAsync = getProjectPathOrThrowAsync;
|
|
exports.getResourceFolderAsync = getResourceFolderAsync;
|
|
exports.getResourceXMLPathAsync = getResourceXMLPathAsync;
|
|
exports.getSettingsGradleAsync = getSettingsGradleAsync;
|
|
exports.getSettingsGradleFilePath = getSettingsGradleFilePath;
|
|
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 _glob() {
|
|
const data = require("glob");
|
|
_glob = function () {
|
|
return data;
|
|
};
|
|
return data;
|
|
}
|
|
function path() {
|
|
const data = _interopRequireWildcard(require("path"));
|
|
path = function () {
|
|
return data;
|
|
};
|
|
return data;
|
|
}
|
|
function _errors() {
|
|
const data = require("../utils/errors");
|
|
_errors = function () {
|
|
return data;
|
|
};
|
|
return data;
|
|
}
|
|
function _modules() {
|
|
const data = require("../utils/modules");
|
|
_modules = function () {
|
|
return data;
|
|
};
|
|
return data;
|
|
}
|
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
function getProjectFilePath(projectRoot, name) {
|
|
const filePath = (0, _glob().globSync)(`android/app/src/main/java/**/${name}.@(java|kt)`, {
|
|
cwd: projectRoot,
|
|
absolute: true
|
|
})[0];
|
|
(0, _assert().default)(filePath, `Project file "${name}" does not exist in android project for root "${projectRoot}"`);
|
|
return filePath;
|
|
}
|
|
function getLanguage(filePath) {
|
|
const extension = path().extname(filePath);
|
|
switch (extension) {
|
|
case '.java':
|
|
return 'java';
|
|
case '.kts':
|
|
case '.kt':
|
|
return 'kt';
|
|
case '.groovy':
|
|
case '.gradle':
|
|
return 'groovy';
|
|
default:
|
|
throw new (_errors().UnexpectedError)(`Unexpected Android file extension: ${extension}`);
|
|
}
|
|
}
|
|
function getFileInfo(filePath) {
|
|
return {
|
|
path: path().normalize(filePath),
|
|
contents: _fs().default.readFileSync(filePath, 'utf8'),
|
|
language: getLanguage(filePath)
|
|
};
|
|
}
|
|
async function getMainApplicationAsync(projectRoot) {
|
|
const filePath = getProjectFilePath(projectRoot, 'MainApplication');
|
|
return getFileInfo(filePath);
|
|
}
|
|
async function getMainActivityAsync(projectRoot) {
|
|
const filePath = getProjectFilePath(projectRoot, 'MainActivity');
|
|
return getFileInfo(filePath);
|
|
}
|
|
function getGradleFilePath(projectRoot, gradleName) {
|
|
const groovyPath = path().resolve(projectRoot, `${gradleName}.gradle`);
|
|
const ktPath = path().resolve(projectRoot, `${gradleName}.gradle.kts`);
|
|
const isGroovy = _fs().default.existsSync(groovyPath);
|
|
const isKotlin = !isGroovy && _fs().default.existsSync(ktPath);
|
|
if (!isGroovy && !isKotlin) {
|
|
throw new Error(`Failed to find '${gradleName}.gradle' file for project: ${projectRoot}.`);
|
|
}
|
|
const filePath = isGroovy ? groovyPath : ktPath;
|
|
return filePath;
|
|
}
|
|
function getProjectBuildGradleFilePath(projectRoot) {
|
|
return getGradleFilePath(path().join(projectRoot, 'android'), 'build');
|
|
}
|
|
async function getProjectBuildGradleAsync(projectRoot) {
|
|
return getFileInfo(getProjectBuildGradleFilePath(projectRoot));
|
|
}
|
|
function getSettingsGradleFilePath(projectRoot) {
|
|
return getGradleFilePath(path().join(projectRoot, 'android'), 'settings');
|
|
}
|
|
async function getSettingsGradleAsync(projectRoot) {
|
|
return getFileInfo(getSettingsGradleFilePath(projectRoot));
|
|
}
|
|
function getAppBuildGradleFilePath(projectRoot) {
|
|
return getGradleFilePath(path().join(projectRoot, 'android', 'app'), 'build');
|
|
}
|
|
async function getAppBuildGradleAsync(projectRoot) {
|
|
return getFileInfo(getAppBuildGradleFilePath(projectRoot));
|
|
}
|
|
async function getProjectPathOrThrowAsync(projectRoot) {
|
|
const projectPath = path().join(projectRoot, 'android');
|
|
if (await (0, _modules().directoryExistsAsync)(projectPath)) {
|
|
return projectPath;
|
|
}
|
|
throw new Error(`Android project folder is missing in project: ${projectRoot}`);
|
|
}
|
|
async function getAndroidManifestAsync(projectRoot) {
|
|
const projectPath = await getProjectPathOrThrowAsync(projectRoot);
|
|
const filePath = path().join(projectPath, 'app/src/main/AndroidManifest.xml');
|
|
return filePath;
|
|
}
|
|
async function getResourceFolderAsync(projectRoot) {
|
|
const projectPath = await getProjectPathOrThrowAsync(projectRoot);
|
|
return path().join(projectPath, `app/src/main/res`);
|
|
}
|
|
async function getResourceXMLPathAsync(projectRoot, {
|
|
kind = 'values',
|
|
name
|
|
}) {
|
|
const resourcePath = await getResourceFolderAsync(projectRoot);
|
|
const filePath = path().join(resourcePath, `${kind}/${name}.xml`);
|
|
return filePath;
|
|
}
|
|
//# sourceMappingURL=Paths.js.map
|