blob: 35779fd8a152f6128799053963ed3ad590c1404a [file]
/*
*
* Copyright 2013 Jesse MacFadyen
*
* Licensed 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.
*
*/
var common = require('./common'),
path = require('path'),
glob = require('glob'),
w8jsproj = require('../util/w8jsproj');
xml_helpers = require('../util/xml-helpers');
module.exports = {
platformName:"windows8",
InvalidProjectPathError:'does not appear to be a Windows Store JS project (no .jsproj file)',
www_dir:function(project_dir) {
return path.join(project_dir, 'www');
},
package_name:function(project_dir) {
var manifest = xml_helpers.parseElementtreeSync(path.join(project_dir, 'package.appxmanifest'));
return manifest.find("Properties/DisplayName").text;
},
parseProjectFile:function(project_dir) {
var project_files = glob.sync('*.jsproj', { cwd:project_dir });
if (project_files.length == 0) {
throw new Error(this.InvalidProjectPathError);
}
return new w8jsproj(path.join(project_dir, project_files[0]));
},
"source-file":{
install:function(source_el, plugin_dir, project_dir, plugin_id, project_file) {
var targetDir = source_el.attrib['target-dir'] || '';
var dest = path.join('www', 'plugins', plugin_id, targetDir, path.basename(source_el.attrib['src']));
common.copyFile(plugin_dir, source_el.attrib['src'], project_dir, dest);
// add reference to this file to jsproj.
project_file.addSourceFile(dest);
},
uninstall:function(source_el, project_dir, plugin_id, project_file) {
var dest = path.join('www', 'plugins', plugin_id,
source_el.attrib['target-dir'] ? source_el.attrib['target-dir'] : '',
path.basename(source_el.attrib['src']));
common.removeFile(project_dir, dest);
// remove reference to this file from csproj.
project_file.removeSourceFile(dest);
}
}
};