123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- module.exports = {
- current: {server: "192.168.1.184", port: "60666",redis:{server:'192.168.1.184',port:'6379',pwd:'smartCost'}},
- defaultLicenseKey:'qa.smartcost.com.cn|uat.smartcost.com.cn|zbqa.smartcost.com.cn|zbuat.smartcost.com.cn|jlqa.smartcost.com.cn|jluat.smartcost.com.cn|zb.smartcost.com.cn|jl.smartcost.com.cn,834986144349993#A0quy7cvNGdyFWbz9SYxJiOiMXbEJCLig1jlzahlDZmpnInmb1uk/avoDrlmvJilrKqmXrunfbtmD0jnLiOiEmTDJCLiMTO9kDNzQDNxYDO9QzM8IiOiQWSiwSflNHbhZmOiI7ckJye0ICbuFkI1pjIEJCLi4TPRdWUxQWcvITWKFUNnlTbRhkQhl6drhkS6lTY9k4b5FUSUp7bahFRTZmZkBDWIVXa5JXO0NURQ3GRHplb0VTYYdUa8NXeTJWQCVDRxFEcZ9mVphnQBJnI0IyUiwSM5UzNwEzNxMTM0IicfJye&Qf35VfiMjY6cmI0IyQiwiIxEjL6ByUKBCZhVmcwNlI0IiTis7W0ICZyBlIsIyNzETMwEDI5AjNwgTMwIjI0ICdyNkIsIibj9SbvNmL4N7bjRnch56cuwmas86Yu46bj9Cdz36Y4JXYtNnLipHLuNmLt36YuQ7cvNGdyFWbz9CdhVHbqxibj9SbvNmL4N7bjRnch56cuEWcspGLuNmLt36YuQ7cvNGdyFWbz9CdhVnY0xibj9SbvNmL4N7bjRnch56cuEWcipHLuNmLt36YuQ7cvNGdyFWbz9CdhVHLuNm0tl2',
- local: {server: "localhost", port: "27017"},
- qa: {
- server: "192.168.1.184",
- port: "60666",
- options:{
- user:'smartcost',
- pass:'smartcost3850888',
- auth: {
- "authdb": "admin"
- },
- connectTimeoutMS: 50000,
- useMongoClient: true
- }
- },
- test_auth: {
- server: "120.78.150.216",
- port: "27017",
- options:{
- user:'smartcost',
- pass:'smartcost3850888',
- auth: {
- "authdb": "scConstruct"
- },
- connectTimeoutMS: 20000,
- useMongoClient: true
- }
- },
- pp:{server: "172.18.111.228", port: "27017"},
- prod:{
- dbURL:"mongodb://smartcost:SmartCost3850888@dds-wz9da4d5ca0fdd341.mongodb.rds.aliyuncs.com:3717,dds-wz9da4d5ca0fdd342.mongodb.rds.aliyuncs.com:3717/scConstruct?authSource=admin;replicaSet=mgset-7518601",
- LicenseKey:"civil.smartcost.com.cn,834986144349993#A0XNdYDO9QzM8IiOiQWSiwSflNHbhZmOiI7ckJye0ICbuFkI1pjIEJCLi4TPnNnMEVXS4RGejhFZkNVMZZHTvVTWBZlcsNTaiZFbKJHSklmM8cENUJTTnJUN9NGZTVTdrU4LmVHeudDcwtySsNWW5s4UPdVZVRDe7ETNnNHduZnWwsmI0IyUiwSO4MTNwYDO5gTM0IicfJye35XX3JyMiZzZiojIDJCLiETMuYHITpEIkFWZyB7UiojIOJyebpjIkJHUiwiIzUTNxkDMgQjM7ADOxAjMiojI4J7QiwiIuNmLt36YuQ7cvNGdyFWbz9CbpZXajJiOiMXbEJCLig1jlzahlDZmpnInmb1uk/avoDrlmvJilrKqmXrunfbtmD0jnLiOiEmTDJCLiMTO9kZNdQ"
- },
- redis_local:{server:'127.0.0.1',port:'6379',pwd:'smartCost'},
- redis_qa:{server:'192.168.1.184',port:'6379',pwd:'smartCost'},
- setupDb:function (env="local") {
- let me = this;
- me.current.server = me[env].server;
- me.current.port = me[env].port;
- me.current.redis=me["redis_"+env];
- },
- getSessionURL:function (env="local") {
- let me = this;
- if(me[env].dbURL){
- return me[env].dbURL.replace('scConstruct','usersManages');
- }
- if(me[env].options){
- return 'mongodb://'+ me[env].options.user +':'+ me[env].options.pass+'@'+ me[env].server+ ':'+ me[env].port + '/usersManages?authSource=admin';
- }else {
- return 'mongodb://' + me[env].server + ':' + me[env].port + '/usersManages';
- }
- },
- getLicenseKey:function (env = "local") {
- let me = this;
- if (me[env].LicenseKey){
- return me[env].LicenseKey;
- }else {
- return me.defaultLicenseKey;
- }
- }
- }
|