Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add endpoint to get server settings. #68

Merged
merged 1 commit into from
Aug 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ zulip.callEndpoint('/messages', 'POST', params);
| `zulip.users.create()` | POST `/users` | create a new user. |
| `zulip.users.me.subscriptions.remove()` | DELETE `/users/me/subscriptions` | remove subscriptions. |
| `zulip.users.me.pointer.update()` | POST `users/me/pointer` | updates the pointer for the user, for moving the home view. Accepts a message id. This has the side effect of marking some messages as read. Will not return success if the message id is invalid. Will always succeed if the id is less than the current value of the pointer (the id of the last message read). |

| `zulip.server.settings()` | GET `/server_settings` | returns a dictionary of server settings. |
# Testing

Use `npm test` to run the tests.
Expand Down
11 changes: 11 additions & 0 deletions examples/server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const zulip = require('../lib/');

const config = {
username: process.env.ZULIP_USERNAME,
apiKey: process.env.ZULIP_API_KEY,
realm: process.env.ZULIP_REALM,
};

zulip(config).then((z) => {
z.server.settings().then(console.log);
}).catch(err => console.log(err.messag));
2 changes: 2 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const users = require('./resources/users');
const emojis = require('./resources/emojis');
const typing = require('./resources/typing');
const reactions = require('./resources/reactions');
const server = require('./resources/server');

function callEndpoint(endpoint, method = 'GET', params) {
let finalendpoint = endpoint;
Expand All @@ -36,6 +37,7 @@ function resources(config) {
emojis: emojis(config),
typing: typing(config),
reactions: reactions(config),
server: server(config),
};
}

Expand Down
12 changes: 12 additions & 0 deletions src/resources/server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const api = require('../api');

function server(config) {
return {
settings: (params) => {
const url = `${config.apiURL}/server_settings`;
return api(url, config, 'GET', params);
},
};
}

module.exports = server;
44 changes: 44 additions & 0 deletions test/resources/server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
const server = require('../../lib/resources/server');
const common = require('../common');
const chai = require('chai');
chai.use(require('chai-as-promised'));

chai.should();

describe('Server', () => {
it('should fetch server settings', (done) => {
const validator = (url, options) => {
url.should.contain(`${common.config.apiURL}/server_settings`);
options.should.not.have.property('body');
options.method.should.be.equal('GET');
};
const output = {
realm_name: 'Zulip Community',
realm_icon: '/user_avatars/2/realm/icon.png?version=2',
realm_description: '<p>Welcome to the Zulip development and user community! </p>\n<p>Join to get a quick Zulip demo, observe a healthy Zulip community, offer feedback to the Zulip core team, or get involved in as a contributor. </p>\n<ul>\n<li><a href="http://zulip.readthedocs.io/en/latest/chat-zulip-org.html" target="_blank" title="http://zulip.readthedocs.io/en/latest/chat-zulip-org.html">Community conventions</a></li>\n<li><a href="https://zulip.readthedocs.io/en/latest/code-of-conduct.html" target="_blank" title="https://zulip.readthedocs.io/en/latest/code-of-conduct.html">Code of Conduct</a></li>\n</ul>\n<p>Note that this server runs a bleeding-edge version of Zulip, so you may encounter bugs. Please report them!</p>',
require_email_format_usernames: true,
result: 'success',
authentication_methods: {
password: true,
ldap: false,
remoteuser: false,
dev: false,
github: true,
email: true,
google: true,
},
zulip_version: '1.9.0-rc1+git',
realm_uri: 'https://chat.zulip.org',
email_auth_enabled: true,
push_notifications_enabled: true,
msg: '',
};
const stubs = common.getStubs(validator, output);
server(common.config).settings()
.then((data) => {
data.should.have.property('result', 'success');
common.restoreStubs(stubs);
done();
}).catch(done);
});
});