IBM Connections Wikis Service
an implementation for the IBM Connections Wiki API
Install
$ npm install --save ibm-connections-wikis-service
Usage
After you require wiki service, you may easily setup the default properties.
const IbmConnectionsWikisService = require('ibm-connections-wikis-service');
const defaults = {
headers: {
Authorization: 'Basic 12345',
},
};
Beside default authorization, this service supports oniyi-http-plugin-credentials
and oniyi-http-plugin-format-url-template
.
Credentials plugin is used only if plugins.credentials
is provided.
Format-url-template is used by default, and it is recommended to use it in combination with credentials plugin.
For more details about plugins usage, please visit:
oniyi-http-plugin-credentials
oniyi-http-plugin-format-url-template
const plugins = {
credentials: {
providerName: 'customProvider',
userRelationProp: 'credentials',
},
formatUrlTemplate: {
valuesMap: {
authType: {
basic: 'customAuthType',
}
},
applyToQueryString: true,
}
};
const serviceOptions = {
defaults,
plugins,
baseUrl: 'https://fake.base.url.com',
};
const service = new IbmConnectionsWikisService(serviceOptions.baseUrl, serviceOptions);
If not, please provide you own authorization type directly into options
object as explained in service.navigationFeed
usage below.
Once service instance is created, you are able to use next methods:
1. service.navigationFeed
2. service.wikiPage
3. service.pageVersionDetails
4. service.pageComments
5. service.pageVersions
6. service.mediaContent
Every method comes with three arguments, query
, options
and callback
.
query
- valid query parameters for each method can be found in the source code: /lib/methods/*
options
- additional options merged into default http request params
1. service.navigationFeed
In order to retrieve wiki navigation tree, it is necessary to provide wikiLabel
through query
object.
const query = {
wikiLabel: '444a24f4-28a2-45a4-b21a-a55120f1ca72',
};
const options = {
authType: 'oauth',
};
service.navigationFeed(query, options, (err, response) => {
const { navigationFeed } = response;
});
2. service.feeds.wikiPage
If you require wiki page, simply provide wikiLabel
and pageLabel
to query
object.
const query = {
wikiLabel: '444a24f4-28a2-45a4-b21a-a55120f1ca72',
pageLabel: '123a24f4-48a2-45a4-551a-a5fferq1ca66',
};
service.wikiPage(query, {}, (err, response) => {
const { wikiPage } = response;
});
3. service.pageVersionDetails
Page version belongs to a wiki page. Every page have one initial version, and could have many more.
Provide query
with wikiLabel
, pageLabel
and versionLabel
in order to get info about certain version.
const query = {
wikiLabel: '444a24f4-28a2-45a4-b21a-a55120f1ca72',
pageLabel: '123a24f4-48a2-45a4-551a-a5fferq1ca66',
versionLabel: '3214a24f4-48a2-45a4-b21a-b5f4433ckl2',
};
service.pageVersionDetails(query, {}, (err, response) => {
const { pageVersionDetails } = response;
});
Mapping between this service and an actual IBM Connections Wiki API:
/api/wiki/{wikiId}/page/{pageId}/version/{versionId}/entry
wikiId = wikiLabel
pageId = pageLabel
versionId = versionLabel
This is an API that returns feed of comments that belong to a wiki page.
const query = {
wikiLabel: '444a24f4-28a2-45a4-b21a-a55120f1ca72',
pageLabel: '123a24f4-48a2-45a4-551a-a5fferq1ca66',
};
service.pageArtifacts(query, {}, (err, response) => {
const { pageComments } = response;
});
5. service.pageVersions
This is an API that returns feed of versions that belong to a wiki page.
const query = {
wikiLabel: '444a24f4-28a2-45a4-b21a-a55120f1ca72',
pageLabel: '123a24f4-48a2-45a4-551a-a5fferq1ca66',
};
service.pageVersions(query, {}, (err, response) => {
const { pageVersions } = response;
});
6. service.mediaContent
In order to retrieve media content from a wiki page, or wiki version page, it is necessary to follow these steps:
- Call wikiPage() or pageVersionDetails() API as explained in steps 2. and 3.
- Extract
content.src
from the response object - Provide default
mediaAuthType
, which can be configurable by using format-url-template plugin - Combine extracted
content
and mediaAuthType
through options
param:
const query = {
wikiLabel: '2feb2356-ab0f-458d-8a27-334363d9d192',
pageLabel: '0f8ee02f-0bcb-435a-859c-857845cd9d78',
};
service.wikiPage(query, {}, (err, response) => {
const content = response.wikiPage.content.src;
service.mediaContent(query, { content, mediaAuthType: 'oauth' }, (error, mediaData) => {
});
});
Since mediaContent
might require different authentication while making a request,this way we are making sure that
only mediaContent
request is affected by any mediaAuthType
mapping.
If, however, we used regular authType
template mechanism, this would lead to mapping all uris that support authType
template
in order to change only one single request (assuming that mediaContent
requires different authentication from any other service method).
Notes
For the best performance and readability, it is recommended to use async
module if creating connected API calls.
const async = require('async');
async.waterfall([
(done) => service.wikiPage({}, {}, done),
(response, done) => {
service.mediaContent({}, {}, done);
},
(err, result) => { }
]);
License
UNLICENSED © GIS AG