Compare commits
99 Commits
Author | SHA1 | Date | |
---|---|---|---|
b71f134abd | |||
968b3c7449 | |||
d9558f7843 | |||
19e67ffdcc | |||
e983b66c28 | |||
c79f6a698f | |||
0ef098e9c8 | |||
d56350ff28 | |||
a4dc4e7950 | |||
424e911804 | |||
b5c4727bae | |||
b6f3fbf8a9 | |||
7241e7a8fd | |||
ae37148ece | |||
65c37bdd6f | |||
6acbe30e2e | |||
eb6f7889d0 | |||
e39da5fee9 | |||
b07628bb0b | |||
5815f9b202 | |||
846ea9997e | |||
de54db33ad | |||
314cb692ac | |||
73f8ded3fe | |||
a28b10ac51 | |||
927e2e0acc | |||
c496405818 | |||
020737e21b | |||
fe3560caac | |||
b2a7e67868 | |||
f772ca15ef | |||
71cfad146f | |||
43b1c13256 | |||
2c8b17f029 | |||
c6521d9160 | |||
72c74e44b5 | |||
2fb628213d | |||
373a4e2eac | |||
a202d05e9c | |||
6e97a7d83c | |||
04bb3b9ed0 | |||
29e502a32e | |||
75a118183e | |||
aa1fe594e8 | |||
cf761e19bf | |||
af7590c8de | |||
ee2e4fb856 | |||
ff5cecb07e | |||
e50b028c00 | |||
867dda8e7c | |||
d12d595f21 | |||
6117228ea4 | |||
b6b584f808 | |||
48fe6ce0a8 | |||
55acb39071 | |||
f7b17a4684 | |||
d95f6c8e7f | |||
001cdadb6b | |||
82655623d1 | |||
ea117bc391 | |||
57594728df | |||
8430a4d6e0 | |||
7f38868510 | |||
7a80718d27 | |||
1d0c4c3cf9 | |||
a037cba454 | |||
7009e07ecc | |||
7b8ef33e21 | |||
3011e599e8 | |||
8adb636db3 | |||
dd35e5d7d2 | |||
91d7f583e2 | |||
a77ed42e9f | |||
499c6cc3b7 | |||
19283fb695 | |||
b2d84b1399 | |||
7cc2374130 | |||
526bb5bbd0 | |||
14b2105a49 | |||
37efeffe69 | |||
943f46d620 | |||
cfb7c1ce06 | |||
489a47b9bf | |||
28fa5349d7 | |||
cc82b3af04 | |||
6a8751afd2 | |||
56612f9ac9 | |||
2a1fcd8cdb | |||
09911328b2 | |||
548e32419e | |||
2b2b06b48b | |||
37028a9b1f | |||
3cba5844d8 | |||
a3ceb68eab | |||
be659a2dbd | |||
144f963d8a | |||
0c7cd35448 | |||
4e3446cb2f | |||
cec9555908 |
21
.gitignore
vendored
21
.gitignore
vendored
@ -1,3 +1,22 @@
|
|||||||
docs/
|
.nogit/
|
||||||
|
|
||||||
|
# artifacts
|
||||||
coverage/
|
coverage/
|
||||||
|
public/
|
||||||
|
pages/
|
||||||
|
|
||||||
|
# installs
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
|
# caches
|
||||||
|
.yarn/
|
||||||
|
.cache/
|
||||||
|
.rpt2_cache
|
||||||
|
|
||||||
|
# builds
|
||||||
|
dist/
|
||||||
|
dist_web/
|
||||||
|
dist_serve/
|
||||||
|
dist_ts_web/
|
||||||
|
|
||||||
|
# custom
|
118
.gitlab-ci.yml
118
.gitlab-ci.yml
@ -1,53 +1,121 @@
|
|||||||
image: hosttoday/ht-docker-dbase
|
# gitzone ci_default
|
||||||
services:
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
- docker:dind
|
|
||||||
|
cache:
|
||||||
|
paths:
|
||||||
|
- .npmci_cache/
|
||||||
|
key: "$CI_BUILD_STAGE"
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- build
|
- security
|
||||||
- test
|
- test
|
||||||
- release
|
- release
|
||||||
- trigger
|
- metadata
|
||||||
|
|
||||||
before_script:
|
# ====================
|
||||||
- npmci prepare docker-gitlab
|
# security stage
|
||||||
|
# ====================
|
||||||
|
mirror:
|
||||||
build:
|
stage: security
|
||||||
stage: build
|
|
||||||
script:
|
script:
|
||||||
- npm install
|
- npmci git mirror
|
||||||
- npm test
|
|
||||||
- npmci build docker
|
|
||||||
tags:
|
tags:
|
||||||
- lossless
|
- docker
|
||||||
- priv
|
- notpriv
|
||||||
|
|
||||||
|
snyk:
|
||||||
|
stage: security
|
||||||
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci command npm install -g snyk
|
||||||
|
- npmci command npm install --ignore-scripts
|
||||||
|
- npmci command snyk test
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
test:
|
# ====================
|
||||||
|
# test stage
|
||||||
|
# ====================
|
||||||
|
|
||||||
|
testLTS:
|
||||||
|
services:
|
||||||
|
- docker:18-dind
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- npmci test docker
|
- npmci npm prepare
|
||||||
|
- npmci node install lts
|
||||||
|
- npmci npm install
|
||||||
|
- npmci npm test
|
||||||
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- lossless
|
- docker
|
||||||
- priv
|
- priv
|
||||||
|
|
||||||
|
testBuild:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci node install lts
|
||||||
|
- npmci npm install
|
||||||
|
- npmci command npm run build
|
||||||
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
release:
|
release:
|
||||||
image: hosttoday/ht-docker-node:npmts
|
|
||||||
stage: release
|
stage: release
|
||||||
script:
|
script:
|
||||||
- npmci publish npm
|
- npmci node install lts
|
||||||
|
- npmci npm publish
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
tags:
|
tags:
|
||||||
- lossless
|
- docker
|
||||||
|
- notpriv
|
||||||
|
|
||||||
|
# ====================
|
||||||
|
# metadata stage
|
||||||
|
# ====================
|
||||||
|
codequality:
|
||||||
|
stage: metadata
|
||||||
|
allow_failure: true
|
||||||
|
script:
|
||||||
|
- npmci command npm install -g tslint typescript
|
||||||
|
- npmci npm install
|
||||||
|
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
- priv
|
- priv
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
stage: trigger
|
stage: metadata
|
||||||
script:
|
script:
|
||||||
- npmci trigger
|
- npmci trigger
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
tags:
|
tags:
|
||||||
- lossless
|
- docker
|
||||||
- priv
|
- notpriv
|
||||||
|
|
||||||
|
pages:
|
||||||
|
image: hosttoday/ht-docker-dbase:npmci
|
||||||
|
services:
|
||||||
|
- docker:18-dind
|
||||||
|
stage: metadata
|
||||||
|
script:
|
||||||
|
- npmci command npm install -g @gitzone/tsdoc
|
||||||
|
- npmci npm prepare
|
||||||
|
- npmci npm install
|
||||||
|
- npmci command tsdoc
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
- notpriv
|
||||||
|
only:
|
||||||
|
- tags
|
||||||
|
artifacts:
|
||||||
|
expire_in: 1 week
|
||||||
|
paths:
|
||||||
|
- public
|
||||||
|
allow_failure: true
|
||||||
|
29
.vscode/launch.json
vendored
Normal file
29
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "current file",
|
||||||
|
"type": "node",
|
||||||
|
"request": "launch",
|
||||||
|
"args": [
|
||||||
|
"${relativeFile}"
|
||||||
|
],
|
||||||
|
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
||||||
|
"cwd": "${workspaceRoot}",
|
||||||
|
"protocol": "inspector",
|
||||||
|
"internalConsoleOptions": "openOnSessionStart"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "test.ts",
|
||||||
|
"type": "node",
|
||||||
|
"request": "launch",
|
||||||
|
"args": [
|
||||||
|
"test/test.ts"
|
||||||
|
],
|
||||||
|
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
||||||
|
"cwd": "${workspaceRoot}",
|
||||||
|
"protocol": "inspector",
|
||||||
|
"internalConsoleOptions": "openOnSessionStart"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -1,6 +0,0 @@
|
|||||||
FROM hosttoday/ht-docker-node:npmts
|
|
||||||
RUN mkdir app-node
|
|
||||||
COPY ./ /app-node/
|
|
||||||
WORKDIR /app-node
|
|
||||||
ENV CI true
|
|
||||||
CMD ["npmts"]
|
|
50
README.md
50
README.md
@ -1,28 +1,38 @@
|
|||||||
# dockersock
|
# @mojoio/docker
|
||||||
easy communication with docker from node, TypeScript ready
|
unofficial docker engine api abstraction package written in TypeScript
|
||||||
|
|
||||||
## Status
|
## Availabililty and Links
|
||||||
[](https://gitlab.com/pushrocks/dockersock/commits/master)
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@mojoio/docker)
|
||||||
|
* [gitlab.com (source)](https://gitlab.com/mojoio/docker)
|
||||||
|
* [github.com (source mirror)](https://github.com/mojoio/docker)
|
||||||
|
* [docs (typedoc)](https://mojoio.gitlab.io/docker/)
|
||||||
|
|
||||||
|
## Status for master
|
||||||
|
[](https://gitlab.com/mojoio/docker/commits/master)
|
||||||
|
[](https://gitlab.com/mojoio/docker/commits/master)
|
||||||
|
[](https://www.npmjs.com/package/@mojoio/docker)
|
||||||
|
[](https://snyk.io/test/npm/@mojoio/docker)
|
||||||
|
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
[](https://prettier.io/)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
We recommend the use of TypeScript for best Intellisense.
|
|
||||||
|
|
||||||
```TypeScript
|
Use TypeScript for best in class instellisense.
|
||||||
import {Dockersock} from "dockersock"; // require Dockersock class
|
|
||||||
|
|
||||||
let myDockersock = new Dockersock(); // optional: you can pass a domain to the contructor, defaults to /var/run/docker.sock
|
```typescript
|
||||||
|
import { DockerHost } from '@mojoio/docker'; // require Dockersock class
|
||||||
|
|
||||||
myDockersock.listContainers() // promise, resolve gets container data
|
const run = async () => {
|
||||||
myDockersock.listContainersDetailed() // promise, resolve gets more detailed container data (by combining several requests internally)
|
const myDockerHost = new DockerHost(); // optional: you can pass a domain to the contructor, defaults to /var/run/docker.sock
|
||||||
myDockersock.listContainersRunning() // promise, resolve gets container data for currently running containers
|
|
||||||
myDockersock.listContainersStopped() // promise, resolve gets container data for stopped containers
|
|
||||||
|
|
||||||
myDockersock.startContainer({ // starts a already present container
|
|
||||||
name: "somecontainername"
|
|
||||||
})
|
|
||||||
|
|
||||||
myDockersock.newContainer({ // start new Container, equals "docker run" shell command
|
|
||||||
image: "someimagetag"
|
|
||||||
})
|
|
||||||
|
|
||||||
|
const containers = await myDockerHost.getContainers(); // promise, resolve with an array of DockerContainers
|
||||||
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
For further information read the linked docs at the top of this readme.
|
||||||
|
|
||||||
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
||||||
|
|
||||||
|
[](https://maintainedby.lossless.com)
|
||||||
|
26
dist/dockersock.classes.dockersock.d.ts
vendored
26
dist/dockersock.classes.dockersock.d.ts
vendored
@ -1,26 +0,0 @@
|
|||||||
/// <reference types="q" />
|
|
||||||
import "typings-global";
|
|
||||||
import * as plugins from "./dockersock.plugins";
|
|
||||||
import { Observable } from "rxjs";
|
|
||||||
export declare class Dockersock {
|
|
||||||
sockPath: string;
|
|
||||||
constructor(pathArg?: string);
|
|
||||||
auth(userArg: string, passArg: string): plugins.q.Promise<{}>;
|
|
||||||
listContainers(): plugins.q.Promise<{}>;
|
|
||||||
listContainersDetailed(): plugins.q.Promise<{}>;
|
|
||||||
listContainersRunning(): plugins.q.Promise<{}>;
|
|
||||||
listContainersStopped(): plugins.q.Promise<{}>;
|
|
||||||
listImages(): plugins.q.Promise<{}>;
|
|
||||||
listImagesDangling(): plugins.q.Promise<{}>;
|
|
||||||
pullImage(imageLabel: string): plugins.q.Promise<{}>;
|
|
||||||
createContainer(optionsArg: any, pullFirstArg?: boolean): plugins.q.Promise<{}>;
|
|
||||||
getContainerId(): void;
|
|
||||||
startContainer(containerNameArg: any): plugins.q.Promise<{}>;
|
|
||||||
stopContainer(containerNameArg: any): plugins.q.Promise<{}>;
|
|
||||||
removeContainer(containerNameArg: any): plugins.q.Promise<{}>;
|
|
||||||
clean(): plugins.q.Promise<{}>;
|
|
||||||
callOnChange(cb: Function): void;
|
|
||||||
getChangeObservable(): Observable<{}>;
|
|
||||||
request(methodArg: string, routeArg: string, queryArg?: string, dataArg?: {}): plugins.q.Promise<{}>;
|
|
||||||
requestStream(methodArg: any, routeArg: any, endArg?: boolean): plugins.q.Promise<{}>;
|
|
||||||
}
|
|
200
dist/dockersock.classes.dockersock.js
vendored
200
dist/dockersock.classes.dockersock.js
vendored
File diff suppressed because one or more lines are too long
5
dist/dockersock.plugins.d.ts
vendored
5
dist/dockersock.plugins.d.ts
vendored
@ -1,5 +0,0 @@
|
|||||||
import "typings-global";
|
|
||||||
export import beautylog = require("beautylog");
|
|
||||||
export import q = require("q");
|
|
||||||
export declare let request: any;
|
|
||||||
export import rxjs = require("rxjs");
|
|
7
dist/dockersock.plugins.js
vendored
7
dist/dockersock.plugins.js
vendored
@ -1,7 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
require("typings-global");
|
|
||||||
exports.beautylog = require("beautylog");
|
|
||||||
exports.q = require("q");
|
|
||||||
exports.request = require("request");
|
|
||||||
exports.rxjs = require("rxjs");
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG9ja2Vyc29jay5wbHVnaW5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvZG9ja2Vyc29jay5wbHVnaW5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxRQUFPLGdCQUFnQixDQUFDLENBQUE7QUFDVixpQkFBUyxXQUFXLFdBQVcsQ0FBQyxDQUFDO0FBQ2pDLFNBQUMsV0FBVyxHQUFHLENBQUMsQ0FBQztBQUNwQixlQUFPLEdBQUcsT0FBTyxDQUFDLFNBQVMsQ0FBQyxDQUFDO0FBQzFCLFlBQUksV0FBVyxNQUFNLENBQUMsQ0FBQyJ9
|
|
2
dist/index.d.ts
vendored
2
dist/index.d.ts
vendored
@ -1,2 +0,0 @@
|
|||||||
import "typings-global";
|
|
||||||
export { Dockersock } from "./dockersock.classes.dockersock";
|
|
5
dist/index.js
vendored
5
dist/index.js
vendored
@ -1,5 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
require("typings-global");
|
|
||||||
var dockersock_classes_dockersock_1 = require("./dockersock.classes.dockersock");
|
|
||||||
exports.Dockersock = dockersock_classes_dockersock_1.Dockersock;
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsUUFBTyxnQkFBZ0IsQ0FBQyxDQUFBO0FBQ3hCLDhDQUF5QixpQ0FBaUMsQ0FBQztBQUFuRCxnRUFBa0QifQ==
|
|
@ -1,18 +1,18 @@
|
|||||||
nginx1 :
|
nginx1 :
|
||||||
image: "nginx"
|
image: "nginx"
|
||||||
environment:
|
environment:
|
||||||
VIRTUAL_HOST: "test100.labkomp.de"
|
VIRTUAL_HOST: "test100.bleu.de"
|
||||||
restart: always
|
restart: always
|
||||||
container_name: nginx1
|
container_name: nginx1
|
||||||
nginx2:
|
nginx2:
|
||||||
image: nginx
|
image: nginx
|
||||||
environment:
|
environment:
|
||||||
VIRTUAL_HOST: "test101.labkomp.de"
|
VIRTUAL_HOST: "test101.bleu.de"
|
||||||
restart: always
|
restart: always
|
||||||
container_name: nginx2
|
container_name: nginx2
|
||||||
npmts-test-container:
|
nginx3:
|
||||||
image: "npmts-test-image"
|
image: nginx
|
||||||
volumes:
|
environment:
|
||||||
- "/var/run/docker.sock:/var/run/docker.sock"
|
VIRTUAL_HOST: "test101.bleu.de"
|
||||||
restart: always
|
restart: always
|
||||||
container_name: npmts-test-container
|
container_name: nginx3
|
22
npmextra.json
Normal file
22
npmextra.json
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"npmdocker": {
|
||||||
|
"baseImage": "hosttoday/ht-docker-node:npmci",
|
||||||
|
"command": "(ls -a && rm -r node_modules && yarn global add npmts && yarn install && npmts)",
|
||||||
|
"dockerSock": true
|
||||||
|
},
|
||||||
|
"npmci": {
|
||||||
|
"npmGlobalTools": [],
|
||||||
|
"npmAccessLevel": "public",
|
||||||
|
"npmRegistryUrl": "registry.npmjs.org"
|
||||||
|
},
|
||||||
|
"gitzone": {
|
||||||
|
"module": {
|
||||||
|
"githost": "gitlab.com",
|
||||||
|
"gitscope": "mojoio",
|
||||||
|
"gitrepo": "docker",
|
||||||
|
"shortDescription": "unofficial docker engine api abstraction package written in TypeScript",
|
||||||
|
"npmPackagename": "@mojoio/docker",
|
||||||
|
"license": "MIT"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"mode":"default",
|
|
||||||
"coverageTreshold":10
|
|
||||||
}
|
|
2095
package-lock.json
generated
Normal file
2095
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
51
package.json
51
package.json
@ -1,14 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "dockersock",
|
"name": "@mojoio/docker",
|
||||||
"version": "1.0.13",
|
"version": "1.0.56",
|
||||||
"description": "easy communication with docker from node, TypeScript ready",
|
"description": "easy communication with docker remote api from node, TypeScript ready",
|
||||||
|
"private": false,
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "npmts --notest && npm run build && npm run startdocker && npm run cleanup",
|
"test": "tstest test/",
|
||||||
"build": "docker build -t npmts-test-image .",
|
"build": "tsbuild"
|
||||||
"startdocker": "docker run -v /var/run/docker.sock:/var/run/docker.sock --name npmts-test-container npmts-test-image",
|
|
||||||
"cleanup": "docker rm npmts-test-container && docker rmi npmts-test-image"
|
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@ -28,16 +27,34 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://gitlab.com/pushrocks/dockersock#README",
|
"homepage": "https://gitlab.com/pushrocks/dockersock#README",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/q": "*",
|
"@pushrocks/lik": "^3.0.11",
|
||||||
"beautylog": "^5.0.14",
|
"@pushrocks/smartjson": "^3.0.8",
|
||||||
"q": "^1.4.1",
|
"@pushrocks/smartlog": "^2.0.19",
|
||||||
"request": "^2.73.0",
|
"@pushrocks/smartnetwork": "^1.1.14",
|
||||||
"rxjs": "^5.0.0-beta.10",
|
"@pushrocks/smartpromise": "^3.0.2",
|
||||||
"typings-global": "^1.0.6"
|
"@pushrocks/smartrequest": "^1.1.26",
|
||||||
|
"@pushrocks/smartstring": "^3.0.10",
|
||||||
|
"@pushrocks/smartversion": "^2.0.4",
|
||||||
|
"rxjs": "^6.5.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"npmts-g": "^5.2.6",
|
"@gitzone/tsbuild": "^2.1.17",
|
||||||
"should": "^9.0.2",
|
"@gitzone/tsrun": "^1.2.8",
|
||||||
"typings-test": "^1.0.1"
|
"@gitzone/tstest": "^1.0.24",
|
||||||
}
|
"@pushrocks/tapbundle": "^3.0.13",
|
||||||
|
"@types/node": "^12.7.4",
|
||||||
|
"tslint": "^5.19.0",
|
||||||
|
"tslint-config-prettier": "^1.18.0"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"ts/*",
|
||||||
|
"ts_web/*",
|
||||||
|
"dist/*",
|
||||||
|
"dist_web/*",
|
||||||
|
"dist_ts_web/*",
|
||||||
|
"assets/*",
|
||||||
|
"cli.js",
|
||||||
|
"npmextra.json",
|
||||||
|
"readme.md"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
2
test/test.d.ts
vendored
2
test/test.d.ts
vendored
@ -1,2 +0,0 @@
|
|||||||
import "typings-test";
|
|
||||||
import "should";
|
|
36
test/test.js
36
test/test.js
@ -1,36 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
require("typings-test");
|
|
||||||
require("should");
|
|
||||||
const index_1 = require("../dist/index");
|
|
||||||
describe("dockersock", function () {
|
|
||||||
describe(".Dockersock()", function () {
|
|
||||||
let testDockersock;
|
|
||||||
it("should create a new Dockersock instance", function () {
|
|
||||||
testDockersock = new index_1.Dockersock();
|
|
||||||
testDockersock.should.be.instanceof(index_1.Dockersock);
|
|
||||||
});
|
|
||||||
it("should list containers", function (done) {
|
|
||||||
testDockersock.listContainers()
|
|
||||||
.then((dataArg) => {
|
|
||||||
console.log(dataArg);
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
it("should list detailed containers", function (done) {
|
|
||||||
this.timeout(5000);
|
|
||||||
testDockersock.listContainersDetailed()
|
|
||||||
.then((dataArg) => {
|
|
||||||
console.log(dataArg);
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
it("should pull an image from imagetag", function (done) {
|
|
||||||
this.timeout(60000);
|
|
||||||
testDockersock.pullImage("hosttoday%2Fht-docker-dbase")
|
|
||||||
.then((dataArg) => {
|
|
||||||
done();
|
|
||||||
}, done);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbInRlc3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLFFBQU8sY0FBYyxDQUFDLENBQUE7QUFDdEIsUUFBTyxRQUFRLENBQUMsQ0FBQTtBQUVoQix3QkFBeUIsZUFFekIsQ0FBQyxDQUZ1QztBQUV4QyxRQUFRLENBQUMsWUFBWSxFQUFDO0lBQ2xCLFFBQVEsQ0FBQyxlQUFlLEVBQUM7UUFDckIsSUFBSSxjQUF5QixDQUFDO1FBQzlCLEVBQUUsQ0FBQyx5Q0FBeUMsRUFBQztZQUN6QyxjQUFjLEdBQUcsSUFBSSxrQkFBVSxFQUFFLENBQUM7WUFDbEMsY0FBYyxDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUMsVUFBVSxDQUFDLGtCQUFVLENBQUMsQ0FBQztRQUNwRCxDQUFDLENBQUMsQ0FBQztRQUNILEVBQUUsQ0FBQyx3QkFBd0IsRUFBQyxVQUFTLElBQUk7WUFDckMsY0FBYyxDQUFDLGNBQWMsRUFBRTtpQkFDMUIsSUFBSSxDQUFDLENBQUMsT0FBTztnQkFDVixPQUFPLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBQyxDQUFDO2dCQUNyQixJQUFJLEVBQUUsQ0FBQztZQUNYLENBQUMsQ0FBQyxDQUFDO1FBQ1gsQ0FBQyxDQUFDLENBQUM7UUFDSCxFQUFFLENBQUMsaUNBQWlDLEVBQUMsVUFBUyxJQUFJO1lBQzlDLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUM7WUFDbkIsY0FBYyxDQUFDLHNCQUFzQixFQUFFO2lCQUNsQyxJQUFJLENBQUMsQ0FBQyxPQUFPO2dCQUNWLE9BQU8sQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLENBQUM7Z0JBQ3JCLElBQUksRUFBRSxDQUFDO1lBQ1gsQ0FBQyxDQUFDLENBQUM7UUFDWCxDQUFDLENBQUMsQ0FBQztRQUNILEVBQUUsQ0FBQyxvQ0FBb0MsRUFBQyxVQUFTLElBQUk7WUFDakQsSUFBSSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsQ0FBQztZQUNwQixjQUFjLENBQUMsU0FBUyxDQUFDLDZCQUE2QixDQUFDO2lCQUNsRCxJQUFJLENBQUMsQ0FBQyxPQUFPO2dCQUNWLElBQUksRUFBRSxDQUFDO1lBQ1gsQ0FBQyxFQUFDLElBQUksQ0FBQyxDQUFDO1FBQ2hCLENBQUMsQ0FBQyxDQUFBO0lBQ04sQ0FBQyxDQUFDLENBQUM7QUFDUCxDQUFDLENBQUMsQ0FBQyJ9
|
|
132
test/test.ts
132
test/test.ts
@ -1,36 +1,114 @@
|
|||||||
import "typings-test";
|
import { expect, tap } from '@pushrocks/tapbundle';
|
||||||
import "should";
|
import * as docker from '../ts/index';
|
||||||
|
import { DockerService } from '../ts/index';
|
||||||
|
|
||||||
import {Dockersock} from "../dist/index"
|
let testDockerHost: docker.DockerHost;
|
||||||
|
|
||||||
describe("dockersock",function(){
|
tap.test('should create a new Dockersock instance', async () => {
|
||||||
describe(".Dockersock()",function(){
|
testDockerHost = new docker.DockerHost('http://unix:/var/run/docker.sock:');
|
||||||
let testDockersock:Dockersock;
|
return expect(testDockerHost).to.be.instanceof(docker.DockerHost);
|
||||||
it("should create a new Dockersock instance",function(){
|
|
||||||
testDockersock = new Dockersock();
|
|
||||||
testDockersock.should.be.instanceof(Dockersock);
|
|
||||||
});
|
});
|
||||||
it("should list containers",function(done){
|
|
||||||
testDockersock.listContainers()
|
tap.test('should create a docker swarm', async () => {
|
||||||
.then((dataArg)=>{
|
await testDockerHost.activateSwarm();
|
||||||
console.log(dataArg);
|
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Containers
|
||||||
|
tap.test('should list containers', async () => {
|
||||||
|
const containers = await testDockerHost.getContainers();
|
||||||
|
console.log(containers);
|
||||||
});
|
});
|
||||||
it("should list detailed containers",function(done){
|
|
||||||
this.timeout(5000);
|
// Networks
|
||||||
testDockersock.listContainersDetailed()
|
tap.test('should list networks', async () => {
|
||||||
.then((dataArg)=>{
|
const networks = await testDockerHost.getNetworks();
|
||||||
console.log(dataArg);
|
console.log(networks);
|
||||||
done();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
tap.test('should create a network', async () => {
|
||||||
|
const newNetwork = await docker.DockerNetwork.createNetwork(testDockerHost, {
|
||||||
|
Name: 'webgateway'
|
||||||
});
|
});
|
||||||
it("should pull an image from imagetag",function(done){
|
expect(newNetwork).to.be.instanceOf(docker.DockerNetwork);
|
||||||
this.timeout(60000);
|
expect(newNetwork.Name).to.equal('webgateway');
|
||||||
testDockersock.pullImage("hosttoday%2Fht-docker-dbase")
|
|
||||||
.then((dataArg)=>{
|
|
||||||
done();
|
|
||||||
},done);
|
|
||||||
})
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
tap.test('should remove a network', async () => {
|
||||||
|
const webgateway = await docker.DockerNetwork.getNetworkByName(testDockerHost, 'webgateway');
|
||||||
|
await webgateway.remove();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Images
|
||||||
|
tap.test('should pull an image from imagetag', async () => {
|
||||||
|
const image = await docker.DockerImage.createFromRegistry(testDockerHost, {
|
||||||
|
imageUrl: 'hosttoday/ht-docker-node',
|
||||||
|
imageTag: 'alpine'
|
||||||
|
});
|
||||||
|
expect(image).to.be.instanceOf(docker.DockerImage);
|
||||||
|
console.log(image);
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should return a change Observable', async tools => {
|
||||||
|
const testObservable = await testDockerHost.getEventObservable();
|
||||||
|
const subscription = testObservable.subscribe(changeObject => {
|
||||||
|
console.log(changeObject);
|
||||||
|
});
|
||||||
|
await tools.delayFor(2000);
|
||||||
|
subscription.unsubscribe();
|
||||||
|
});
|
||||||
|
|
||||||
|
// SECRETS
|
||||||
|
tap.test('should create a secret', async () => {
|
||||||
|
const mySecret = await docker.DockerSecret.createSecret(testDockerHost, {
|
||||||
|
name: 'testSecret',
|
||||||
|
contentArg: `{ "hi": "wow"}`,
|
||||||
|
labels: {}
|
||||||
|
});
|
||||||
|
console.log(mySecret);
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should remove a secret by name', async () => {
|
||||||
|
const mySecret = await docker.DockerSecret.getSecretByName(testDockerHost, 'testSecret');
|
||||||
|
await mySecret.remove();
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
// SERVICES
|
||||||
|
tap.test('should activate swarm mode', async () => {
|
||||||
|
await testDockerHost.activateSwarm();
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should list all services', async tools => {
|
||||||
|
const services = await testDockerHost.getServices();
|
||||||
|
console.log(services);
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should create a service', async () => {
|
||||||
|
const testNetwork = await docker.DockerNetwork.createNetwork(testDockerHost, {
|
||||||
|
Name: 'testNetwork'
|
||||||
|
});
|
||||||
|
const testSecret = await docker.DockerSecret.createSecret(testDockerHost, {
|
||||||
|
name: 'serviceSecret',
|
||||||
|
labels: {},
|
||||||
|
contentArg: '{"hi": "wow"}'
|
||||||
|
});
|
||||||
|
const testService = await DockerService.createService(testDockerHost, {
|
||||||
|
Image: 'nginx:latest',
|
||||||
|
Labels: {
|
||||||
|
'testlabel': 'hi'
|
||||||
|
},
|
||||||
|
Name: 'testService',
|
||||||
|
networks: [testNetwork],
|
||||||
|
networkAlias: 'testService',
|
||||||
|
secrets: [testSecret]
|
||||||
|
});
|
||||||
|
|
||||||
|
await testSecret.update(`{"updated": "socool"}`);
|
||||||
|
await testService.update();
|
||||||
|
|
||||||
|
await testService.remove();
|
||||||
|
await testNetwork.remove();
|
||||||
|
await testSecret.remove();
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.start();
|
||||||
|
101
ts/docker.classes.container.ts
Normal file
101
ts/docker.classes.container.ts
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
import * as plugins from './docker.plugins';
|
||||||
|
import * as interfaces from './interfaces';
|
||||||
|
|
||||||
|
import { DockerHost } from './docker.classes.host';
|
||||||
|
|
||||||
|
export class DockerContainer {
|
||||||
|
// STATIC
|
||||||
|
|
||||||
|
/**
|
||||||
|
* get all containers
|
||||||
|
*/
|
||||||
|
public static async getContainers(dockerHostArg: DockerHost): Promise<DockerContainer[]> {
|
||||||
|
const result: DockerContainer[] = [];
|
||||||
|
const response = await dockerHostArg.request('GET', '/containers/json');
|
||||||
|
|
||||||
|
// TODO: Think about getting the config by inpsecting the container
|
||||||
|
for (const containerResult of response.body) {
|
||||||
|
result.push(new DockerContainer(dockerHostArg, containerResult));
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets an container by Id
|
||||||
|
* @param containerId
|
||||||
|
*/
|
||||||
|
public static async getContainerById(containerId: string) {
|
||||||
|
// TODO: implement get container by id
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* create a container
|
||||||
|
*/
|
||||||
|
public static async create(
|
||||||
|
dockerHost: DockerHost,
|
||||||
|
containerCreationDescriptor: interfaces.IContainerCreationDescriptor
|
||||||
|
) {
|
||||||
|
// check for unique hostname
|
||||||
|
const existingContainers = await DockerContainer.getContainers(dockerHost);
|
||||||
|
const sameHostNameContainer = existingContainers.find(container => {
|
||||||
|
// TODO implement HostName Detection;
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
const response = await dockerHost.request('POST', '/containers/create', {
|
||||||
|
Hostname: containerCreationDescriptor.Hostname,
|
||||||
|
Domainname: containerCreationDescriptor.Domainname,
|
||||||
|
User: 'root'
|
||||||
|
});
|
||||||
|
if (response.statusCode < 300) {
|
||||||
|
plugins.smartlog.defaultLogger.log('info', 'Container created successfully');
|
||||||
|
} else {
|
||||||
|
plugins.smartlog.defaultLogger.log(
|
||||||
|
'error',
|
||||||
|
'There has been a problem when creating the container'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// INSTANCE
|
||||||
|
// references
|
||||||
|
public dockerHost: DockerHost;
|
||||||
|
|
||||||
|
// properties
|
||||||
|
public Id: string;
|
||||||
|
public Names: string[];
|
||||||
|
public Image: string;
|
||||||
|
public ImageID: string;
|
||||||
|
public Command: string;
|
||||||
|
public Created: number;
|
||||||
|
public Ports: interfaces.TPorts;
|
||||||
|
public Labels: interfaces.TLabels;
|
||||||
|
public State: string;
|
||||||
|
public Status: string;
|
||||||
|
public HostConfig: any;
|
||||||
|
public NetworkSettings: {
|
||||||
|
Networks: {
|
||||||
|
[key: string]: {
|
||||||
|
IPAMConfig: any;
|
||||||
|
Links: any;
|
||||||
|
Aliases: any;
|
||||||
|
NetworkID: string;
|
||||||
|
EndpointID: string;
|
||||||
|
Gateway: string;
|
||||||
|
IPAddress: string;
|
||||||
|
IPPrefixLen: number;
|
||||||
|
IPv6Gateway: string;
|
||||||
|
GlobalIPv6Address: string;
|
||||||
|
GlobalIPv6PrefixLen: number;
|
||||||
|
MacAddress: string;
|
||||||
|
DriverOpts: any;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
public Mounts: any;
|
||||||
|
constructor(dockerHostArg: DockerHost, dockerContainerObjectArg: any) {
|
||||||
|
this.dockerHost = dockerHostArg;
|
||||||
|
Object.keys(dockerContainerObjectArg).forEach(keyArg => {
|
||||||
|
this[keyArg] = dockerContainerObjectArg[keyArg];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
155
ts/docker.classes.host.ts
Normal file
155
ts/docker.classes.host.ts
Normal file
@ -0,0 +1,155 @@
|
|||||||
|
import * as plugins from './docker.plugins';
|
||||||
|
import { DockerContainer } from './docker.classes.container';
|
||||||
|
import { DockerNetwork } from './docker.classes.network';
|
||||||
|
import { DockerService } from './docker.classes.service';
|
||||||
|
|
||||||
|
export class DockerHost {
|
||||||
|
/**
|
||||||
|
* the path where the docker sock can be found
|
||||||
|
*/
|
||||||
|
public socketPath: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the constructor to instantiate a new docker sock instance
|
||||||
|
* @param pathArg
|
||||||
|
*/
|
||||||
|
constructor(pathArg?: string) {
|
||||||
|
let pathToUse: string;
|
||||||
|
if (pathArg) {
|
||||||
|
pathToUse = pathArg;
|
||||||
|
} else if (process.env.CI) {
|
||||||
|
pathToUse = 'http://docker:2375/';
|
||||||
|
} else {
|
||||||
|
pathToUse = 'http://unix:/var/run/docker.sock:';
|
||||||
|
}
|
||||||
|
this.socketPath = pathToUse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* authenticate against a registry
|
||||||
|
* @param userArg
|
||||||
|
* @param passArg
|
||||||
|
*/
|
||||||
|
public async auth(registryUrl: string, userArg: string, passArg: string) {
|
||||||
|
const response = await this.request('POST', '/auth', {
|
||||||
|
serveraddress: registryUrl,
|
||||||
|
username: userArg,
|
||||||
|
password: passArg,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets all networks
|
||||||
|
*/
|
||||||
|
public async getNetworks() {
|
||||||
|
return await DockerNetwork.getNetworks(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets all containers
|
||||||
|
*/
|
||||||
|
public async getContainers() {
|
||||||
|
const containerArray = await DockerContainer.getContainers(this);
|
||||||
|
return containerArray;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets all services
|
||||||
|
*/
|
||||||
|
public async getServices() {
|
||||||
|
const serviceArray = await DockerService.getServices(this);
|
||||||
|
return serviceArray;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public async getEventObservable(): Promise<plugins.rxjs.Observable<any>> {
|
||||||
|
const response = await this.requestStreaming('GET', '/events');
|
||||||
|
return plugins.rxjs.Observable.create(observer => {
|
||||||
|
response.on('data', data => {
|
||||||
|
const eventString = data.toString();
|
||||||
|
try {
|
||||||
|
const eventObject = JSON.parse(eventString);
|
||||||
|
observer.next(eventObject);
|
||||||
|
} catch (e) {
|
||||||
|
console.log(e);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return () => {
|
||||||
|
response.emit('end');
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* activates docker swarm
|
||||||
|
*/
|
||||||
|
public async activateSwarm(addvertisementIpArg?: string) {
|
||||||
|
// determine advertisement address
|
||||||
|
let addvertisementIp: string;
|
||||||
|
if (addvertisementIpArg) {
|
||||||
|
addvertisementIp = addvertisementIpArg;
|
||||||
|
} else {
|
||||||
|
const smartnetworkInstance = new plugins.smartnetwork.SmartNetwork();
|
||||||
|
const defaultGateway = await smartnetworkInstance.getDefaultGateway();
|
||||||
|
if (defaultGateway) {
|
||||||
|
addvertisementIp = defaultGateway.ipv4.address;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await this.request('POST', '/swarm/init', {
|
||||||
|
ListenAddr: '0.0.0.0:2377',
|
||||||
|
AdvertiseAddr: addvertisementIp,
|
||||||
|
DataPathPort: 4789,
|
||||||
|
DefaultAddrPool: ['10.10.0.0/8', '20.20.0.0/8'],
|
||||||
|
SubnetSize: 24,
|
||||||
|
ForceNewCluster: false
|
||||||
|
});
|
||||||
|
if (response.statusCode === 200) {
|
||||||
|
plugins.smartlog.defaultLogger.log('info', 'created Swam succesfully');
|
||||||
|
} else {
|
||||||
|
plugins.smartlog.defaultLogger.log('error', 'could not initiate swarm');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* fire a request
|
||||||
|
*/
|
||||||
|
public async request(methodArg: string, routeArg: string, dataArg = {}) {
|
||||||
|
const requestUrl = `${this.socketPath}${routeArg}`;
|
||||||
|
const response = await plugins.smartrequest.request(requestUrl, {
|
||||||
|
method: methodArg,
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
Host: 'docker.sock'
|
||||||
|
},
|
||||||
|
requestBody: dataArg,
|
||||||
|
keepAlive: false
|
||||||
|
});
|
||||||
|
if (response.statusCode !== 200) {
|
||||||
|
console.log(response.body);
|
||||||
|
}
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async requestStreaming(methodArg: string, routeArg: string, dataArg = {}) {
|
||||||
|
const requestUrl = `${this.socketPath}${routeArg}`;
|
||||||
|
const response = await plugins.smartrequest.request(
|
||||||
|
requestUrl,
|
||||||
|
{
|
||||||
|
method: methodArg,
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
Host: 'docker.sock'
|
||||||
|
},
|
||||||
|
requestBody: null,
|
||||||
|
keepAlive: false
|
||||||
|
},
|
||||||
|
true
|
||||||
|
);
|
||||||
|
console.log(response.statusCode);
|
||||||
|
console.log(response.body);
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
}
|
129
ts/docker.classes.image.ts
Normal file
129
ts/docker.classes.image.ts
Normal file
@ -0,0 +1,129 @@
|
|||||||
|
import * as plugins from './docker.plugins';
|
||||||
|
import * as interfaces from './interfaces';
|
||||||
|
import { DockerHost } from './docker.classes.host';
|
||||||
|
|
||||||
|
export class DockerImage {
|
||||||
|
// STATIC
|
||||||
|
public static async getImages(dockerHost: DockerHost) {
|
||||||
|
const images: DockerImage[] = [];
|
||||||
|
const response = await dockerHost.request('GET', '/images/json');
|
||||||
|
for (const imageObject of response.body) {
|
||||||
|
images.push(new DockerImage(dockerHost, imageObject));
|
||||||
|
}
|
||||||
|
return images;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async findImageByName(dockerHost: DockerHost, imageNameArg: string) {
|
||||||
|
const images = await this.getImages(dockerHost);
|
||||||
|
return images.find(image => {
|
||||||
|
return image.RepoTags.includes(imageNameArg);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async createFromRegistry(
|
||||||
|
dockerHostArg: DockerHost,
|
||||||
|
creationObject: interfaces.IImageCreationDescriptor
|
||||||
|
): Promise<DockerImage> {
|
||||||
|
|
||||||
|
// lets create a sanatized imageUrlObject
|
||||||
|
const imageUrlObject: {
|
||||||
|
imageUrl: string;
|
||||||
|
imageTag: string;
|
||||||
|
imageOriginTag: string;
|
||||||
|
} = {
|
||||||
|
imageUrl: creationObject.imageUrl,
|
||||||
|
imageTag: creationObject.imageTag,
|
||||||
|
imageOriginTag: null
|
||||||
|
};
|
||||||
|
if (imageUrlObject.imageUrl.includes(':')) {
|
||||||
|
const imageUrl = imageUrlObject.imageUrl.split(':')[0];
|
||||||
|
const imageTag = imageUrlObject.imageUrl.split(':')[1];
|
||||||
|
if (imageUrlObject.imageTag) {
|
||||||
|
throw new Error(
|
||||||
|
`imageUrl ${imageUrlObject.imageUrl} can't be tagged with ${
|
||||||
|
imageUrlObject.imageTag
|
||||||
|
} because it is already tagged with ${imageTag}`
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
imageUrlObject.imageUrl = imageUrl;
|
||||||
|
imageUrlObject.imageTag = imageTag;
|
||||||
|
}
|
||||||
|
} else if (!imageUrlObject.imageTag) {
|
||||||
|
imageUrlObject.imageTag = 'latest';
|
||||||
|
}
|
||||||
|
imageUrlObject.imageOriginTag = `${imageUrlObject.imageUrl}:${imageUrlObject.imageTag}`;
|
||||||
|
|
||||||
|
// lets actually create the image
|
||||||
|
const response = await dockerHostArg.request(
|
||||||
|
'POST',
|
||||||
|
`/images/create?fromImage=${encodeURIComponent(
|
||||||
|
imageUrlObject.imageUrl
|
||||||
|
)}&tag=${encodeURIComponent(imageUrlObject.imageTag)}`
|
||||||
|
);
|
||||||
|
if (response.statusCode < 300) {
|
||||||
|
plugins.smartlog.defaultLogger.log(
|
||||||
|
'info',
|
||||||
|
`Successfully pulled image ${imageUrlObject.imageUrl} from the registry`
|
||||||
|
);
|
||||||
|
const image = await DockerImage.findImageByName(dockerHostArg, imageUrlObject.imageOriginTag);
|
||||||
|
return image;
|
||||||
|
} else {
|
||||||
|
plugins.smartlog.defaultLogger.log('error', `Failed at the attempt of creating a new image`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async tagImageByIdOrName(
|
||||||
|
dockerHost: DockerHost,
|
||||||
|
idOrNameArg: string,
|
||||||
|
newTagArg: string
|
||||||
|
) {
|
||||||
|
const response = await dockerHost.request(
|
||||||
|
'POST',
|
||||||
|
`/images/${encodeURIComponent(idOrNameArg)}/${encodeURIComponent(newTagArg)}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async buildImage(dockerHostArg: DockerHost, dockerImageTag) {
|
||||||
|
// TODO: implement building an image
|
||||||
|
}
|
||||||
|
|
||||||
|
// INSTANCE
|
||||||
|
// references
|
||||||
|
public dockerHost: DockerHost;
|
||||||
|
|
||||||
|
// properties
|
||||||
|
/**
|
||||||
|
* the tags for an image
|
||||||
|
*/
|
||||||
|
public Containers: number;
|
||||||
|
public Created: number;
|
||||||
|
public Id: string;
|
||||||
|
public Labels: interfaces.TLabels;
|
||||||
|
public ParentId: string;
|
||||||
|
public RepoDigests: string[];
|
||||||
|
public RepoTags: string[];
|
||||||
|
public SharedSize: number;
|
||||||
|
public Size: number;
|
||||||
|
public VirtualSize: number;
|
||||||
|
|
||||||
|
constructor(dockerHostArg, dockerImageObjectArg: any) {
|
||||||
|
this.dockerHost = dockerHostArg;
|
||||||
|
Object.keys(dockerImageObjectArg).forEach(keyArg => {
|
||||||
|
this[keyArg] = dockerImageObjectArg[keyArg];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public tagImage(newTag) {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* pulls the latest version from the registry
|
||||||
|
*/
|
||||||
|
public async pullLatestImageFromRegistry(): Promise<boolean> {
|
||||||
|
const updatedImage = await DockerImage.createFromRegistry(this.dockerHost, {
|
||||||
|
imageUrl: this.RepoTags[0]
|
||||||
|
});
|
||||||
|
Object.assign(this, updatedImage);
|
||||||
|
// TODO: Compare image digists before and after
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
93
ts/docker.classes.network.ts
Normal file
93
ts/docker.classes.network.ts
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
import * as plugins from './docker.plugins';
|
||||||
|
import * as interfaces from './interfaces';
|
||||||
|
|
||||||
|
import { DockerHost } from './docker.classes.host';
|
||||||
|
|
||||||
|
export class DockerNetwork {
|
||||||
|
public static async getNetworks(dockerHost: DockerHost): Promise<DockerNetwork[]> {
|
||||||
|
const dockerNetworks: DockerNetwork[] = [];
|
||||||
|
const response = await dockerHost.request('GET', '/networks');
|
||||||
|
for (const networkObject of response.body) {
|
||||||
|
const dockerNetwork = new DockerNetwork(dockerHost);
|
||||||
|
Object.assign(dockerNetwork, networkObject);
|
||||||
|
dockerNetworks.push(dockerNetwork);
|
||||||
|
}
|
||||||
|
return dockerNetworks;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async getNetworkByName(dockerHost: DockerHost, dockerNetworkNameArg: string) {
|
||||||
|
const networks = await DockerNetwork.getNetworks(dockerHost);
|
||||||
|
return networks.find(dockerNetwork => dockerNetwork.Name === dockerNetworkNameArg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async createNetwork(
|
||||||
|
dockerHost: DockerHost,
|
||||||
|
networkCreationDescriptor: interfaces.INetworkCreationDescriptor
|
||||||
|
): Promise<DockerNetwork> {
|
||||||
|
const response = await dockerHost.request('POST', '/networks/create', {
|
||||||
|
Name: networkCreationDescriptor.Name,
|
||||||
|
CheckDuplicate: true,
|
||||||
|
Driver: 'overlay',
|
||||||
|
EnableIPv6: false,
|
||||||
|
IPAM: {
|
||||||
|
Driver: 'default',
|
||||||
|
Config: [
|
||||||
|
{
|
||||||
|
Subnet: '172.20.10.0/16',
|
||||||
|
IPRange: '172.20.10.0/24',
|
||||||
|
Gateway: '172.20.10.11'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
Internal: true,
|
||||||
|
Attachable: true,
|
||||||
|
Ingress: false
|
||||||
|
});
|
||||||
|
if (response.statusCode < 300) {
|
||||||
|
plugins.smartlog.defaultLogger.log('info', 'Created network successfully');
|
||||||
|
return await DockerNetwork.getNetworkByName(dockerHost, networkCreationDescriptor.Name);
|
||||||
|
} else {
|
||||||
|
plugins.smartlog.defaultLogger.log(
|
||||||
|
'error',
|
||||||
|
'There has been an error creating the wanted network'
|
||||||
|
);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// INSTANCE
|
||||||
|
// references
|
||||||
|
public dockerHost: DockerHost;
|
||||||
|
|
||||||
|
// properties
|
||||||
|
public Name: string;
|
||||||
|
public Id: string;
|
||||||
|
public Created: string;
|
||||||
|
public Scope: string;
|
||||||
|
public Driver: string;
|
||||||
|
public EnableIPv6: boolean;
|
||||||
|
public Internal: boolean;
|
||||||
|
public Attachable: boolean;
|
||||||
|
public Ingress: false;
|
||||||
|
public IPAM: {
|
||||||
|
Driver: 'default' | 'bridge' | 'overlay';
|
||||||
|
Config: [
|
||||||
|
{
|
||||||
|
Subnet: string;
|
||||||
|
IPRange: string;
|
||||||
|
Gateway: string;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
constructor(dockerHostArg: DockerHost) {
|
||||||
|
this.dockerHost = dockerHostArg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* removes the network
|
||||||
|
*/
|
||||||
|
public async remove() {
|
||||||
|
const response = await this.dockerHost.request('DELETE', `/networks/${this.Id}`);
|
||||||
|
}
|
||||||
|
}
|
73
ts/docker.classes.secret.ts
Normal file
73
ts/docker.classes.secret.ts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import * as plugins from './docker.plugins';
|
||||||
|
import { DockerHost } from './docker.classes.host';
|
||||||
|
|
||||||
|
// interfaces
|
||||||
|
import * as interfaces from './interfaces';
|
||||||
|
|
||||||
|
export class DockerSecret {
|
||||||
|
// STATIC
|
||||||
|
public static async getSecrets(dockerHostArg: DockerHost) {
|
||||||
|
const response = await dockerHostArg.request('GET', '/secrets');
|
||||||
|
const secrets: DockerSecret[] = [];
|
||||||
|
for (const secret of response.body) {
|
||||||
|
const dockerSecretInstance = new DockerSecret(dockerHostArg);
|
||||||
|
Object.assign(dockerSecretInstance, secret);
|
||||||
|
secrets.push(dockerSecretInstance);
|
||||||
|
}
|
||||||
|
return secrets;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async getSecretByID (dockerHostArg: DockerHost, idArg: string) {
|
||||||
|
const secrets = await this.getSecrets(dockerHostArg);
|
||||||
|
return secrets.find(secret => secret.ID === idArg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async getSecretByName (dockerHostArg: DockerHost, nameArg: string) {
|
||||||
|
const secrets = await this.getSecrets(dockerHostArg);
|
||||||
|
return secrets.find(secret => secret.Spec.Name === nameArg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async createSecret(dockerHostArg: DockerHost, secretDescriptor: interfaces.ISecretCreationDescriptor) {
|
||||||
|
const response = await dockerHostArg.request('POST', '/secrets/create', {
|
||||||
|
Name: secretDescriptor.name,
|
||||||
|
Labels: secretDescriptor.labels,
|
||||||
|
Data: plugins.smartstring.base64.encode(secretDescriptor.contentArg)
|
||||||
|
});
|
||||||
|
|
||||||
|
const newSecretInstance = new DockerSecret(dockerHostArg);
|
||||||
|
Object.assign(newSecretInstance, response.body);
|
||||||
|
Object.assign (newSecretInstance, await DockerSecret.getSecretByID(dockerHostArg, newSecretInstance.ID));
|
||||||
|
return newSecretInstance;
|
||||||
|
}
|
||||||
|
|
||||||
|
// INSTANCE
|
||||||
|
public ID: string;
|
||||||
|
public Spec: {
|
||||||
|
Name: string;
|
||||||
|
Labels: interfaces.TLabels;
|
||||||
|
};
|
||||||
|
Version: {
|
||||||
|
Index:string;
|
||||||
|
}
|
||||||
|
|
||||||
|
public dockerHost: DockerHost;
|
||||||
|
constructor(dockerHostArg: DockerHost) {
|
||||||
|
this.dockerHost = dockerHostArg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* updates a secret
|
||||||
|
*/
|
||||||
|
public async update (contentArg: string) {
|
||||||
|
const route = `/secrets/${this.ID}/update?=version=${this.Version.Index}`;
|
||||||
|
const response = await this.dockerHost.request('POST', `/secrets/${this.ID}/update?version=${this.Version.Index}`, {
|
||||||
|
Name: this.Spec.Name,
|
||||||
|
Labels: this.Spec.Labels,
|
||||||
|
Data: plugins.smartstring.base64.encode(contentArg)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public async remove () {
|
||||||
|
await this.dockerHost.request('DELETE', `/secrets/${this.ID}`);
|
||||||
|
}
|
||||||
|
}
|
180
ts/docker.classes.service.ts
Normal file
180
ts/docker.classes.service.ts
Normal file
@ -0,0 +1,180 @@
|
|||||||
|
import * as plugins from './docker.plugins';
|
||||||
|
import * as interfaces from './interfaces';
|
||||||
|
|
||||||
|
import { DockerHost } from './docker.classes.host';
|
||||||
|
import { DockerImage } from './docker.classes.image';
|
||||||
|
import { DockerSecret } from './docker.classes.secret';
|
||||||
|
|
||||||
|
export class DockerService {
|
||||||
|
// STATIC
|
||||||
|
public static async getServices(dockerHost: DockerHost) {
|
||||||
|
const services: DockerService[] = [];
|
||||||
|
const response = await dockerHost.request('GET', '/services');
|
||||||
|
for (const serviceObject of response.body) {
|
||||||
|
const dockerService = new DockerService(dockerHost);
|
||||||
|
Object.assign(dockerService, serviceObject);
|
||||||
|
services.push(dockerService);
|
||||||
|
}
|
||||||
|
return services;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async getServiceByName(
|
||||||
|
dockerHost: DockerHost,
|
||||||
|
networkName: string
|
||||||
|
): Promise<DockerService> {
|
||||||
|
const allServices = await DockerService.getServices(dockerHost);
|
||||||
|
const wantedService = allServices.find(service => {
|
||||||
|
return service.Spec.Name === networkName;
|
||||||
|
});
|
||||||
|
return wantedService;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* creates a service
|
||||||
|
*/
|
||||||
|
public static async createService(
|
||||||
|
dockerHost: DockerHost,
|
||||||
|
serviceCreationDescriptor: interfaces.IServiceCreationDescriptor
|
||||||
|
): Promise<DockerService> {
|
||||||
|
// lets get the image
|
||||||
|
plugins.smartlog.defaultLogger.log(
|
||||||
|
'info',
|
||||||
|
`downloading image for service ${serviceCreationDescriptor.Name}`
|
||||||
|
);
|
||||||
|
const serviceImage = await DockerImage.createFromRegistry(dockerHost, {
|
||||||
|
imageUrl: serviceCreationDescriptor.Image
|
||||||
|
});
|
||||||
|
|
||||||
|
const serviceVersion = serviceImage.Labels.version;
|
||||||
|
serviceCreationDescriptor.Labels.version = serviceVersion;
|
||||||
|
|
||||||
|
const networkArray: any[] = [];
|
||||||
|
for (const network of serviceCreationDescriptor.networks) {
|
||||||
|
networkArray.push({
|
||||||
|
Target: network.Name,
|
||||||
|
Aliases: [serviceCreationDescriptor.networkAlias]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const secretArray: any[] = [];
|
||||||
|
for (const secret of serviceCreationDescriptor.secrets) {
|
||||||
|
secretArray.push({
|
||||||
|
File: {
|
||||||
|
Name: 'secret.json',
|
||||||
|
UID: '33',
|
||||||
|
GID: '33',
|
||||||
|
Mode: 384
|
||||||
|
},
|
||||||
|
SecretID: secret.ID,
|
||||||
|
SecretName: secret.Spec.Name
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await dockerHost.request('POST', '/services/create', {
|
||||||
|
Name: serviceCreationDescriptor.Name,
|
||||||
|
TaskTemplate: {
|
||||||
|
ContainerSpec: {
|
||||||
|
Image: serviceCreationDescriptor.Image,
|
||||||
|
Labels: serviceCreationDescriptor.Labels,
|
||||||
|
Secrets: secretArray
|
||||||
|
},
|
||||||
|
UpdateConfig: {
|
||||||
|
Parallelism: 0,
|
||||||
|
Delay: 0,
|
||||||
|
FailureAction: 'pause',
|
||||||
|
Monitor: 15000000000,
|
||||||
|
MaxFailureRatio: 0.15
|
||||||
|
},
|
||||||
|
ForceUpdate: 1
|
||||||
|
},
|
||||||
|
Labels: serviceCreationDescriptor.Labels,
|
||||||
|
Networks: networkArray
|
||||||
|
});
|
||||||
|
|
||||||
|
const createdService = await DockerService.getServiceByName(
|
||||||
|
dockerHost,
|
||||||
|
serviceCreationDescriptor.Name
|
||||||
|
);
|
||||||
|
return createdService;
|
||||||
|
}
|
||||||
|
|
||||||
|
// INSTANCE
|
||||||
|
public dockerHostRef: DockerHost;
|
||||||
|
|
||||||
|
public ID: string;
|
||||||
|
public Version: { Index: number };
|
||||||
|
public CreatedAt: string;
|
||||||
|
public UpdatedAt: string;
|
||||||
|
public Spec: {
|
||||||
|
Name: string;
|
||||||
|
Labels: interfaces.TLabels; // ZBD
|
||||||
|
TaskTemplate: {
|
||||||
|
ContainerSpec: {
|
||||||
|
Image: string;
|
||||||
|
Isolation: string;
|
||||||
|
Secrets: Array<{
|
||||||
|
File: {
|
||||||
|
Name: string;
|
||||||
|
UID: string;
|
||||||
|
GID: string;
|
||||||
|
Mode: number;
|
||||||
|
};
|
||||||
|
SecretID: string;
|
||||||
|
SecretName: string;
|
||||||
|
}>;
|
||||||
|
};
|
||||||
|
ForceUpdate: 0;
|
||||||
|
};
|
||||||
|
Mode: {};
|
||||||
|
Networks: [any[]];
|
||||||
|
};
|
||||||
|
public Endpoint: { Spec: {}; VirtualIPs: [any[]] };
|
||||||
|
|
||||||
|
constructor(dockerHostArg: DockerHost) {
|
||||||
|
this.dockerHostRef = dockerHostArg;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async update() {
|
||||||
|
const labels: interfaces.TLabels = {
|
||||||
|
...this.Spec.Labels,
|
||||||
|
version: 'x.x.x'
|
||||||
|
};
|
||||||
|
|
||||||
|
const dockerData = await this.dockerHostRef.request(
|
||||||
|
'POST',
|
||||||
|
`/services/${this.ID}/update?version=${this.Version.Index}`,
|
||||||
|
{
|
||||||
|
Name: this.Spec.Name,
|
||||||
|
TaskTemplate: this.Spec.TaskTemplate,
|
||||||
|
Labels: labels,
|
||||||
|
Networks: this.Spec.Networks
|
||||||
|
}
|
||||||
|
);
|
||||||
|
Object.assign(this, dockerData);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async remove() {
|
||||||
|
await this.dockerHostRef.request('DELETE', `/services/${this.ID}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async reReadFromDockerEngine() {
|
||||||
|
const dockerData = await this.dockerHostRef.request('GET', `/services/${this.ID}`);
|
||||||
|
Object.assign(this, dockerData);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async updateFromRegistry() {
|
||||||
|
// TODO: implement digest based update recognition
|
||||||
|
|
||||||
|
await this.reReadFromDockerEngine();
|
||||||
|
const dockerImage = await DockerImage.createFromRegistry(this.dockerHostRef, {
|
||||||
|
imageUrl: this.Spec.TaskTemplate.ContainerSpec.Image
|
||||||
|
});
|
||||||
|
|
||||||
|
const imageVersion = new plugins.smartversion.SmartVersion(dockerImage.Labels.version);
|
||||||
|
const serviceVersion = new plugins.smartversion.SmartVersion(this.Spec.Labels.version);
|
||||||
|
if (imageVersion.greaterThan(serviceVersion)) {
|
||||||
|
console.log('service needs to be updated');
|
||||||
|
this.update();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
18
ts/docker.plugins.ts
Normal file
18
ts/docker.plugins.ts
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
// @pushrocks scope
|
||||||
|
import * as lik from '@pushrocks/lik';
|
||||||
|
import * as smartjson from '@pushrocks/smartjson';
|
||||||
|
import * as smartlog from '@pushrocks/smartlog';
|
||||||
|
import * as smartnetwork from '@pushrocks/smartnetwork';
|
||||||
|
import * as smartpromise from '@pushrocks/smartpromise';
|
||||||
|
import * as smartrequest from '@pushrocks/smartrequest';
|
||||||
|
import * as smartstring from '@pushrocks/smartstring'
|
||||||
|
import * as smartversion from '@pushrocks/smartversion';
|
||||||
|
|
||||||
|
smartlog.defaultLogger.enableConsole();
|
||||||
|
|
||||||
|
export { lik, smartjson, smartlog, smartnetwork, smartpromise, smartrequest, smartstring, smartversion };
|
||||||
|
|
||||||
|
// third party
|
||||||
|
import * as rxjs from 'rxjs';
|
||||||
|
|
||||||
|
export { rxjs };
|
@ -1,184 +0,0 @@
|
|||||||
import "typings-global"
|
|
||||||
import * as plugins from "./dockersock.plugins";
|
|
||||||
import {Observable} from "rxjs";
|
|
||||||
|
|
||||||
export class Dockersock {
|
|
||||||
sockPath:string;
|
|
||||||
constructor(pathArg:string = "http://unix:/var/run/docker.sock:"){
|
|
||||||
this.sockPath = pathArg;
|
|
||||||
}
|
|
||||||
|
|
||||||
// methods
|
|
||||||
auth(userArg:string,passArg:string){
|
|
||||||
let done = plugins.q.defer();
|
|
||||||
this.request("POST","");
|
|
||||||
return done.promise;
|
|
||||||
}
|
|
||||||
listContainers() {
|
|
||||||
let done = plugins.q.defer();
|
|
||||||
this.request("GET","/containers")
|
|
||||||
.then(done.resolve);
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
||||||
listContainersDetailed() {
|
|
||||||
let done = plugins.q.defer();
|
|
||||||
let detailedDataObject = [];
|
|
||||||
this.listContainers()
|
|
||||||
.then((dataArg) => {
|
|
||||||
let recursiveCounter = 0;
|
|
||||||
let makeDetailed = () => {
|
|
||||||
if(typeof dataArg[recursiveCounter] != "undefined"){
|
|
||||||
this.request("GET","/containers/" + dataArg[recursiveCounter].Id)
|
|
||||||
.then((dataArg2) => {
|
|
||||||
detailedDataObject.push(dataArg2);
|
|
||||||
recursiveCounter++;
|
|
||||||
// recursive call
|
|
||||||
makeDetailed();
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
done.resolve(detailedDataObject);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
makeDetailed();
|
|
||||||
});
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
||||||
listContainersRunning() {
|
|
||||||
let done = plugins.q.defer();
|
|
||||||
return done.promise;
|
|
||||||
}
|
|
||||||
listContainersStopped() {
|
|
||||||
let done = plugins.q.defer();
|
|
||||||
return done.promise;
|
|
||||||
}
|
|
||||||
listImages() {
|
|
||||||
return this.request("GET","/images","?all=true");
|
|
||||||
}
|
|
||||||
listImagesDangling(){
|
|
||||||
return this.request("GET","/images","?dangling=true");
|
|
||||||
}
|
|
||||||
pullImage(imageLabel:string){
|
|
||||||
return this.requestStream("POST","/images/create?fromImage=" + imageLabel);
|
|
||||||
};
|
|
||||||
createContainer(optionsArg,pullFirstArg:boolean = true){
|
|
||||||
let done = plugins.q.defer();
|
|
||||||
let create = () => {
|
|
||||||
return this.request("POST","/containers/create","",optionsArg);
|
|
||||||
}
|
|
||||||
if(pullFirstArg){
|
|
||||||
this.pullImage(optionsArg.Image)
|
|
||||||
.then(create)
|
|
||||||
.then(done.resolve);
|
|
||||||
} else {
|
|
||||||
create()
|
|
||||||
.then(done.resolve)
|
|
||||||
}
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
||||||
getContainerId(){
|
|
||||||
|
|
||||||
};
|
|
||||||
startContainer(containerNameArg){
|
|
||||||
return this.request("POST","/containers/"+ containerNameArg +"/start");
|
|
||||||
};
|
|
||||||
stopContainer(containerNameArg){
|
|
||||||
return this.request("POST","/containers/"+ containerNameArg +"/stop");
|
|
||||||
};
|
|
||||||
removeContainer(containerNameArg){
|
|
||||||
return this.request("DELETE","/containers/" + containerNameArg + "?v=1");
|
|
||||||
};
|
|
||||||
clean() {
|
|
||||||
let done = plugins.q.defer();
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
||||||
callOnChange(cb:Function){
|
|
||||||
let cbPromise;
|
|
||||||
let changeBuffered:boolean = false; // when cb is running then buffer any consequent change
|
|
||||||
let requestStream = plugins.request.get(this.sockPath + "/events");
|
|
||||||
requestStream.on("response",(response) => {
|
|
||||||
if(response.statusCode == 200){
|
|
||||||
plugins.beautylog.ok("request returned status 200, so we are good!");
|
|
||||||
} else {
|
|
||||||
plugins.beautylog.error("request returned error: " + response.statusCode);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
requestStream.on("data",(data:Buffer) => {
|
|
||||||
let status = JSON.parse(data.toString()).status;
|
|
||||||
plugins.beautylog.logReduced(status);
|
|
||||||
if(typeof cbPromise == "undefined" || cbPromise.state == "pending"){
|
|
||||||
cbPromise = cb();
|
|
||||||
} else if (changeBuffered) {
|
|
||||||
changeBuffered = true;
|
|
||||||
cbPromise.then(() => {
|
|
||||||
changeBuffered = false;
|
|
||||||
cbPromise = cb();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
requestStream.on("end",()=> {
|
|
||||||
|
|
||||||
});
|
|
||||||
};
|
|
||||||
getChangeObservable(){
|
|
||||||
let requestStream = plugins.request.get(this.sockPath + "/events");
|
|
||||||
requestStream.on("response",(response) => {
|
|
||||||
if(response.statusCode == 200){
|
|
||||||
plugins.beautylog.ok("request returned status 200, so we are good!");
|
|
||||||
} else {
|
|
||||||
plugins.beautylog.error("request returned error: " + response.statusCode);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
let changeObservable = Observable.fromEvent(requestStream,"data");
|
|
||||||
requestStream.on("end",()=> {
|
|
||||||
|
|
||||||
});
|
|
||||||
return changeObservable;
|
|
||||||
}
|
|
||||||
request(methodArg:string,routeArg:string,queryArg:string = "", dataArg = {}){
|
|
||||||
let done = plugins.q.defer();
|
|
||||||
let jsonArg:string = JSON.stringify(dataArg);
|
|
||||||
let suffix:string = "";
|
|
||||||
if(methodArg == "GET") suffix = "/json";
|
|
||||||
let options = {
|
|
||||||
method:methodArg,
|
|
||||||
url:this.sockPath + routeArg + suffix + queryArg,
|
|
||||||
headers:{
|
|
||||||
"Content-Type":"application/json"
|
|
||||||
},
|
|
||||||
body:jsonArg
|
|
||||||
};
|
|
||||||
plugins.request(options,(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;
|
|
||||||
}
|
|
||||||
requestStream(methodArg,routeArg,endArg:boolean = true){
|
|
||||||
let done = plugins.q.defer();
|
|
||||||
if(methodArg == "POST"){
|
|
||||||
let requestStream = plugins.request.post(this.sockPath + routeArg);
|
|
||||||
requestStream.on("response",(response) => {
|
|
||||||
if(response.statusCode == 200){
|
|
||||||
plugins.beautylog.ok("request returned status 200, so we are good!");
|
|
||||||
} else {
|
|
||||||
plugins.beautylog.error("request returned error: " + response.statusCode);
|
|
||||||
done.reject(response);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
requestStream.on("data",(data:Buffer) => {
|
|
||||||
let status = JSON.parse(data.toString()).status;
|
|
||||||
plugins.beautylog.logReduced(status);
|
|
||||||
});
|
|
||||||
requestStream.on("end",()=> {
|
|
||||||
done.resolve();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return done.promise;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
import "typings-global";
|
|
||||||
export import beautylog = require("beautylog");
|
|
||||||
export import q = require("q");
|
|
||||||
export let request = require("request");
|
|
||||||
export import rxjs = require("rxjs");
|
|
@ -1,2 +1,6 @@
|
|||||||
import "typings-global";
|
export * from './docker.classes.host';
|
||||||
export {Dockersock} from "./dockersock.classes.dockersock"
|
export * from './docker.classes.container';
|
||||||
|
export * from './docker.classes.image';
|
||||||
|
export * from './docker.classes.network';
|
||||||
|
export * from './docker.classes.secret';
|
||||||
|
export * from './docker.classes.service';
|
||||||
|
7
ts/interfaces/container.ts
Normal file
7
ts/interfaces/container.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import { DockerNetwork } from '../docker.classes.network';
|
||||||
|
|
||||||
|
export interface IContainerCreationDescriptor {
|
||||||
|
Hostname: string;
|
||||||
|
Domainname: string;
|
||||||
|
networks?: DockerNetwork[];
|
||||||
|
}
|
4
ts/interfaces/image.ts
Normal file
4
ts/interfaces/image.ts
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
export interface IImageCreationDescriptor {
|
||||||
|
imageUrl: string;
|
||||||
|
imageTag?: string;
|
||||||
|
}
|
7
ts/interfaces/index.ts
Normal file
7
ts/interfaces/index.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
export * from './container';
|
||||||
|
export * from './image';
|
||||||
|
export * from './label';
|
||||||
|
export * from './network';
|
||||||
|
export * from './port';
|
||||||
|
export * from './secret';
|
||||||
|
export * from './service';
|
2
ts/interfaces/label.ts
Normal file
2
ts/interfaces/label.ts
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
// tslint:disable-next-line: interface-over-type-literal
|
||||||
|
export type TLabels = { [key: string]: string };
|
6
ts/interfaces/network.ts
Normal file
6
ts/interfaces/network.ts
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/**
|
||||||
|
* creates a new Network
|
||||||
|
*/
|
||||||
|
export interface INetworkCreationDescriptor {
|
||||||
|
Name: string;
|
||||||
|
}
|
6
ts/interfaces/port.ts
Normal file
6
ts/interfaces/port.ts
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
export interface IPort {
|
||||||
|
PrivatePort: 80;
|
||||||
|
Type: 'tcp';
|
||||||
|
}
|
||||||
|
|
||||||
|
export type TPorts = IPort[];
|
7
ts/interfaces/secret.ts
Normal file
7
ts/interfaces/secret.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import * as interfaces from './';
|
||||||
|
|
||||||
|
export interface ISecretCreationDescriptor {
|
||||||
|
name: string;
|
||||||
|
contentArg: any;
|
||||||
|
labels: interfaces.TLabels;
|
||||||
|
}
|
12
ts/interfaces/service.ts
Normal file
12
ts/interfaces/service.ts
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import * as interfaces from './';
|
||||||
|
import { DockerNetwork } from '../docker.classes.network';
|
||||||
|
import { DockerSecret } from '../docker.classes.secret';
|
||||||
|
|
||||||
|
export interface IServiceCreationDescriptor {
|
||||||
|
Name: string;
|
||||||
|
Image: string;
|
||||||
|
Labels: interfaces.TLabels;
|
||||||
|
networks: DockerNetwork[];
|
||||||
|
networkAlias: string;
|
||||||
|
secrets: DockerSecret[];
|
||||||
|
}
|
17
tslint.json
Normal file
17
tslint.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"extends": ["tslint:latest", "tslint-config-prettier"],
|
||||||
|
"rules": {
|
||||||
|
"semicolon": [true, "always"],
|
||||||
|
"no-console": false,
|
||||||
|
"ordered-imports": false,
|
||||||
|
"object-literal-sort-keys": false,
|
||||||
|
"member-ordering": {
|
||||||
|
"options":{
|
||||||
|
"order": [
|
||||||
|
"static-method"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"defaultSeverity": "warning"
|
||||||
|
}
|
Reference in New Issue
Block a user