[CCSDK-28] populated the seed code for dgbuilder
[ccsdk/distribution.git] / dgbuilder / red / cli / lib / config.js
1 /**
2  * Copyright 2014 IBM Corp.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  **/
16
17 var path = require("path");
18 var fs = require("fs");
19
20 var userHome = process.env.HOME || process.env.HOMEPATH || process.env.USERPROFILE;
21
22 var configDir = path.join(userHome,".nodered");
23 var configFile = path.join(configDir,"config.json");
24
25 var config;
26
27 function load() {
28     if (config == null) {
29         try {
30             config = JSON.parse(fs.readFileSync(configFile));
31         } catch(err) {
32             config = {};
33         }
34     }
35 }
36
37 function save() {
38     try {
39         fs.mkdirSync(configDir);
40     } catch(err) {
41         if (err.code != "EEXIST") {
42             throw err;
43         }
44     }
45     fs.writeFileSync(configFile,JSON.stringify(config,null,4));
46 }
47 module.exports = {
48     unload: function() {
49         config = null;
50     }
51 };
52 module.exports.__defineGetter__('target',function() { load(); return config.target|| "http://localhost:1880" });
53 module.exports.__defineSetter__('target',function(v) { load(); config.target = v; save();});