-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimplementation.js
187 lines (167 loc) · 4.92 KB
/
implementation.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
/**
* Perform a CRUD operation on a Notion database.
* @param {Object} params - The parameters for the operation.
* @param {string} params.operation - The CRUD operation to perform: create, read, update, or archive.
* @param {string} [params.databaseId] - The ID of the Notion database for create and read operations.
* @param {Array} [params.databaseStructure] - A list of properties in the Notion database structure, used to generate filter or sort criteria..
* @param {string} [params.pageId] - The ID of the page for update and archive operations.
* @param {Object} [params.notionProperties] - The properties for create or update operations.
* @returns {Promise<Object>} - The response data from the Notion API.
*/
async function perform_notion_database_actions(params, userSettings) {
const { databaseId, operation, databaseStructure = [] } = params;
const { pluginServer, notionApiKey } = userSettings;
if (!pluginServer) {
throw new Error(
"Missing the Plugin Server URL. Please set it in the plugin settings."
);
}
if (!notionApiKey) {
throw new Error(
"Missing the Notion API Key. Please set it in the plugin settings."
);
}
const baseConfigs = {
pluginServerUrl: pluginServer,
notionApiKey: notionApiKey,
};
try {
switch (operation) {
case "create":
if (!databaseId) {
throw new Error(
"Missing the Database Id. Please set it in the plugin settings."
);
}
if (!databaseStructure.length) {
throw new Error(
"Missing the Database Structure Properties. Please provide valid structure of your provided database."
);
}
return createPage({
...baseConfigs,
databaseId: databaseId,
databaseStructure: databaseStructure,
properties: params.notionProperties ?? [],
});
case "update":
if (!params.pageId) {
throw new Error("Page id is required for update action");
}
if (!databaseStructure.length) {
throw new Error(
"Missing the Database Structure Properties. Please provide valid structure of your provided database."
);
}
return updatePage({
...baseConfigs,
pageId: params.pageId,
databaseStructure: databaseStructure,
properties: params.notionProperties ?? [],
});
case "archive":
if (!params.pageId) {
throw new Error("Page id is required for delete action");
}
return archivePage({
...baseConfigs,
pageId: params.pageId,
});
default:
throw new Error("Invalid operation type.");
}
} catch (error) {
return { error: error.message };
}
}
async function createPage({
notionApiKey,
pluginServerUrl,
databaseId,
properties,
databaseStructure,
}) {
const requestBody = {
notionApiKey: notionApiKey,
databaseId: databaseId,
properties: properties,
databaseStructure: databaseStructure,
};
try {
const response = await fetch(
`${pluginServerUrl}/notion-database/create-page`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(requestBody),
}
);
if (!response.ok) {
throw new Error(`Error create page: ${response.statusText}`);
}
const data = await response.json();
return data;
} catch (error) {
throw new Error(`Failed to create page: ${error.message}`);
}
}
async function updatePage({
notionApiKey,
pluginServerUrl,
pageId,
properties,
databaseStructure,
}) {
const requestBody = {
notionApiKey: notionApiKey,
pageId: pageId,
properties: properties,
databaseStructure: databaseStructure,
};
try {
const response = await fetch(
`${pluginServerUrl}/notion-database/update-page`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(requestBody),
}
);
if (!response.ok) {
throw new Error(`Error update page: ${response.statusText}`);
}
const data = await response.json();
return data;
} catch (error) {
throw new Error(`Failed to update page: ${error.message}`);
}
}
async function archivePage({ notionApiKey, pluginServerUrl, pageId }) {
const requestBody = {
notionApiKey: notionApiKey,
pageId: pageId,
};
try {
const response = await fetch(
`${pluginServerUrl}/notion-database/archive-page`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(requestBody),
}
);
if (!response.ok) {
throw new Error(`Error archive page: ${response.statusText}`);
}
const data = await response.json();
return data;
} catch (error) {
throw new Error(`Failed to archive page: ${error.message}`);
}
}