blob: a23ea3ca6f55b38fdd185b80b166767eaea8f91a [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
const fs = require('node:fs');
const path = require('node:path');
const CordovaError = require('cordova-common').CordovaError;
const events = require('cordova-common').events;
const FileUpdater = require('cordova-common').FileUpdater;
function dirExists (dir) {
return fs.existsSync(dir) && fs.statSync(dir).isDirectory();
}
class Parser {
constructor (project) {
if (!dirExists(project) || !dirExists(path.join(project, 'cordova'))) {
throw new CordovaError(`The provided path "${project}" is not a valid electron project.`);
}
this.path = project;
}
update_from_config () {
return Promise.resolve();
}
www_dir () {
return path.join(this.path, 'www');
}
// Replace the www dir with contents of platform_www and app www.
update_www (cordovaProject, opts) {
const platform_www = path.join(this.path, 'platform_www');
const my_www = this.www_dir();
// add cordova www and platform_www to sourceDirs
const sourceDirs = [
path.relative(cordovaProject.root, cordovaProject.locations.www),
path.relative(cordovaProject.root, platform_www)
];
// If project contains 'merges' for our platform, use them as another overrides
const merges_path = path.join(cordovaProject.root, 'merges', 'electron');
if (fs.existsSync(merges_path)) {
events.emit('verbose', 'Found "merges/electron" folder. Copying its contents into the electron project.');
// add merges/electron to sourceDirs
sourceDirs.push(path.join('merges', 'electron'));
}
// targetDir points to electron/www
const targetDir = path.relative(cordovaProject.root, my_www);
events.emit('verbose', `Merging and updating files from [${sourceDirs.join(', ')}] to ${targetDir}`);
FileUpdater.mergeAndUpdateDir(sourceDirs, targetDir, {
rootDir: cordovaProject.root,
exclude: ['node_modules', 'package.json']
}, logFileOp);
}
config_xml () {
return path.join(this.path, 'config.xml');
}
update_project (cfg) {
return this.update_from_config()
.then(
// Copy munged config.xml to platform www dir
() => fs.cpSync(path.join(this.www_dir(), '..', 'config.xml'), path.join(this.www_dir(), 'config.xml'), { recursive: true })
);
}
}
module.exports = function (project) {
return new Parser(project);
};
/**
* Logs all file operations via the verbose event stream, indented.
*/
function logFileOp (message) {
events.emit('verbose', ` ${message}`);
}