mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-03 22:31:52 +00:00
Updated styles in javascript to fulfill adidas rules
This commit is contained in:
@@ -3,6 +3,7 @@ import qs from 'qs';
|
||||
import { isEmpty, isNil, reject } from 'ramda';
|
||||
|
||||
const API_VERSION = '1';
|
||||
const STATUS_UNAUTHORIZED = 401;
|
||||
|
||||
export class ShlinkApiClient {
|
||||
constructor(axios) {
|
||||
@@ -14,8 +15,6 @@ export class ShlinkApiClient {
|
||||
|
||||
/**
|
||||
* Sets the base URL to be used on any request
|
||||
* @param {String} baseUrl
|
||||
* @param {String} apiKey
|
||||
*/
|
||||
setConfig = ({ url, apiKey }) => {
|
||||
this._baseUrl = `${url}/rest/v${API_VERSION}`;
|
||||
@@ -24,45 +23,46 @@ export class ShlinkApiClient {
|
||||
|
||||
listShortUrls = (options = {}) =>
|
||||
this._performRequest('/short-codes', 'GET', options)
|
||||
.then(resp => resp.data.shortUrls)
|
||||
.catch(e => this._handleAuthError(e, this.listShortUrls, [options]));
|
||||
.then((resp) => resp.data.shortUrls)
|
||||
.catch((e) => this._handleAuthError(e, this.listShortUrls, [ options ]));
|
||||
|
||||
createShortUrl = (options) => {
|
||||
const filteredOptions = reject((value) => isEmpty(value) || isNil(value), options);
|
||||
|
||||
createShortUrl = options => {
|
||||
const filteredOptions = reject(value => isEmpty(value) || isNil(value), options);
|
||||
return this._performRequest('/short-codes', 'POST', {}, filteredOptions)
|
||||
.then(resp => resp.data)
|
||||
.catch(e => this._handleAuthError(e, this.createShortUrl, [filteredOptions]));
|
||||
.then((resp) => resp.data)
|
||||
.catch((e) => this._handleAuthError(e, this.createShortUrl, [ filteredOptions ]));
|
||||
};
|
||||
|
||||
getShortUrlVisits = (shortCode, dates) =>
|
||||
this._performRequest(`/short-codes/${shortCode}/visits`, 'GET', dates)
|
||||
.then(resp => resp.data.visits.data)
|
||||
.catch(e => this._handleAuthError(e, this.getShortUrlVisits, [shortCode, dates]));
|
||||
.then((resp) => resp.data.visits.data)
|
||||
.catch((e) => this._handleAuthError(e, this.getShortUrlVisits, [ shortCode, dates ]));
|
||||
|
||||
getShortUrl = shortCode =>
|
||||
getShortUrl = (shortCode) =>
|
||||
this._performRequest(`/short-codes/${shortCode}`, 'GET')
|
||||
.then(resp => resp.data)
|
||||
.catch(e => this._handleAuthError(e, this.getShortUrl, [shortCode]));
|
||||
.then((resp) => resp.data)
|
||||
.catch((e) => this._handleAuthError(e, this.getShortUrl, [ shortCode ]));
|
||||
|
||||
updateShortUrlTags = (shortCode, tags) =>
|
||||
this._performRequest(`/short-codes/${shortCode}/tags`, 'PUT', {}, { tags })
|
||||
.then(resp => resp.data.tags)
|
||||
.catch(e => this._handleAuthError(e, this.updateShortUrlTags, [shortCode, tags]));
|
||||
.then((resp) => resp.data.tags)
|
||||
.catch((e) => this._handleAuthError(e, this.updateShortUrlTags, [ shortCode, tags ]));
|
||||
|
||||
listTags = () =>
|
||||
this._performRequest('/tags', 'GET')
|
||||
.then(resp => resp.data.tags.data)
|
||||
.catch(e => this._handleAuthError(e, this.listTags, []));
|
||||
.then((resp) => resp.data.tags.data)
|
||||
.catch((e) => this._handleAuthError(e, this.listTags, []));
|
||||
|
||||
deleteTags = tags =>
|
||||
deleteTags = (tags) =>
|
||||
this._performRequest('/tags', 'DELETE', { tags })
|
||||
.then(() => ({ tags }))
|
||||
.catch(e => this._handleAuthError(e, this.deleteTags, [tags]));
|
||||
.catch((e) => this._handleAuthError(e, this.deleteTags, [ tags ]));
|
||||
|
||||
editTag = (oldName, newName) =>
|
||||
this._performRequest('/tags', 'PUT', {}, { oldName, newName })
|
||||
.then(() => ({ oldName, newName }))
|
||||
.catch(e => this._handleAuthError(e, this.editTag, [oldName, newName]));
|
||||
.catch((e) => this._handleAuthError(e, this.editTag, [ oldName, newName ]));
|
||||
|
||||
_performRequest = async (url, method = 'GET', query = {}, body = {}) => {
|
||||
if (isEmpty(this._token)) {
|
||||
@@ -72,14 +72,16 @@ export class ShlinkApiClient {
|
||||
return await this.axios({
|
||||
method,
|
||||
url: `${this._baseUrl}${url}`,
|
||||
headers: { 'Authorization': `Bearer ${this._token}` },
|
||||
headers: { Authorization: `Bearer ${this._token}` },
|
||||
params: query,
|
||||
data: body,
|
||||
paramsSerializer: params => qs.stringify(params, { arrayFormat: 'brackets' })
|
||||
}).then(resp => {
|
||||
paramsSerializer: (params) => qs.stringify(params, { arrayFormat: 'brackets' }),
|
||||
}).then((resp) => {
|
||||
// Save new token
|
||||
const { authorization = '' } = resp.headers;
|
||||
|
||||
this._token = authorization.substr('Bearer '.length);
|
||||
|
||||
return resp;
|
||||
});
|
||||
};
|
||||
@@ -88,15 +90,17 @@ export class ShlinkApiClient {
|
||||
const resp = await this.axios({
|
||||
method: 'POST',
|
||||
url: `${this._baseUrl}/authenticate`,
|
||||
data: { apiKey: this._apiKey }
|
||||
data: { apiKey: this._apiKey },
|
||||
});
|
||||
|
||||
return resp.data.token;
|
||||
};
|
||||
|
||||
_handleAuthError = (e, method, args) => {
|
||||
// If auth failed, reset token to force it to be regenerated, and perform a new request
|
||||
if (e.response.status === 401) {
|
||||
if (e.response.status === STATUS_UNAUTHORIZED) {
|
||||
this._token = '';
|
||||
|
||||
return method(...args);
|
||||
}
|
||||
|
||||
@@ -105,4 +109,6 @@ export class ShlinkApiClient {
|
||||
};
|
||||
}
|
||||
|
||||
export default new ShlinkApiClient(axios);
|
||||
const shlinkApiClient = new ShlinkApiClient(axios);
|
||||
|
||||
export default shlinkApiClient;
|
||||
|
||||
Reference in New Issue
Block a user