summaryrefslogtreecommitdiffstats
path: root/lib/utils/images.js
blob: 0d37a0fcce414b287fb779e782de6018276ae2d7 (plain)
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
47
48
49
var _ = require("lodash");
var Q = require("q");
var fs = require("./fs");
var exec = require('child_process').exec;
var request = require("request");

var links = require("./links");

// Convert a svg file
var convertSVGFile = function(source, dest, options) {
	var d = Q.defer();

	options = _.defaults(options || {}, {

	});

	var command = "svgexport "+source+" "+dest;

    var child = exec(command, function (error, stdout, stderr) {
        if (error) {
        	if (error.code == "ENOENT") error = new Error("Need to install 'svgexport' using 'npm install svgexport -g'");
        	return d.reject(error);
        }
        d.resolve();
    });

	return d.promise;
};

// Convert a svg file or url
var convertSVG = function(source, dest, options) {
	if (!links.isExternal(source)) return convertSVGFile(source, dest, options);

	return fs.tmp.file({ postfix: '.svg' })

	// Download file
	.then(function(tmpfile) {
		return fs.writeStream(tmpfile, request(source))
		.thenResolve(tmpfile);
	})
	.then(function(tmpfile) {
		return convertSVGFile(tmpfile, dest, options);
	});
};

module.exports = {
	convertSVG: convertSVG,
	INVALID: [".svg"]
};