Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
BlackPearl
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
QA
BlackPearl
Commits
464a760a
Commit
464a760a
authored
Jan 29, 2018
by
tywldx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
判断是否存在project
parent
e0bbc0d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
44 deletions
+46
-44
app.js
src/app.js
+46
-44
No files found.
src/app.js
View file @
464a760a
...
...
@@ -189,50 +189,52 @@ Bp_modules.route_config.init();
*/
mongoose
.
connect
(
config
.
mongo
.
api
[
"
blackPearl
"
]);
var
db
=
mongoose
.
connection
;
var
projectModel
=
mongoose
.
model
(
"
Project
"
);
var
urlModel
=
mongoose
.
model
(
"
Url
"
);
var
deviceProjectRoute
=
mongoose
.
model
(
"
DeviceProjectRoute
"
);
var
templateUrlRoute
=
mongoose
.
model
(
"
TemplateUrlRoute
"
);
var
endecodeModel
=
mongoose
.
model
(
"
Endecode
"
);
//初始化有先后顺序,必须先初始化项目URL路由规则
let
init_env
=
true
;
projectModel
.
find
(
function
()
{
}).
populate
(
'
urls
'
).
exec
().
then
(
function
(
pro
)
{
debug
(
"
项目与URL--路由初始化
"
)
if
(
pro
.
length
!=
0
){
init_env
=
true
;
}
Bp_modules
.
route_config
.
setProjectRoutes
(
pro
);
}).
then
(
function
()
{
if
(
init_env
){
deviceProjectRoute
.
find
(
function
(
err
,
items
)
{
debug
(
"
设备与项目--路由初始化
"
)
Bp_modules
.
route_config
.
setDeviceProjectRoutes
(
items
);
});
}
}).
then
(
function
()
{
if
(
init_env
){
urlModel
.
find
().
populate
(
"
templates
"
).
exec
(
function
(
err
,
urls
){
debug
(
"
URL与template--路由初始化
"
)
Bp_modules
.
route_config
.
setUrlTemplates
(
urls
);
// console.log(urls)
});
// .populate({ templates: "TemplateUrlRoute", select: "" });
// console.log(urls);
// urlModel.find(function (err, items) {
// debug("url与模版--路由初始化")
// Bp_modules.route_config.setUrlTemplates(items);
// })
}
}).
then
(
function
(){
if
(
init_env
){
endecodeModel
.
find
(
function
(
err
,
items
){
Bp_modules
.
endecode
.
init
(
items
);
// Bp_modules.route_config.init(items);
});
}
});
if
(
db
){
var
projectModel
=
mongoose
.
model
(
"
Project
"
);
var
urlModel
=
mongoose
.
model
(
"
Url
"
);
var
deviceProjectRoute
=
mongoose
.
model
(
"
DeviceProjectRoute
"
);
var
templateUrlRoute
=
mongoose
.
model
(
"
TemplateUrlRoute
"
);
var
endecodeModel
=
mongoose
.
model
(
"
Endecode
"
);
//初始化有先后顺序,必须先初始化项目URL路由规则
let
init_env
=
true
;
projectModel
.
find
(
function
()
{
}).
populate
(
'
urls
'
).
exec
().
then
(
function
(
pro
)
{
debug
(
"
项目与URL--路由初始化
"
)
if
(
pro
.
length
!=
0
)
{
init_env
=
true
;
}
Bp_modules
.
route_config
.
setProjectRoutes
(
pro
);
}).
then
(
function
()
{
if
(
init_env
)
{
deviceProjectRoute
.
find
(
function
(
err
,
items
)
{
debug
(
"
设备与项目--路由初始化
"
)
Bp_modules
.
route_config
.
setDeviceProjectRoutes
(
items
);
});
}
}).
then
(
function
()
{
if
(
init_env
)
{
urlModel
.
find
().
populate
(
"
templates
"
).
exec
(
function
(
err
,
urls
)
{
debug
(
"
URL与template--路由初始化
"
)
Bp_modules
.
route_config
.
setUrlTemplates
(
urls
);
// console.log(urls)
});
// .populate({ templates: "TemplateUrlRoute", select: "" });
// console.log(urls);
// urlModel.find(function (err, items) {
// debug("url与模版--路由初始化")
// Bp_modules.route_config.setUrlTemplates(items);
// })
}
}).
then
(
function
()
{
if
(
init_env
)
{
endecodeModel
.
find
(
function
(
err
,
items
)
{
Bp_modules
.
endecode
.
init
(
items
);
// Bp_modules.route_config.init(items);
});
}
});
}
Bp_modules
.
datasource
.
init
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment