-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.js
46 lines (42 loc) · 1.27 KB
/
setup.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
const marklogic = require('marklogic');
const connection = require('./connection');
const db = marklogic.createDatabaseClient(connection);
const fs = require('fs');
const http = require('http');
const pathToMusicFile = 'binaries/robingrey-thesedays.mp3';
const pathToImageFile = 'binaries/sanandres.jpg';
const pathToClipFile = 'binaries/bunny.mp4';
const musicUri = '/songs/robingrey-thesedays.mp3';
const imageUri = '/images/sanandres.jpg';
const clipUri = '/clips/bunny.mp4';
const musicReadStream = fs.createReadStream(pathToMusicFile);
const imageReadStream = fs.createReadStream(pathToImageFile);
const clipReadStream = fs.createReadStream(pathToClipFile);
db.documents.write(
{
uri: musicUri,
contentType: 'audio/mpeg',
properties: {
artist: 'Robin Grey',
title: 'These Days',
album: 'Only The Missle'
},
content: musicReadStream
},
{
uri: imageUri,
contentType: 'image/jpeg',
content: imageReadStream
},
{
uri: clipUri,
contentType: 'video/mp4',
properties: {
info: 'https://peach.blender.org/',
title: 'Big Buck Bunny',
},
content: clipReadStream
}
)
.result((response) => response.documents.map((document) => console.log('Inserted', document.uri)))
.catch((error) => console.log(error));