docker/ts/dockersock.class.dockersock.ts

33 lines
989 B
TypeScript
Raw Normal View History

import "typings-global"
import * as plugins from "./dockersock.plugins";
export class dockersock {
sockPath:string;
constructor(pathArg:string){
this.sockPath = pathArg;
}
2016-06-15 22:40:32 +00:00
request(methodArg:string,routeArg:string,dataArg = {}){
let done = plugins.q.defer();
let jsonArg:string = JSON.stringify(dataArg);
let options = {
method:methodArg,
url:"http://unix:/var/run/docker.sock:" + routeArg + "/json",
headers:{
"Content-Type":"application/json"
},
body:jsonArg
};
plugins.request(options,function(err, res, body){
if (!err && res.statusCode == 200) {
var responseObj = JSON.parse(body);
done.resolve(responseObj);
} else {
console.log(err);
console.log(res);
done.reject(err);
};
});
return done.promise;
}
}