mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
oauth api revocation handling
This commit is contained in:
parent
dc1d536c35
commit
6d719874fa
9 changed files with 136 additions and 86 deletions
|
@ -79,7 +79,7 @@ function App() {
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
// Check currently stored auth token for validity if available
|
// Check currently stored auth token for validity if available
|
||||||
if (loginState == "callback" || loginState == "login") {
|
if (loginState == "callback" || loginState == "login") {
|
||||||
return dispatch(api.oauth.verify());
|
return dispatch(api.user.fetchAccount());
|
||||||
}
|
}
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
setTokenChecked(true);
|
setTokenChecked(true);
|
||||||
|
|
|
@ -22,51 +22,58 @@ const Promise = require("bluebird");
|
||||||
|
|
||||||
const { APIError } = require("../errors");
|
const { APIError } = require("../errors");
|
||||||
const { setInstanceInfo } = require("../../redux/reducers/instances").actions;
|
const { setInstanceInfo } = require("../../redux/reducers/instances").actions;
|
||||||
|
const oauth = require("../../redux/reducers/oauth").actions;
|
||||||
|
|
||||||
function apiCall(state, method, route, payload) {
|
function apiCall(method, route, payload) {
|
||||||
let base = state.oauth.instance;
|
return function (dispatch, getState) {
|
||||||
let auth = state.oauth.token;
|
const state = getState();
|
||||||
console.log(method, base, route, auth);
|
let base = state.oauth.instance;
|
||||||
|
let auth = state.oauth.token;
|
||||||
|
console.log(method, base, route, "auth:", auth != undefined);
|
||||||
|
|
||||||
return Promise.try(() => {
|
return Promise.try(() => {
|
||||||
let url = new URL(base);
|
let url = new URL(base);
|
||||||
url.pathname = route;
|
url.pathname = route;
|
||||||
let body;
|
let body;
|
||||||
|
|
||||||
if (payload != undefined) {
|
if (payload != undefined) {
|
||||||
body = JSON.stringify(payload);
|
body = JSON.stringify(payload);
|
||||||
}
|
}
|
||||||
|
|
||||||
let headers = {
|
let headers = {
|
||||||
"Accept": "application/json",
|
"Accept": "application/json",
|
||||||
"Content-Type": "application/json"
|
"Content-Type": "application/json"
|
||||||
};
|
};
|
||||||
|
|
||||||
if (auth != undefined) {
|
if (auth != undefined) {
|
||||||
headers["Authorization"] = auth;
|
headers["Authorization"] = auth;
|
||||||
}
|
}
|
||||||
|
|
||||||
return fetch(url.toString(), {
|
return fetch(url.toString(), {
|
||||||
method,
|
method,
|
||||||
headers,
|
headers,
|
||||||
body
|
body
|
||||||
|
});
|
||||||
|
}).then((res) => {
|
||||||
|
// try parse json even with error
|
||||||
|
let json = res.json().catch((e) => {
|
||||||
|
throw new APIError(`JSON parsing error: ${e.message}`);
|
||||||
|
});
|
||||||
|
|
||||||
|
return Promise.all([res, json]);
|
||||||
|
}).then(([res, json]) => {
|
||||||
|
if (!res.ok) {
|
||||||
|
if (auth != undefined && res.status == 401) {
|
||||||
|
// stored access token is invalid
|
||||||
|
dispatch(oauth.remove());
|
||||||
|
throw new APIError("Stored OAUTH login was no longer valid, please log in again.");
|
||||||
|
}
|
||||||
|
throw new APIError(json.error, {json});
|
||||||
|
} else {
|
||||||
|
return json;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}).then((res) => {
|
};
|
||||||
let ok = res.ok;
|
|
||||||
|
|
||||||
// try parse json even with error
|
|
||||||
let json = res.json().catch((e) => {
|
|
||||||
throw new APIError(`JSON parsing error: ${e.message}`);
|
|
||||||
});
|
|
||||||
|
|
||||||
return Promise.all([ok, json]);
|
|
||||||
}).then(([ok, json]) => {
|
|
||||||
if (!ok) {
|
|
||||||
throw new APIError(json.error, {json});
|
|
||||||
} else {
|
|
||||||
return json;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function getCurrentUrl() {
|
function getCurrentUrl() {
|
||||||
|
@ -88,7 +95,7 @@ function fetchInstance(domain) {
|
||||||
oauth: {instance: domain}
|
oauth: {instance: domain}
|
||||||
};
|
};
|
||||||
|
|
||||||
return apiCall(fakeState, "GET", "/api/v1/instance");
|
return apiCall("GET", "/api/v1/instance")(dispatch, () => fakeState);
|
||||||
}).then((json) => {
|
}).then((json) => {
|
||||||
if (json && json.uri) { // TODO: validate instance json more?
|
if (json && json.uri) { // TODO: validate instance json more?
|
||||||
dispatch(setInstanceInfo([json.uri, json]));
|
dispatch(setInstanceInfo([json.uri, json]));
|
||||||
|
@ -102,5 +109,6 @@ module.exports = {
|
||||||
instance: {
|
instance: {
|
||||||
fetch: fetchInstance
|
fetch: fetchInstance
|
||||||
},
|
},
|
||||||
oauth: require("./oauth")({apiCall, getCurrentUrl})
|
oauth: require("./oauth")({apiCall, getCurrentUrl}),
|
||||||
|
user: require("./user")({apiCall})
|
||||||
};
|
};
|
|
@ -24,19 +24,20 @@ const { OAUTHError } = require("../errors");
|
||||||
|
|
||||||
const oauth = require("../../redux/reducers/oauth").actions;
|
const oauth = require("../../redux/reducers/oauth").actions;
|
||||||
const temporary = require("../../redux/reducers/temporary").actions;
|
const temporary = require("../../redux/reducers/temporary").actions;
|
||||||
|
const user = require("../../redux/reducers/user").actions;
|
||||||
|
|
||||||
module.exports = function oauthAPI({apiCall, getCurrentUrl}) {
|
module.exports = function oauthAPI({apiCall, getCurrentUrl}) {
|
||||||
return {
|
return {
|
||||||
|
|
||||||
register: function register(scopes = []) {
|
register: function register(scopes = []) {
|
||||||
return function (dispatch, getState) {
|
return function (dispatch, _getState) {
|
||||||
return Promise.try(() => {
|
return Promise.try(() => {
|
||||||
return apiCall(getState(), "POST", "/api/v1/apps", {
|
return dispatch(apiCall("POST", "/api/v1/apps", {
|
||||||
client_name: "GoToSocial Settings",
|
client_name: "GoToSocial Settings",
|
||||||
scopes: scopes.join(" "),
|
scopes: scopes.join(" "),
|
||||||
redirect_uris: getCurrentUrl(),
|
redirect_uris: getCurrentUrl(),
|
||||||
website: getCurrentUrl()
|
website: getCurrentUrl()
|
||||||
});
|
}));
|
||||||
}).then((json) => {
|
}).then((json) => {
|
||||||
json.scopes = scopes;
|
json.scopes = scopes;
|
||||||
dispatch(oauth.setRegistration(json));
|
dispatch(oauth.setRegistration(json));
|
||||||
|
@ -73,13 +74,13 @@ module.exports = function oauthAPI({apiCall, getCurrentUrl}) {
|
||||||
throw new OAUTHError("Callback code present, but no client registration is available from localStorage. \nNote: localStorage is unavailable in Private Browsing.");
|
throw new OAUTHError("Callback code present, but no client registration is available from localStorage. \nNote: localStorage is unavailable in Private Browsing.");
|
||||||
}
|
}
|
||||||
|
|
||||||
return apiCall(getState(), "POST", "/oauth/token", {
|
return dispatch(apiCall("POST", "/oauth/token", {
|
||||||
client_id: reg.client_id,
|
client_id: reg.client_id,
|
||||||
client_secret: reg.client_secret,
|
client_secret: reg.client_secret,
|
||||||
redirect_uri: getCurrentUrl(),
|
redirect_uri: getCurrentUrl(),
|
||||||
grant_type: "authorization_code",
|
grant_type: "authorization_code",
|
||||||
code: code
|
code: code
|
||||||
});
|
}));
|
||||||
}).then((json) => {
|
}).then((json) => {
|
||||||
console.log(json);
|
console.log(json);
|
||||||
window.history.replaceState({}, document.title, window.location.pathname);
|
window.history.replaceState({}, document.title, window.location.pathname);
|
||||||
|
@ -88,20 +89,6 @@ module.exports = function oauthAPI({apiCall, getCurrentUrl}) {
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
verify: function verify() {
|
|
||||||
return function (dispatch, getState) {
|
|
||||||
console.log(getState());
|
|
||||||
return Promise.try(() => {
|
|
||||||
return apiCall(getState(), "GET", "/api/v1/accounts/verify_credentials");
|
|
||||||
}).then((account) => {
|
|
||||||
console.log(account);
|
|
||||||
}).catch((e) => {
|
|
||||||
dispatch(oauth.remove());
|
|
||||||
throw e;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
logout: function logout() {
|
logout: function logout() {
|
||||||
return function (dispatch, _getState) {
|
return function (dispatch, _getState) {
|
||||||
// TODO: GoToSocial does not have a logout API route yet
|
// TODO: GoToSocial does not have a logout API route yet
|
||||||
|
|
37
web/source/settings-panel/lib/api/user.js
Normal file
37
web/source/settings-panel/lib/api/user.js
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
/*
|
||||||
|
GoToSocial
|
||||||
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
const Promise = require("bluebird");
|
||||||
|
|
||||||
|
const user = require("../../redux/reducers/user").actions;
|
||||||
|
|
||||||
|
module.exports = function({apiCall}) {
|
||||||
|
return {
|
||||||
|
fetchAccount: function fetchAccount() {
|
||||||
|
return function (dispatch, _getState) {
|
||||||
|
return Promise.try(() => {
|
||||||
|
return dispatch(apiCall("GET", "/api/v1/accounts/verify_credentials"));
|
||||||
|
}).then((account) => {
|
||||||
|
return dispatch(user.setAccount(account));
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
};
|
|
@ -48,7 +48,6 @@ module.exports = function generateViews(struct) {
|
||||||
firstRoute = `${base}/${urlSafe(name)}`;
|
firstRoute = `${base}/${urlSafe(name)}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(name, ViewComponent);
|
|
||||||
routes.push((
|
routes.push((
|
||||||
<Route path={url} key={url}>
|
<Route path={url} key={url}>
|
||||||
<ErrorBoundary FallbackComponent={ErrorFallback} onReset={() => {}}>
|
<ErrorBoundary FallbackComponent={ErrorFallback} onReset={() => {}}>
|
||||||
|
|
|
@ -35,6 +35,7 @@ const combinedReducers = combineReducers({
|
||||||
oauth: require("./reducers/oauth").reducer,
|
oauth: require("./reducers/oauth").reducer,
|
||||||
instances: require("./reducers/instances").reducer,
|
instances: require("./reducers/instances").reducer,
|
||||||
temporary: require("./reducers/temporary").reducer,
|
temporary: require("./reducers/temporary").reducer,
|
||||||
|
user: require("./reducers/user").reducer,
|
||||||
});
|
});
|
||||||
|
|
||||||
const persistedReducer = persistReducer(persistConfig, combinedReducers);
|
const persistedReducer = persistReducer(persistConfig, combinedReducers);
|
||||||
|
|
32
web/source/settings-panel/redux/reducers/user.js
Normal file
32
web/source/settings-panel/redux/reducers/user.js
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
/*
|
||||||
|
GoToSocial
|
||||||
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
const {createSlice} = require("@reduxjs/toolkit");
|
||||||
|
|
||||||
|
module.exports = createSlice({
|
||||||
|
name: "user",
|
||||||
|
initialState: {
|
||||||
|
},
|
||||||
|
reducers: {
|
||||||
|
setAccount: (state, {payload}) => {
|
||||||
|
state.account = payload;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
|
@ -20,26 +20,9 @@
|
||||||
|
|
||||||
const Promise = require("bluebird");
|
const Promise = require("bluebird");
|
||||||
const React = require("react");
|
const React = require("react");
|
||||||
const { Route, Switch } = require("wouter");
|
const { Switch } = require("wouter");
|
||||||
|
|
||||||
module.exports = function UserPanel({oauth, routes}) {
|
|
||||||
// const [account, setAccount] = React.useState({});
|
|
||||||
// const [errorMsg, setError] = React.useState("");
|
|
||||||
// const [statusMsg, setStatus] = React.useState("Fetching user info");
|
|
||||||
|
|
||||||
// React.useEffect(() => {
|
|
||||||
// Promise.try(() => {
|
|
||||||
// return oauth.apiRequest("/api/v1/accounts/verify_credentials", "GET");
|
|
||||||
// }).then((json) => {
|
|
||||||
// setAccount(json);
|
|
||||||
// }).catch((e) => {
|
|
||||||
// setError(e.message);
|
|
||||||
// setStatus("");
|
|
||||||
// });
|
|
||||||
// }, [oauth, setAccount, setError, setStatus]);
|
|
||||||
|
|
||||||
// throw new Error("test");
|
|
||||||
|
|
||||||
|
module.exports = function UserPanel({routes}) {
|
||||||
return (
|
return (
|
||||||
<Switch>
|
<Switch>
|
||||||
{routes}
|
{routes}
|
||||||
|
|
|
@ -20,11 +20,14 @@
|
||||||
|
|
||||||
const Promise = require("bluebird");
|
const Promise = require("bluebird");
|
||||||
const React = require("react");
|
const React = require("react");
|
||||||
|
const Redux = require("react-redux");
|
||||||
const { useErrorHandler } = require("react-error-boundary");
|
const { useErrorHandler } = require("react-error-boundary");
|
||||||
|
|
||||||
const Submit = require("../components/submit");
|
const Submit = require("../components/submit");
|
||||||
|
|
||||||
module.exports = function UserProfile({account, oauth}) {
|
module.exports = function UserProfile() {
|
||||||
|
const account = Redux.useSelector(state => state.user.account);
|
||||||
|
|
||||||
const [errorMsg, setError] = React.useState("");
|
const [errorMsg, setError] = React.useState("");
|
||||||
const [statusMsg, setStatus] = React.useState("");
|
const [statusMsg, setStatus] = React.useState("");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue