Compare commits
12 Commits
temp-branc
...
test-async
Author | SHA1 | Date | |
---|---|---|---|
![]() |
424c251dde | ||
![]() |
be4493710f | ||
![]() |
52c0c5e0c5 | ||
![]() |
4c639f170e | ||
![]() |
509a414151 | ||
![]() |
8f3c793a69 | ||
![]() |
a2dd9cf1b8 | ||
![]() |
42285a5879 | ||
![]() |
5d63fce6f0 | ||
![]() |
46a4c8faec | ||
![]() |
ba14481151 | ||
![]() |
5a4207414d |
@@ -89,6 +89,8 @@ export default defineAction({
|
||||
|
||||
const response = await $.http.post('/', payload);
|
||||
|
||||
console.log(response.config.additionalProperties.extraData);
|
||||
|
||||
$.setActionItem({
|
||||
raw: response.data,
|
||||
});
|
||||
|
@@ -1,4 +1,7 @@
|
||||
const addAuthHeader = ($, requestConfig) => {
|
||||
console.log('requestConfig', requestConfig)
|
||||
if (requestConfig.additionalProperties?.skip) return requestConfig;
|
||||
|
||||
if ($.auth.data.serverUrl) {
|
||||
requestConfig.baseURL = $.auth.data.serverUrl;
|
||||
}
|
||||
|
@@ -0,0 +1,23 @@
|
||||
const asyncBeforeRequest = async ($, requestConfig) => {
|
||||
if (requestConfig.additionalProperties?.skip)
|
||||
return requestConfig;
|
||||
|
||||
const response = await $.http.post(
|
||||
'http://localhost:3000/webhooks/flows/8a040f4e-817f-4076-80ba-3c1c0af7e65e/sync',
|
||||
null,
|
||||
{
|
||||
additionalProperties: {
|
||||
skip: true,
|
||||
},
|
||||
}
|
||||
);
|
||||
|
||||
console.log(response);
|
||||
requestConfig.additionalProperties = {
|
||||
extraData: response.data
|
||||
}
|
||||
|
||||
return requestConfig;
|
||||
};
|
||||
|
||||
export default asyncBeforeRequest;
|
@@ -1,5 +1,6 @@
|
||||
import defineApp from '../../helpers/define-app.js';
|
||||
import addAuthHeader from './common/add-auth-header.js';
|
||||
import asyncBeforeRequest from './common/async-before-request.js';
|
||||
import auth from './auth/index.js';
|
||||
import actions from './actions/index.js';
|
||||
|
||||
@@ -12,7 +13,7 @@ export default defineApp({
|
||||
baseUrl: 'https://ntfy.sh',
|
||||
apiBaseUrl: 'https://ntfy.sh',
|
||||
primaryColor: '56bda8',
|
||||
beforeRequest: [addAuthHeader],
|
||||
beforeRequest: [asyncBeforeRequest, addAuthHeader],
|
||||
auth,
|
||||
actions,
|
||||
});
|
||||
|
@@ -3,70 +3,100 @@ import { HttpsProxyAgent } from 'https-proxy-agent';
|
||||
import { HttpProxyAgent } from 'http-proxy-agent';
|
||||
import appConfig from '../config/app.js';
|
||||
|
||||
const config = axios.defaults;
|
||||
const httpProxyUrl = appConfig.httpProxy;
|
||||
const httpsProxyUrl = appConfig.httpsProxy;
|
||||
const supportsProxy = httpProxyUrl || httpsProxyUrl;
|
||||
const noProxyEnv = appConfig.noProxy;
|
||||
const noProxyHosts = noProxyEnv ? noProxyEnv.split(',').map(host => host.trim()) : [];
|
||||
export function createInstance(customConfig = {}, { requestInterceptor, responseErrorInterceptor } = {}) {
|
||||
const config = {
|
||||
...axios.defaults,
|
||||
...customConfig
|
||||
};
|
||||
const httpProxyUrl = appConfig.httpProxy;
|
||||
const httpsProxyUrl = appConfig.httpsProxy;
|
||||
const supportsProxy = httpProxyUrl || httpsProxyUrl;
|
||||
const noProxyEnv = appConfig.noProxy;
|
||||
const noProxyHosts = noProxyEnv ? noProxyEnv.split(',').map(host => host.trim()) : [];
|
||||
|
||||
if (supportsProxy) {
|
||||
if (httpProxyUrl) {
|
||||
config.httpAgent = new HttpProxyAgent(httpProxyUrl);
|
||||
if (supportsProxy) {
|
||||
if (httpProxyUrl) {
|
||||
config.httpAgent = new HttpProxyAgent(httpProxyUrl);
|
||||
}
|
||||
|
||||
if (httpsProxyUrl) {
|
||||
config.httpsAgent = new HttpsProxyAgent(httpsProxyUrl);
|
||||
}
|
||||
|
||||
config.proxy = false;
|
||||
}
|
||||
|
||||
if (httpsProxyUrl) {
|
||||
config.httpsAgent = new HttpsProxyAgent(httpsProxyUrl);
|
||||
const instance = axios.create(config);
|
||||
|
||||
function shouldSkipProxy(hostname) {
|
||||
return noProxyHosts.some(noProxyHost => {
|
||||
return hostname.endsWith(noProxyHost) || hostname === noProxyHost;
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* The interceptors are executed in the reverse order they are added.
|
||||
*/
|
||||
instance.interceptors.request.use(
|
||||
function skipProxyIfInNoProxy(requestConfig) {
|
||||
const hostname = new URL(requestConfig.baseURL).hostname;
|
||||
|
||||
if (supportsProxy && shouldSkipProxy(hostname)) {
|
||||
requestConfig.httpAgent = undefined;
|
||||
requestConfig.httpsAgent = undefined;
|
||||
}
|
||||
|
||||
return requestConfig;
|
||||
},
|
||||
(error) => Promise.reject(error)
|
||||
);
|
||||
|
||||
// not always we have custom request interceptors
|
||||
if (requestInterceptor) {
|
||||
instance.interceptors.request.use(
|
||||
async function customInterceptor(requestConfig) {
|
||||
let newRequestConfig = requestConfig;
|
||||
|
||||
for (const interceptor of requestInterceptor) {
|
||||
newRequestConfig = await interceptor(newRequestConfig);
|
||||
}
|
||||
|
||||
return newRequestConfig;
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
config.proxy = false;
|
||||
instance.interceptors.request.use(
|
||||
function removeBaseUrlForAbsoluteUrls(requestConfig) {
|
||||
/**
|
||||
* If the URL is an absolute URL, we remove its origin out of the URL
|
||||
* and set it as baseURL. This lets us streamlines the requests made by Automatisch
|
||||
* and requests made by app integrations.
|
||||
*/
|
||||
try {
|
||||
const url = new URL(requestConfig.url);
|
||||
requestConfig.baseURL = url.origin;
|
||||
requestConfig.url = url.pathname + url.search;
|
||||
|
||||
return requestConfig;
|
||||
} catch (err) {
|
||||
return requestConfig;
|
||||
}
|
||||
},
|
||||
(error) => Promise.reject(error)
|
||||
);
|
||||
|
||||
// not always we have custom response error interceptor
|
||||
if (responseErrorInterceptor) {
|
||||
instance.interceptors.response.use(
|
||||
(response) => response,
|
||||
responseErrorInterceptor
|
||||
);
|
||||
}
|
||||
|
||||
return instance;
|
||||
}
|
||||
|
||||
const axiosWithProxyInstance = axios.create(config);
|
||||
const defaultInstance = createInstance();
|
||||
|
||||
function shouldSkipProxy(hostname) {
|
||||
return noProxyHosts.some(noProxyHost => {
|
||||
return hostname.endsWith(noProxyHost) || hostname === noProxyHost;
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* The interceptors are executed in the reverse order they are added.
|
||||
*/
|
||||
axiosWithProxyInstance.interceptors.request.use(
|
||||
function skipProxyIfInNoProxy(requestConfig) {
|
||||
const hostname = new URL(requestConfig.baseURL).hostname;
|
||||
|
||||
if (supportsProxy && shouldSkipProxy(hostname)) {
|
||||
requestConfig.httpAgent = undefined;
|
||||
requestConfig.httpsAgent = undefined;
|
||||
}
|
||||
|
||||
return requestConfig;
|
||||
},
|
||||
undefined,
|
||||
{ synchronous: true }
|
||||
);
|
||||
|
||||
axiosWithProxyInstance.interceptors.request.use(
|
||||
function removeBaseUrlForAbsoluteUrls(requestConfig) {
|
||||
/**
|
||||
* If the URL is an absolute URL, we remove its origin out of the URL
|
||||
* and set it as baseURL. This lets us streamlines the requests made by Automatisch
|
||||
* and requests made by app integrations.
|
||||
*/
|
||||
try {
|
||||
const url = new URL(requestConfig.url);
|
||||
requestConfig.baseURL = url.origin;
|
||||
requestConfig.url = url.pathname + url.search;
|
||||
|
||||
return requestConfig;
|
||||
} catch {
|
||||
return requestConfig;
|
||||
}
|
||||
},
|
||||
undefined,
|
||||
{ synchronous: true}
|
||||
);
|
||||
|
||||
export default axiosWithProxyInstance;
|
||||
export default defaultInstance;
|
||||
|
@@ -1,6 +1,6 @@
|
||||
import { beforeEach, describe, it, expect, vi } from 'vitest';
|
||||
|
||||
describe('Axios with proxy', () => {
|
||||
describe('Custom default axios with proxy', () => {
|
||||
beforeEach(() => {
|
||||
vi.resetModules();
|
||||
});
|
||||
@@ -23,7 +23,13 @@ describe('Axios with proxy', () => {
|
||||
expect(secondRequestInterceptor.fulfilled.name).toBe('removeBaseUrlForAbsoluteUrls');
|
||||
});
|
||||
|
||||
describe('skipProxyIfInNoProxy', () => {
|
||||
it('should throw with invalid url (consisting of path alone)', async () => {
|
||||
const axios = (await import('./axios-with-proxy.js')).default;
|
||||
|
||||
await expect(() => axios('/just-a-path')).rejects.toThrowError('Invalid URL');
|
||||
});
|
||||
|
||||
describe('with skipProxyIfInNoProxy interceptor', () => {
|
||||
let appConfig, axios;
|
||||
beforeEach(async() => {
|
||||
appConfig = (await import('../config/app.js')).default;
|
||||
@@ -67,7 +73,7 @@ describe('Axios with proxy', () => {
|
||||
});
|
||||
});
|
||||
|
||||
describe('removeBaseUrlForAbsoluteUrls', () => {
|
||||
describe('with removeBaseUrlForAbsoluteUrls interceptor', () => {
|
||||
let axios;
|
||||
beforeEach(async() => {
|
||||
axios = (await import('./axios-with-proxy.js')).default;
|
||||
@@ -116,4 +122,48 @@ describe('Axios with proxy', () => {
|
||||
expect(interceptedRequestConfig.url).toBe('/path?query=1');
|
||||
});
|
||||
});
|
||||
|
||||
describe('with extra requestInterceptors', () => {
|
||||
it('should apply extra request interceptors in the middle', async () => {
|
||||
const { createInstance } = await import('./axios-with-proxy.js');
|
||||
|
||||
const interceptor = (config) => {
|
||||
config.test = true;
|
||||
return config;
|
||||
}
|
||||
|
||||
const instance = createInstance({}, {
|
||||
requestInterceptor: [
|
||||
interceptor
|
||||
]
|
||||
});
|
||||
const requestInterceptors = instance.interceptors.request.handlers;
|
||||
const customInterceptor = requestInterceptors[1].fulfilled;
|
||||
|
||||
expect(requestInterceptors.length).toBe(3);
|
||||
await expect(customInterceptor({})).resolves.toStrictEqual({ test: true });
|
||||
});
|
||||
|
||||
it('should work with a custom interceptor setting a baseURL and a request to path', async () => {
|
||||
const { createInstance } = await import('./axios-with-proxy.js');
|
||||
|
||||
const interceptor = (config) => {
|
||||
config.baseURL = 'http://localhost';
|
||||
return config;
|
||||
}
|
||||
|
||||
const instance = createInstance({}, {
|
||||
requestInterceptor: [
|
||||
interceptor
|
||||
]
|
||||
});
|
||||
|
||||
try {
|
||||
await instance.get('/just-a-path');
|
||||
} catch (error) {
|
||||
expect(error.config.baseURL).toBe('http://localhost');
|
||||
expect(error.config.url).toBe('/just-a-path');
|
||||
}
|
||||
})
|
||||
});
|
||||
});
|
||||
|
@@ -1,65 +1,43 @@
|
||||
import HttpError from '../../errors/http.js';
|
||||
import axios from '../axios-with-proxy.js';
|
||||
|
||||
// Mutates the `toInstance` by copying the request interceptors from `fromInstance`
|
||||
const copyRequestInterceptors = (fromInstance, toInstance) => {
|
||||
// Copy request interceptors
|
||||
fromInstance.interceptors.request.forEach(interceptor => {
|
||||
toInstance.interceptors.request.use(
|
||||
interceptor.fulfilled,
|
||||
interceptor.rejected,
|
||||
{
|
||||
synchronous: interceptor.synchronous,
|
||||
runWhen: interceptor.runWhen
|
||||
}
|
||||
);
|
||||
});
|
||||
}
|
||||
import { createInstance } from '../axios-with-proxy.js';
|
||||
|
||||
export default function createHttpClient({ $, baseURL, beforeRequest = [] }) {
|
||||
const instance = axios.create({
|
||||
baseURL,
|
||||
});
|
||||
async function interceptResponseError(error) {
|
||||
const { config, response } = error;
|
||||
// Do not destructure `status` from `error.response` because it might not exist
|
||||
const status = response?.status;
|
||||
|
||||
// 1. apply the beforeRequest functions from the app
|
||||
instance.interceptors.request.use((requestConfig) => {
|
||||
const result = beforeRequest.reduce((newConfig, beforeRequestFunc) => {
|
||||
return beforeRequestFunc($, newConfig);
|
||||
}, requestConfig);
|
||||
if (
|
||||
// TODO: provide a `shouldRefreshToken` function in the app
|
||||
(status === 401 || status === 403) &&
|
||||
$.app.auth &&
|
||||
$.app.auth.refreshToken &&
|
||||
!$.app.auth.isRefreshTokenRequested
|
||||
) {
|
||||
$.app.auth.isRefreshTokenRequested = true;
|
||||
await $.app.auth.refreshToken($);
|
||||
|
||||
return result;
|
||||
});
|
||||
// retry the previous request before the expired token error
|
||||
const newResponse = await instance.request(config);
|
||||
$.app.auth.isRefreshTokenRequested = false;
|
||||
|
||||
// 2. inherit the request inceptors from the parent instance
|
||||
copyRequestInterceptors(axios, instance);
|
||||
|
||||
instance.interceptors.response.use(
|
||||
(response) => response,
|
||||
async (error) => {
|
||||
const { config, response } = error;
|
||||
// Do not destructure `status` from `error.response` because it might not exist
|
||||
const status = response?.status;
|
||||
|
||||
if (
|
||||
// TODO: provide a `shouldRefreshToken` function in the app
|
||||
(status === 401 || status === 403) &&
|
||||
$.app.auth &&
|
||||
$.app.auth.refreshToken &&
|
||||
!$.app.auth.isRefreshTokenRequested
|
||||
) {
|
||||
$.app.auth.isRefreshTokenRequested = true;
|
||||
await $.app.auth.refreshToken($);
|
||||
|
||||
// retry the previous request before the expired token error
|
||||
const newResponse = await instance.request(config);
|
||||
$.app.auth.isRefreshTokenRequested = false;
|
||||
|
||||
return newResponse;
|
||||
}
|
||||
|
||||
throw new HttpError(error);
|
||||
return newResponse;
|
||||
}
|
||||
);
|
||||
|
||||
throw new HttpError(error);
|
||||
};
|
||||
|
||||
const instance = createInstance(
|
||||
{
|
||||
baseURL,
|
||||
},
|
||||
{
|
||||
requestInterceptor: beforeRequest.map((originalBeforeRequest) => {
|
||||
return async (requestConfig) => await originalBeforeRequest($, requestConfig);
|
||||
}),
|
||||
responseErrorInterceptor: interceptResponseError,
|
||||
}
|
||||
)
|
||||
|
||||
return instance;
|
||||
}
|
||||
|
@@ -63,6 +63,8 @@ export default async (flowId, request, response) => {
|
||||
});
|
||||
|
||||
if (testRun) {
|
||||
response.status(204).end();
|
||||
|
||||
// in case of testing, we do not process the whole process.
|
||||
continue;
|
||||
}
|
||||
@@ -74,6 +76,12 @@ export default async (flowId, request, response) => {
|
||||
executionId,
|
||||
});
|
||||
|
||||
if (actionStep.appKey === 'filter' && !actionExecutionStep.dataOut) {
|
||||
response.status(422).end();
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
if (actionStep.key === 'respondWith' && !response.headersSent) {
|
||||
const { headers, statusCode, body } = actionExecutionStep.dataOut;
|
||||
|
||||
|
@@ -14,7 +14,7 @@ connection in Automatisch. If any of the steps are outdated, please let us know!
|
||||
7. Click on the **Select all** and then click on the **Create** button.
|
||||
8. Now, copy your **API key secret** and paste the key into the **API Key** field in Automatisch.
|
||||
9. Write any screen name to be displayed in Automatisch.
|
||||
10. You can find your project ID next to your project name. Paste the id into **Project ID** field in Automatsich.
|
||||
11. If you are using self-hosted Appwrite project, you can paste the instace url into **Appwrite instance URL** field in Automatisch.
|
||||
10. You can find your project ID next to your project name. Paste the id into **Project ID** field in Automatisch.
|
||||
11. If you are using self-hosted Appwrite project, you can paste the instance url into **Appwrite instance URL** field in Automatisch.
|
||||
12. Fill the host name field with the hostname of your instance URL. It's either `cloud.appwrite.io` or hostname of your instance URL.
|
||||
13. Start using Appwrite integration with Automatisch!
|
||||
|
@@ -1,7 +1,7 @@
|
||||
---
|
||||
favicon: /favicons/appwrite.svg
|
||||
items:
|
||||
- name: New documets
|
||||
- name: New documents
|
||||
desc: Triggers when a new document is created.
|
||||
---
|
||||
|
||||
|
Reference in New Issue
Block a user