2020-05-17 11:37:18 +02:00
|
|
|
const ExamplesHandler = function () {
|
|
|
|
const config = {
|
|
|
|
username: process.env.ZULIP_USERNAME,
|
|
|
|
apiKey: process.env.ZULIP_API_KEY,
|
|
|
|
realm: process.env.ZULIP_REALM,
|
|
|
|
};
|
2020-05-19 18:39:17 +02:00
|
|
|
const examples = {};
|
|
|
|
const response_data = [];
|
2020-05-17 11:37:18 +02:00
|
|
|
|
|
|
|
const make_result_object = (example, result, count = false) => {
|
|
|
|
const name = count !== false ? `${example.name}_${count}` : example.name;
|
|
|
|
return {
|
|
|
|
name,
|
|
|
|
endpoint: example.endpoint.split(':')[0],
|
|
|
|
method: example.endpoint.split(':')[1],
|
|
|
|
status_code: example.status_code.toString(),
|
|
|
|
result,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-05-19 18:39:17 +02:00
|
|
|
const generate_validation_data = async (client, example) => {
|
|
|
|
const result = await example.func(client);
|
|
|
|
if (Array.isArray(result)) {
|
|
|
|
// Handle special cases where some examples make
|
|
|
|
// more than 1 API requests.
|
|
|
|
result.forEach((r, index) => {
|
|
|
|
response_data.push(make_result_object(example, r, index));
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
response_data.push(make_result_object(example, result));
|
2020-05-17 11:37:18 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const main = async () => {
|
2020-05-19 18:39:17 +02:00
|
|
|
const Zulip = require('zulip-js');
|
|
|
|
const client = await Zulip(config);
|
|
|
|
|
|
|
|
await generate_validation_data(client, examples.send_message);
|
|
|
|
await generate_validation_data(client, examples.create_user);
|
|
|
|
|
|
|
|
console.log(JSON.stringify(response_data));
|
|
|
|
return;
|
2020-05-17 11:37:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const add_example = (name, endpoint, status_code, func) => {
|
2020-05-19 18:39:17 +02:00
|
|
|
const example = {
|
2020-05-17 11:37:18 +02:00
|
|
|
name,
|
|
|
|
endpoint,
|
|
|
|
status_code,
|
|
|
|
func,
|
2020-05-19 18:39:17 +02:00
|
|
|
};
|
|
|
|
examples[name] = example;
|
2020-05-17 11:37:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
main,
|
|
|
|
add_example,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-05-17 12:26:12 +02:00
|
|
|
const {main, add_example} = ExamplesHandler();
|
2020-05-17 11:37:18 +02:00
|
|
|
|
|
|
|
// Declare all the examples below.
|
|
|
|
|
2020-05-17 12:29:49 +02:00
|
|
|
add_example('send_message', '/messages:post', 200, async (client) => {
|
|
|
|
// {code_example|start}
|
|
|
|
// Send a stream message
|
|
|
|
let params = {
|
|
|
|
to: 'Denmark',
|
|
|
|
type: 'stream',
|
|
|
|
topic: 'Castle',
|
|
|
|
content: 'I come not, friends, to steal away your hearts.',
|
|
|
|
};
|
|
|
|
const result_1 = await client.messages.send(params);
|
|
|
|
// {code_example|end}
|
|
|
|
|
|
|
|
// {code_example|start}
|
|
|
|
// Send a private message
|
|
|
|
const user_id = 9;
|
|
|
|
params = {
|
|
|
|
to: [user_id],
|
|
|
|
type: 'private',
|
|
|
|
content: 'With mirth and laughter let old wrinkles come.',
|
|
|
|
};
|
|
|
|
const result_2 = await client.messages.send(params);
|
|
|
|
// {code_example|end}
|
|
|
|
return [result_1, result_2];
|
|
|
|
});
|
|
|
|
|
2020-05-17 12:26:12 +02:00
|
|
|
add_example('create_user', '/users:post', 200, async (client) => {
|
|
|
|
// {code_example|start}
|
|
|
|
const params = {
|
2020-06-10 21:18:27 +02:00
|
|
|
email: 'notnewbie@zulip.com',
|
2020-05-17 12:26:12 +02:00
|
|
|
password: 'temp',
|
|
|
|
full_name: 'New User',
|
|
|
|
short_name: 'newbie',
|
|
|
|
};
|
|
|
|
|
|
|
|
return await client.users.create(params);
|
|
|
|
// {code_example|end}
|
|
|
|
});
|
|
|
|
|
2020-05-17 11:37:18 +02:00
|
|
|
main();
|