diff options
author | Johannes Zellner <johannes@nebulon.de> | 2015-06-27 16:07:34 +0200 |
---|---|---|
committer | Johannes Zellner <johannes@nebulon.de> | 2015-06-27 16:07:34 +0200 |
commit | 08b2ad7f716b3323ab8c168eb8a00a47fda03d66 (patch) | |
tree | b7ca073bb9145844065d27c6c339514b59b5a5bb /src | |
parent | eaa621841f04c1dfcc5ce98edf357d5a0d8cedfa (diff) | |
download | Surfer-08b2ad7f716b3323ab8c168eb8a00a47fda03d66.tar.gz Surfer-08b2ad7f716b3323ab8c168eb8a00a47fda03d66.tar.zst Surfer-08b2ad7f716b3323ab8c168eb8a00a47fda03d66.zip |
Add cli
Diffstat (limited to 'src')
-rw-r--r-- | src/actions.js | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/actions.js b/src/actions.js new file mode 100644 index 0000000..33e47aa --- /dev/null +++ b/src/actions.js | |||
@@ -0,0 +1,34 @@ | |||
1 | 'use strict'; | ||
2 | |||
3 | exports.put = put; | ||
4 | exports.get = get; | ||
5 | exports.del = del; | ||
6 | |||
7 | var superagent = require('superagent'), | ||
8 | path = require('path'); | ||
9 | |||
10 | var server = 'http://localhost:3000/api/files/'; | ||
11 | |||
12 | function put(filePath) { | ||
13 | var relativeFilePath = path.resolve(filePath).slice(process.cwd().length + 1); | ||
14 | superagent.put(server + relativeFilePath).attach('file', filePath).end(function (error, result) { | ||
15 | if (error) return console.log('Failed', result ? result.body : error); | ||
16 | console.log('Success', result.body); | ||
17 | }); | ||
18 | } | ||
19 | |||
20 | function get(filePath) { | ||
21 | var relativeFilePath = path.resolve(filePath).slice(process.cwd().length + 1); | ||
22 | superagent.get(server + relativeFilePath).end(function (error, result) { | ||
23 | if (error) return console.log('Failed', result ? result.body : error); | ||
24 | console.log('Success', result.body); | ||
25 | }); | ||
26 | } | ||
27 | |||
28 | function del(filePath) { | ||
29 | var relativeFilePath = path.resolve(filePath).slice(process.cwd().length + 1); | ||
30 | superagent.del(server + relativeFilePath).end(function (error, result) { | ||
31 | if (error) return console.log('Failed', result ? result.body : error); | ||
32 | console.log('Success', result.body); | ||
33 | }); | ||
34 | } | ||