update structure

This commit is contained in:
2016-06-16 00:40:32 +02:00
parent 95608704e4
commit 1def03d840
8 changed files with 112 additions and 5 deletions

View File

@ -6,7 +6,28 @@ export class dockersock {
constructor(pathArg:string){
this.sockPath = pathArg;
}
request(){
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;
}
}