2017-12-04 02:26:40 -05:00
|
|
|
import api, { getLinks } from 'flavours/glitch/util/api';
|
2017-05-19 15:05:32 -04:00
|
|
|
|
|
|
|
export const DOMAIN_BLOCK_REQUEST = 'DOMAIN_BLOCK_REQUEST';
|
|
|
|
export const DOMAIN_BLOCK_SUCCESS = 'DOMAIN_BLOCK_SUCCESS';
|
|
|
|
export const DOMAIN_BLOCK_FAIL = 'DOMAIN_BLOCK_FAIL';
|
|
|
|
|
|
|
|
export const DOMAIN_UNBLOCK_REQUEST = 'DOMAIN_UNBLOCK_REQUEST';
|
|
|
|
export const DOMAIN_UNBLOCK_SUCCESS = 'DOMAIN_UNBLOCK_SUCCESS';
|
|
|
|
export const DOMAIN_UNBLOCK_FAIL = 'DOMAIN_UNBLOCK_FAIL';
|
|
|
|
|
|
|
|
export const DOMAIN_BLOCKS_FETCH_REQUEST = 'DOMAIN_BLOCKS_FETCH_REQUEST';
|
|
|
|
export const DOMAIN_BLOCKS_FETCH_SUCCESS = 'DOMAIN_BLOCKS_FETCH_SUCCESS';
|
|
|
|
export const DOMAIN_BLOCKS_FETCH_FAIL = 'DOMAIN_BLOCKS_FETCH_FAIL';
|
|
|
|
|
|
|
|
export function blockDomain(domain, accountId) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(blockDomainRequest(domain));
|
|
|
|
|
2017-06-23 10:05:04 -04:00
|
|
|
api(getState).post('/api/v1/domain_blocks', { domain }).then(() => {
|
2017-05-19 15:05:32 -04:00
|
|
|
dispatch(blockDomainSuccess(domain, accountId));
|
|
|
|
}).catch(err => {
|
|
|
|
dispatch(blockDomainFail(domain, err));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function blockDomainRequest(domain) {
|
|
|
|
return {
|
|
|
|
type: DOMAIN_BLOCK_REQUEST,
|
2017-05-20 11:31:47 -04:00
|
|
|
domain,
|
2017-05-19 15:05:32 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function blockDomainSuccess(domain, accountId) {
|
|
|
|
return {
|
|
|
|
type: DOMAIN_BLOCK_SUCCESS,
|
|
|
|
domain,
|
2017-05-20 11:31:47 -04:00
|
|
|
accountId,
|
2017-05-19 15:05:32 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function blockDomainFail(domain, error) {
|
|
|
|
return {
|
|
|
|
type: DOMAIN_BLOCK_FAIL,
|
|
|
|
domain,
|
2017-05-20 11:31:47 -04:00
|
|
|
error,
|
2017-05-19 15:05:32 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unblockDomain(domain, accountId) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(unblockDomainRequest(domain));
|
|
|
|
|
2017-06-23 10:05:04 -04:00
|
|
|
api(getState).delete('/api/v1/domain_blocks', { params: { domain } }).then(() => {
|
2017-05-19 15:05:32 -04:00
|
|
|
dispatch(unblockDomainSuccess(domain, accountId));
|
|
|
|
}).catch(err => {
|
|
|
|
dispatch(unblockDomainFail(domain, err));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unblockDomainRequest(domain) {
|
|
|
|
return {
|
|
|
|
type: DOMAIN_UNBLOCK_REQUEST,
|
2017-05-20 11:31:47 -04:00
|
|
|
domain,
|
2017-05-19 15:05:32 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unblockDomainSuccess(domain, accountId) {
|
|
|
|
return {
|
|
|
|
type: DOMAIN_UNBLOCK_SUCCESS,
|
|
|
|
domain,
|
2017-05-20 11:31:47 -04:00
|
|
|
accountId,
|
2017-05-19 15:05:32 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unblockDomainFail(domain, error) {
|
|
|
|
return {
|
|
|
|
type: DOMAIN_UNBLOCK_FAIL,
|
|
|
|
domain,
|
2017-05-20 11:31:47 -04:00
|
|
|
error,
|
2017-05-19 15:05:32 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchDomainBlocks() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(fetchDomainBlocksRequest());
|
|
|
|
|
2018-03-04 16:19:20 -05:00
|
|
|
api(getState).get('/api/v1/domain_blocks').then(response => {
|
2017-05-19 15:05:32 -04:00
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
|
|
|
dispatch(fetchDomainBlocksSuccess(response.data, next ? next.uri : null));
|
|
|
|
}).catch(err => {
|
|
|
|
dispatch(fetchDomainBlocksFail(err));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchDomainBlocksRequest() {
|
|
|
|
return {
|
2017-05-20 11:31:47 -04:00
|
|
|
type: DOMAIN_BLOCKS_FETCH_REQUEST,
|
2017-05-19 15:05:32 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchDomainBlocksSuccess(domains, next) {
|
|
|
|
return {
|
|
|
|
type: DOMAIN_BLOCKS_FETCH_SUCCESS,
|
|
|
|
domains,
|
2017-05-20 11:31:47 -04:00
|
|
|
next,
|
2017-05-19 15:05:32 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchDomainBlocksFail(error) {
|
|
|
|
return {
|
|
|
|
type: DOMAIN_BLOCKS_FETCH_FAIL,
|
2017-05-20 11:31:47 -04:00
|
|
|
error,
|
2017-05-19 15:05:32 -04:00
|
|
|
};
|
|
|
|
};
|