-
Notifications
You must be signed in to change notification settings - Fork 7
/
deployment.js
189 lines (179 loc) · 6.44 KB
/
deployment.js
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
import cloneDeep from 'lodash/cloneDeep'
import ContentstackCollection from '../../contentstackCollection'
import error from '../../core/contentstackError'
export function Deployment (http, data, params) {
http.defaults.versioningStrategy = undefined
if (data && data.app_uid) {
this.params = params || {}
this.urlPath = `/manifests/${data.app_uid}/hosting/deployments`
if (data.organization_uid) {
this.params = {
organization_uid: data.organization_uid
}
}
if (data.data) {
Object.assign(this, cloneDeep(data.data))
if (this.organization_uid) {
this.params = {
organization_uid: this.organization_uid
}
}
}
if (this.uid) {
this.urlPath = `/manifests/${data.app_uid}/hosting/deployments/${this.uid}`
/**
* @descriptionThe The GET deployment call is used to get all the details of an deployment of an app
* @memberof Deployment
* @func fetch
* @returns {Promise<Deployment>}
*
* @example
* import * as contentstack from '@contentstack/management'
* const client = contentstack.client({ authtoken: 'TOKEN'})
* client.organization('organization_uid').app('manifest_uid').hosting().deployment('deployment_uid').fetch()
* .then((data) => {})
*/
this.fetch = async () => {
try {
const headers = {
headers: { ...cloneDeep(this.params) }
}
const response = await http.get(`${this.urlPath}`, headers)
if (response.data) {
const content = response.data.data
return new Deployment(http, { data: content, app_uid: data.app_uid }, this.params)
} else {
throw error(response)
}
} catch (err) {
throw error(err)
}
}
/**
* @descriptionThe The list deployment logs call is used to list logs of a deployment.
* @memberof Deployment
* @func logs
* @returns {Promise<Response>}
*
* @example
* import * as contentstack from '@contentstack/management'
* const client = contentstack.client({ authtoken: 'TOKEN'})
* client.organization('organization_uid').app('manifest_uid').hosting().deployment('deployment_uid').logs()
* .then((data) => {})
*/
this.logs = async () => {
try {
const headers = {
headers: { ...cloneDeep(this.params) }
}
const response = await http.get(`${this.urlPath}/logs`, headers)
if (response.data) {
return response.data.data
} else {
throw error(response)
}
} catch (err) {
throw error(err)
}
}
/**
* @descriptionThe The create signed download url call is used to get the download url of the deployment source code.
* @memberof signedDownloadUrl
* @func logs
* @returns {Promise<Response>}
*
* @example
* import * as contentstack from '@contentstack/management'
* const client = contentstack.client({ authtoken: 'TOKEN'})
* client.organization('organization_uid').app('manifest_uid').hosting().deployment('deployment_uid').signedDownloadUrl()
* .then((data) => {})
*/
this.signedDownloadUrl = async () => {
try {
const headers = {
headers: { ...cloneDeep(this.params) }
}
const response = await http.post(`${this.urlPath}/signedDownloadUrl`, {}, headers)
if (response.data) {
return response.data.data
} else {
throw error(response)
}
} catch (err) {
throw error(err)
}
}
} else {
/**
* @descriptionThe The create hosting deployments call is used to deploy the uploaded file in hosting
* @memberof Deployment
* @func create
* @returns {Promise<Deployment>}
*
* @example
* import * as contentstack from '@contentstack/management'
* const client = contentstack.client({ authtoken: 'TOKEN'})
* client.organization('organization_uid').app('manifest_uid').hosting().deployment().create()
* .then((data) => {})
*/
this.create = async ({ uploadUid, fileType, withAdvancedOptions }) => {
try {
const headers = {
headers: { ...cloneDeep(this.params) }
}
if (withAdvancedOptions) {
headers.params = {
with_advanced_options: withAdvancedOptions
}
}
const response = await http.post(`${this.urlPath}`, { upload_uid: uploadUid, file_type: fileType }, headers)
if (response.data) {
const content = response.data.data
return new Deployment(http, { data: content, app_uid: data.app_uid }, this.params)
} else {
throw error(response)
}
} catch (err) {
throw error(err)
}
}
/**
* @descriptionThe The list deployments call is used to get all the available deployments made for an app.
* @memberof Deployment
* @func findAll
* @returns {Promise<ContentstackCollection>}
*
* @example
* import * as contentstack from '@contentstack/management'
* const client = contentstack.client({ authtoken: 'TOKEN'})
* client.organization('organization_uid').app('manifest_uid').hosting().deployment().create()
* .then((data) => {})
*/
this.findAll = async (param = {}) => {
try {
const headers = {
headers: { ...cloneDeep(this.params) },
params: { ...cloneDeep(param) }
}
const response = await http.get(`${this.urlPath}`, headers)
if (response.data) {
const content = response.data
const collection = new ContentstackCollection(response, http)
collection.items = DeploymentCollection(http, content, data.app_uid, this.params)
return collection
} else {
throw error(response)
}
} catch (err) {
throw error(err)
}
}
}
}
}
export function DeploymentCollection (http, data, appUid, param) {
const obj = cloneDeep(data.data) || []
return obj.map((content) => {
return new Deployment(http, { data: content, app_uid: appUid }, param)
})
}