2022-11-08 16:51:44 +00:00
|
|
|
/*
|
2023-01-18 13:45:14 +00:00
|
|
|
GoToSocial
|
2023-03-12 17:49:06 +00:00
|
|
|
Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2022-11-08 16:51:44 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const { createApi, fetchBaseQuery } = require("@reduxjs/toolkit/query/react");
|
2023-06-13 11:21:26 +01:00
|
|
|
const { serialize: serializeForm } = require("object-to-formdata");
|
2022-11-08 16:51:44 +00:00
|
|
|
|
|
|
|
function instanceBasedQuery(args, api, extraOptions) {
|
|
|
|
const state = api.getState();
|
2023-01-18 13:45:14 +00:00
|
|
|
const { instance, token } = state.oauth;
|
2022-11-08 16:51:44 +00:00
|
|
|
|
|
|
|
if (args.baseUrl == undefined) {
|
|
|
|
args.baseUrl = instance;
|
|
|
|
}
|
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
if (args.discardEmpty) {
|
|
|
|
if (args.body == undefined || Object.keys(args.body).length == 0) {
|
|
|
|
return { data: null };
|
|
|
|
}
|
|
|
|
delete args.discardEmpty;
|
|
|
|
}
|
|
|
|
|
2022-11-08 16:51:44 +00:00
|
|
|
if (args.asForm) {
|
|
|
|
delete args.asForm;
|
2023-06-13 11:21:26 +01:00
|
|
|
args.body = serializeForm(args.body, {
|
|
|
|
indices: true, // Array indices, for profile fields
|
|
|
|
});
|
2022-11-08 16:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return fetchBaseQuery({
|
|
|
|
baseUrl: args.baseUrl,
|
|
|
|
prepareHeaders: (headers) => {
|
|
|
|
if (token != undefined) {
|
|
|
|
headers.set('Authorization', token);
|
|
|
|
}
|
|
|
|
headers.set("Accept", "application/json");
|
|
|
|
return headers;
|
|
|
|
},
|
|
|
|
})(args, api, extraOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = createApi({
|
|
|
|
reducerPath: "api",
|
|
|
|
baseQuery: instanceBasedQuery,
|
2023-05-13 11:17:22 +01:00
|
|
|
tagTypes: ["Auth", "Emoji", "Reports", "Account"],
|
2023-01-18 13:45:14 +00:00
|
|
|
endpoints: (build) => ({
|
|
|
|
instance: build.query({
|
|
|
|
query: () => ({
|
|
|
|
url: `/api/v1/instance`
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2022-11-08 16:51:44 +00:00
|
|
|
});
|