Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
simcaq-node
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
simcaq
simcaq-node
Commits
cc7673e8
There was a problem fetching the pipeline summary.
Commit
cc7673e8
authored
7 years ago
by
Vytor Calixto
Browse files
Options
Downloads
Patches
Plain Diff
[ci skip]Add streams to download job
parent
a590d58d
No related branches found
No related tags found
1 merge request
!116
Release v1.0.0
Pipeline
#
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/libs/db/mongoose.js
+1
-1
1 addition, 1 deletion
src/libs/db/mongoose.js
src/libs/jobs/download.js
+9
-17
9 additions, 17 deletions
src/libs/jobs/download.js
src/libs/routes/region.js
+8
-8
8 additions, 8 deletions
src/libs/routes/region.js
with
18 additions
and
26 deletions
src/libs/db/mongoose.js
+
1
−
1
View file @
cc7673e8
...
...
@@ -11,7 +11,7 @@ mongoose.Promise = global.Promise;
module
.
exports
=
()
=>
{
// Get mongodb URI (ip and port) in config file
const
mongoUri
=
process
.
env
.
MONGO_URI
||
config
.
mongodb
.
uri
;
log
.
debug
(
`Connecting to MongoDB on URI
${
mongoUri
}
`
);
log
.
info
(
`Connecting to MongoDB on URI
${
mongoUri
}
`
);
// Connection singleton
const
db
=
mongoose
.
connect
(
mongoUri
);
...
...
This diff is collapsed.
Click to expand it.
src/libs/jobs/download.js
+
9
−
17
View file @
cc7673e8
...
...
@@ -3,29 +3,21 @@ const log = require(`${libs}/log`)(module);
const
execQuery
=
require
(
`
${
libs
}
/db/query_exec`
);
const
jsonexport
=
require
(
'
jsonexport
'
);
const
fs
=
require
(
'
fs
'
);
const
Readable
=
require
(
'
stream
'
).
Readable
;
module
.
exports
=
function
(
agenda
)
{
agenda
.
define
(
'
download database
'
,
(
job
,
done
)
=>
{
let
sql
=
job
.
attrs
.
data
.
sql
;
execQuery
(
sql
.
text
,
sql
.
values
).
then
((
result
)
=>
{
log
.
debug
(
'
Got results
'
);
jsonexport
(
result
,
(
err
,
csv
)
=>
{
if
(
err
)
{
log
.
error
(
'
Error converting to CSV
'
);
log
.
error
(
err
);
return
done
(
err
);
}
log
.
debug
(
'
Converted to csv
'
);
fs
.
writeFile
(
'
out.csv
'
,
csv
,
(
err
)
=>
{
if
(
err
)
{
log
.
error
(
'
Error writing file
'
);
log
.
error
(
err
);
return
done
(
err
);
}
log
.
info
(
'
File created
'
);
done
();
});
});
log
.
debug
(
typeof
result
);
let
reader
=
new
Readable
();
reader
.
_read
=
function
noop
(){};
reader
.
push
(
result
);
let
writer
=
fs
.
createWriteStream
(
'
out.csv
'
);
reader
.
pipe
(
jsonexport
()).
pipe
(
writer
);
},
(
err
)
=>
{
log
.
error
(
'
Error getting data from database!
'
);
log
.
error
(
err
);
...
...
This diff is collapsed.
Click to expand it.
src/libs/routes/region.js
+
8
−
8
View file @
cc7673e8
...
...
@@ -53,13 +53,13 @@ regionApp.get('/', rqf.parse(), rqf.build(), (req, res, next) => {
next
();
},
query
,
response
(
'
region
'
));
//
const agenda = require(`${libs}/agenda`);
//
//
regionApp.get('/download', (req, res) => {
//
req.sql.from('regiao').field('*');
//
let params = req.sql.toParam();
//
agenda.now('download database', {sql: params});
//
res.json({msg: 'Wait for it...'});
//
});
const
agenda
=
require
(
`
${
libs
}
/agenda`
);
regionApp
.
get
(
'
/download
'
,
(
req
,
res
)
=>
{
req
.
sql
.
from
(
'
regiao
'
).
field
(
'
*
'
);
let
params
=
req
.
sql
.
toParam
();
agenda
.
now
(
'
download database
'
,
{
sql
:
params
});
res
.
json
({
msg
:
'
Wait for it...
'
});
});
module
.
exports
=
regionApp
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment