-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupsertSchema.js
More file actions
71 lines (68 loc) · 2.18 KB
/
upsertSchema.js
File metadata and controls
71 lines (68 loc) · 2.18 KB
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
const contentful = require('contentful-management');
const client = contentful.createClient({
accessToken: process.env.MANAGEMENT_TOKEN
});
module.exports = (updatedContentTypes, newContentTypes) => {
const promises = [];
if (updatedContentTypes.length) {
promises.push(updateContentTypes(updatedContentTypes));
}
if (newContentTypes.length) {
promises.push(createContentTypes(newContentTypes));
}
const flattenedPromises = [].concat.apply([], promises);
return Promise.all(flattenedPromises)
}
const createContentTypes = (newContentTypes) => {
return client.getSpace(process.env.TARGET_SPACE_ID)
.then( (space) => {
console.log('Creating new Content Types...');
console.log(newContentTypes);
return newContentTypes.map( (contentType) => {
return space.createContentTypeWithId(contentType.sys.id, contentType)
.then( (createdContentType) => {
return createdContentType.publish();
})
.catch( (err) => {
console.error('Issue creating content type!');
console.log(contentType);
console.error(err);
throw new Error(err);
});
});
})
.catch( (err) => {
console.log('Something went wrong...');
console.error(err);
throw new Error(err)
});
}
const updateContentTypes = (updatedContentTypes) => {
return client.getSpace(process.env.TARGET_SPACE_ID)
.then( (space) => {
console.log('Updating Content Types...');
console.log(updatedContentTypes)
return updatedContentTypes.map( (contentType) => {
return space.getContentType(contentType.sys.id)
.then( (foundContentType) => {
// merge found content type and exist content type and save
delete contentType.sys
foundContentType = Object.assign(foundContentType, contentType);
return foundContentType.update();
})
.then( (updatedContentType) => {
return updatedContentType.publish();
})
.catch( (err) => {
console.error('Issue updating content type');
console.log(contentType)
console.error(err);
throw new Error(err);
});
});
})
.catch( (err) => {
console.error('Something bad happened');
console.error(err);
})
}