oauth-rest-atlassian
v0.4.25
Published
An OAuth wrapper to authenticate and use the Atlassian REST API. The initial authorisation dance is managed through a local web page.
Downloads
20
Readme
oauth-rest-atlassian
An OAuth wrapper to authenticate and use the Atlassian REST API. The initial authorisation dance is managed through a local web page.
Installation
Install as a local package.
npm install oauth-rest-atlassian
Config.json
Setup config.json at the root of the package.
{
"protocol": "http",
"host": "localhost",
"port": "8080",
"SSLPrivateKey": "",
"SSLCertificate": "",
"consumerPrivateKeyFile": "rsa.pem",
"applications": {
"jira": {
"protocol": "https",
"host": "myhost.com",
"port": "443",
"oauth": {
"consumer_key": "node-oauth-key1",
"consumer_secret": "",
"access_token": "",
"access_token_secret": ""
},
"paths": {
"request-token": "/plugins/servlet/oauth/request-token",
"access-token": "/plugins/servlet/oauth/access-token",
"authorize": "/plugins/servlet/oauth/authorize"
}
},
"bamboo": {
"protocol": "https",
"host": "myhost.com",
"port": "443",
"oauth": {
"consumer_key": "node-oauth-key1",
"consumer_secret": "",
"access_token": "",
"access_token_secret": ""
},
"paths": {
"request-token": "/plugins/servlet/oauth/request-token",
"access-token": "/plugins/servlet/oauth/access-token",
"authorize": "/plugins/servlet/oauth/authorize"
}
}
}
}
OAuth private and public keys
A private-public key pair is required to establish OAuth authorisation with an Atlassian product. The private key and public key can be generated using openssl:
$ openssl genrsa -out rsa-key.pem 1024
$ openssl rsa -in rsa-key.pem -pubout -out rsa-key.pub
Setup application link
An application link profile must be established on the Atlassian product using a public key. The Application Link requests the URL of the application to link. This URL is not used and a fill value should be used like http://rest
.
In the create link screen (you can enter an application name of your choice):
- Application name:
Node OAuth
- Application type:
Generic Application
- Create incoming link: check
In the incoming link screen (you can enter an application name of your choice):
- Consumer Key:
node-oauth-key1
- Consumer Name:
Node OAuth
- Public Key: copy public key contents excluding the header
-----BEGIN PUBLIC KEY-----
and footer-----END PUBLIC KEY-----
.
SSL Private key and certificate
To run the local website using the https protocol you will need an SSL private key and certificate. The private key can be generated using openssl:
$ openssl genrsa -out rsa-key.pem 1024
To obtain a certificate a certificate signing request must be generated:
$ openssl req -new -key rsa-key.pem -out certreq.csr
$ openssl x509 -req -in certreq.csr -signkey rsa-key.pem -out rsa-cert.pem
The certificate signing request should be sent to a certificate authority for to perform the certificate signing process. However, for internal development purposes a self signed certificate can be generated:
$ openssl x509 -req -in certreq.csr -signkey rsa-key.pem -out rsa-cert.pem
Usage
Authorisation dance
Start the local website.
npm start
Open the website at path /jira for JIRA authorisation or /bamboo for Bamboo authorisation:
- If your config is set to host at
https://localhost
then JIRA authorisation - https://localhost/jira - If your config is set to host at
https://localhost
then Bamboo authorisation - https://localhost/bamboo
If you have configured the https protocol and used a self signed certificate you will need to navigate security warnings.
If the Atlassian application configuration is valid and you have setup the application link correctly you should see the authorisation page. Click the Allow button to retrieve and save the OAuth access tokens. You can now use the REST API for the Atlassian product.
Using the REST API
You can test the REST API using the local website and path /rest?req=
.
For example:
- If your config is set to host at
https://localhost
then get all projects from JIRA - https://localhost/jira/rest?req=project - If your config is set to host at
https://localhost
then get all plans from Bamboo - https://localhost/bamboo/rest?req=plan
API
Modules
Returns: Object - configuration for application
| Param | Type | Description | | --- | --- | --- | | application | String | application |
rest
Execute a rest query using the http GET, POST, PUT or DELETE method
| Param | Type | Default | Description | | --- | --- | --- | --- | | opts | Object | | required options | | [opts.config] | Object | | the configuration object which must contain the following properties: config.protocol - the protocol of the JIRA server (http/https) config.host - the host address of the JIRA server config.port - the port of the JIRA server config.paths["request-token"] - the oauth request-token config.paths["access-token"] - the oauth access-token config.oauth.consumer_key - the oauth consumer key config.oauth.consumer_secret - the oauth consumer secret | | [opts.query] | Object | | the rest query url | | [opts.method] | Object | "get" | optional the http method - one of get, post, put, delete | | [opts.postData] | Object | "" | optional the post data for create or update queries. | | cb | function | | the callback function called once the search has completed. The callback function must have the following signature: done(error, data). - error - an error object returned by oauth - data - the data returned as a JSON object |
documented by jsdoc-to-markdown.
Changelog
License
MIT License (MIT). All rights not explicitly granted in the license are reserved.
Copyright (c) 2015 John Barry
Dependencies
[email protected] - "MIT License (MIT)", documented by npm-licenses.