forked from byteball/ocore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
desktop_app.js
63 lines (55 loc) · 1.79 KB
/
desktop_app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*jslint node: true */
"use strict";
var fs = require('fs');
var path = require('path'); // make browserify skip it
function getAppsDataDir(){
switch(process.platform){
case 'win32': return process.env.APPDATA;
case 'linux': return process.env.HOME + '/.config';
case 'darwin': return process.env.HOME + '/Library/Application Support';
default: throw Error("unknown platform "+process.platform);
}
}
function getPackageJsonDir(start_dir){
try{
if (start_dir === __dirname)
throw Error("still in core");
fs.accessSync(start_dir + '/package.json');
return start_dir;
}
catch(e){
var parent_dir = path.dirname(start_dir);
if (parent_dir === '/' || process.platform === 'win32' && parent_dir.match(/^\w:[\/\\]$/))
throw Error('no package.json found');
return getPackageJsonDir(parent_dir);
}
}
// app installation dir, this is where the topmost package.json resides
function getAppRootDir(){
//console.log("parent:", module.parent);
//console.log("process.mainModule:", process.mainModule);
//console.log("require.main:", require.main);
if (process.mainModule) {
var mainModuleDir = path.dirname(process.mainModule.paths[0]);
return getPackageJsonDir(mainModuleDir);
}
else {
var arrParts = __dirname.split(path.sep + 'node_modules' + path.sep);
if (arrParts.length === 1) // we are not inside node_modules
return __dirname;
else
return arrParts[0]; // topmost parent of node_modules
}
}
// read app name from the topmost package.json
function getAppName(){
var appDir = getAppRootDir();
console.log("app dir "+appDir);
return require(appDir + '/package.json').name;
}
// app data dir inside user's home directory
function getAppDataDir(){
return (getAppsDataDir() + '/' + getAppName());
}
exports.getAppRootDir = getAppRootDir;
exports.getAppDataDir = getAppDataDir;