| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | /* | 
					
						
							|  |  |  | 	GoToSocial | 
					
						
							| 
									
										
										
										
											2023-03-12 18:49:06 +01:00
										 |  |  | 	Copyright (C) GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | 	SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02: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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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/>.
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | import React from "react"; | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | import { useTextInput } from "../../lib/form"; | 
					
						
							| 
									
										
										
										
											2024-04-24 12:12:47 +02:00
										 |  |  | import useFormSubmit from "../../lib/form/submit"; | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | import { TextInput } from "../../components/form/inputs"; | 
					
						
							| 
									
										
										
										
											2024-04-24 12:12:47 +02:00
										 |  |  | import MutationButton from "../../components/form/mutation-button"; | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | import { useEmailChangeMutation, usePasswordChangeMutation, useUserQuery } from "../../lib/query/user"; | 
					
						
							| 
									
										
										
										
											2024-06-06 15:43:25 +02:00
										 |  |  | import Loading from "../../components/loading"; | 
					
						
							|  |  |  | import { User } from "../../lib/types/user"; | 
					
						
							| 
									
										
										
										
											2024-06-07 16:21:57 +02:00
										 |  |  | import { useInstanceV1Query } from "../../lib/query/gts-api"; | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | export default function EmailPassword() { | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 	return ( | 
					
						
							|  |  |  | 		<> | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | 			<h1>Email & Password Settings</h1> | 
					
						
							| 
									
										
										
										
											2024-06-06 15:43:25 +02:00
										 |  |  | 			<EmailChange /> | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | 			<PasswordChange /> | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 		</> | 
					
						
							|  |  |  | 	); | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | function PasswordChange() { | 
					
						
							| 
									
										
										
										
											2024-06-07 16:21:57 +02:00
										 |  |  | 	// Load instance data.
 | 
					
						
							|  |  |  | 	const { | 
					
						
							|  |  |  | 		data: instance, | 
					
						
							|  |  |  | 		isFetching: isFetchingInstance, | 
					
						
							|  |  |  | 		isLoading: isLoadingInstance | 
					
						
							|  |  |  | 	} = useInstanceV1Query(); | 
					
						
							|  |  |  | 	if (isFetchingInstance || isLoadingInstance) { | 
					
						
							|  |  |  | 		return <Loading />; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (instance === undefined) { | 
					
						
							|  |  |  | 		throw "could not fetch instance"; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return <PasswordChangeForm oidcEnabled={instance.configuration.oidc_enabled} />; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function PasswordChangeForm({ oidcEnabled }: { oidcEnabled?: boolean }) { | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	const form = { | 
					
						
							|  |  |  | 		oldPassword: useTextInput("old_password"), | 
					
						
							| 
									
										
										
										
											2023-02-04 12:40:35 +01:00
										 |  |  | 		newPassword: useTextInput("new_password", { | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 			validator(val) { | 
					
						
							|  |  |  | 				if (val != "" && val == form.oldPassword.value) { | 
					
						
							|  |  |  | 					return "New password same as old password"; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				return ""; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const verifyNewPassword = useTextInput("verifyNewPassword", { | 
					
						
							|  |  |  | 		validator(val) { | 
					
						
							|  |  |  | 			if (val != "" && val != form.newPassword.value) { | 
					
						
							|  |  |  | 				return "Passwords do not match"; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return ""; | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2022-11-19 04:07:51 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-25 18:24:24 +02:00
										 |  |  | 	const [submitForm, result] = useFormSubmit(form, usePasswordChangeMutation()); | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return ( | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 		<form className="change-password" onSubmit={submitForm}> | 
					
						
							| 
									
										
										
										
											2024-04-24 12:12:47 +02:00
										 |  |  | 			<div className="form-section-docs"> | 
					
						
							|  |  |  | 				<h3>Change Password</h3> | 
					
						
							| 
									
										
										
										
											2024-06-07 16:21:57 +02:00
										 |  |  | 				{ oidcEnabled && <p> | 
					
						
							|  |  |  | 					This instance is running with OIDC as its authorization + identity provider. | 
					
						
							|  |  |  | 					<br/> | 
					
						
							|  |  |  | 					This means <strong>you cannot change your password using this settings panel</strong>. | 
					
						
							|  |  |  | 					<br/> | 
					
						
							|  |  |  | 					To change your password, you should instead contact your OIDC provider. | 
					
						
							|  |  |  | 				</p> } | 
					
						
							| 
									
										
										
										
											2024-04-24 12:12:47 +02:00
										 |  |  | 				<a | 
					
						
							|  |  |  | 					href="https://docs.gotosocial.org/en/latest/user_guide/settings/#password-change" | 
					
						
							|  |  |  | 					target="_blank" | 
					
						
							|  |  |  | 					className="docslink" | 
					
						
							|  |  |  | 					rel="noreferrer" | 
					
						
							|  |  |  | 				> | 
					
						
							|  |  |  | 					Learn more about this (opens in a new tab) | 
					
						
							|  |  |  | 				</a> | 
					
						
							|  |  |  | 			</div> | 
					
						
							| 
									
										
										
										
											2024-06-07 16:21:57 +02:00
										 |  |  | 			 | 
					
						
							| 
									
										
										
										
											2023-02-06 09:19:56 +01:00
										 |  |  | 			<TextInput | 
					
						
							|  |  |  | 				type="password" | 
					
						
							|  |  |  | 				name="password" | 
					
						
							|  |  |  | 				field={form.oldPassword} | 
					
						
							|  |  |  | 				label="Current password" | 
					
						
							| 
									
										
										
										
											2024-04-24 12:12:47 +02:00
										 |  |  | 				autoComplete="current-password" | 
					
						
							| 
									
										
										
										
											2024-06-07 16:21:57 +02:00
										 |  |  | 				disabled={oidcEnabled} | 
					
						
							| 
									
										
										
										
											2023-02-06 09:19:56 +01:00
										 |  |  | 			/> | 
					
						
							|  |  |  | 			<TextInput | 
					
						
							|  |  |  | 				type="password" | 
					
						
							|  |  |  | 				name="newPassword" | 
					
						
							|  |  |  | 				field={form.newPassword} | 
					
						
							|  |  |  | 				label="New password" | 
					
						
							| 
									
										
										
										
											2024-04-24 12:12:47 +02:00
										 |  |  | 				autoComplete="new-password" | 
					
						
							| 
									
										
										
										
											2024-06-07 16:21:57 +02:00
										 |  |  | 				disabled={oidcEnabled} | 
					
						
							| 
									
										
										
										
											2023-02-06 09:19:56 +01:00
										 |  |  | 			/> | 
					
						
							|  |  |  | 			<TextInput | 
					
						
							|  |  |  | 				type="password" | 
					
						
							|  |  |  | 				name="confirmNewPassword" | 
					
						
							|  |  |  | 				field={verifyNewPassword} | 
					
						
							|  |  |  | 				label="Confirm new password" | 
					
						
							| 
									
										
										
										
											2024-04-24 12:12:47 +02:00
										 |  |  | 				autoComplete="new-password" | 
					
						
							| 
									
										
										
										
											2024-06-07 16:21:57 +02:00
										 |  |  | 				disabled={oidcEnabled} | 
					
						
							| 
									
										
										
										
											2023-02-06 09:19:56 +01:00
										 |  |  | 			/> | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | 			<MutationButton | 
					
						
							|  |  |  | 				label="Change password" | 
					
						
							|  |  |  | 				result={result} | 
					
						
							| 
									
										
										
										
											2024-06-07 16:21:57 +02:00
										 |  |  | 				disabled={oidcEnabled ?? false} | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | 			/> | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 		</form> | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 	); | 
					
						
							| 
									
										
										
										
											2024-04-24 12:12:47 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2024-06-06 15:43:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | function EmailChange() { | 
					
						
							| 
									
										
										
										
											2024-06-07 16:21:57 +02:00
										 |  |  | 	// Load instance data.
 | 
					
						
							|  |  |  | 	const { | 
					
						
							|  |  |  | 		data: instance, | 
					
						
							|  |  |  | 		isFetching: isFetchingInstance, | 
					
						
							|  |  |  | 		isLoading: isLoadingInstance | 
					
						
							|  |  |  | 	} = useInstanceV1Query(); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	// Load user data.
 | 
					
						
							|  |  |  | 	const { | 
					
						
							|  |  |  | 		data: user, | 
					
						
							|  |  |  | 		isFetching: isFetchingUser, | 
					
						
							|  |  |  | 		isLoading: isLoadingUser | 
					
						
							|  |  |  | 	} = useUserQuery(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ( | 
					
						
							|  |  |  | 		(isFetchingInstance || isLoadingInstance) || | 
					
						
							|  |  |  | 		(isFetchingUser || isLoadingUser) | 
					
						
							|  |  |  | 	) { | 
					
						
							| 
									
										
										
										
											2024-06-06 15:43:25 +02:00
										 |  |  | 		return <Loading />; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (user === undefined) { | 
					
						
							|  |  |  | 		throw "could not fetch user"; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-07 16:21:57 +02:00
										 |  |  | 	if (instance === undefined) { | 
					
						
							|  |  |  | 		throw "could not fetch instance"; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return <EmailChangeForm user={user} oidcEnabled={instance.configuration.oidc_enabled} />; | 
					
						
							| 
									
										
										
										
											2024-06-06 15:43:25 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-07 16:21:57 +02:00
										 |  |  | function EmailChangeForm({user, oidcEnabled}: { user: User, oidcEnabled?: boolean }) { | 
					
						
							| 
									
										
										
										
											2024-06-06 15:43:25 +02:00
										 |  |  | 	const form = { | 
					
						
							|  |  |  | 		currentEmail: useTextInput("current_email", { | 
					
						
							|  |  |  | 			defaultValue: user.email, | 
					
						
							|  |  |  | 			nosubmit: true | 
					
						
							|  |  |  | 		}), | 
					
						
							|  |  |  | 		newEmail: useTextInput("new_email", { | 
					
						
							|  |  |  | 			validator: (value: string | undefined) => { | 
					
						
							|  |  |  | 				if (!value) { | 
					
						
							|  |  |  | 					return ""; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (value.toLowerCase() === user.email?.toLowerCase()) { | 
					
						
							|  |  |  | 					return "cannot change to your existing address"; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (value.toLowerCase() === user.unconfirmed_email?.toLowerCase()) { | 
					
						
							|  |  |  | 					return "you already have a pending email address change to this address"; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				return ""; | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		}), | 
					
						
							|  |  |  | 		password: useTextInput("password"), | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	const [submitForm, result] = useFormSubmit(form, useEmailChangeMutation()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ( | 
					
						
							|  |  |  | 		<form className="change-email" onSubmit={submitForm}> | 
					
						
							|  |  |  | 			<div className="form-section-docs"> | 
					
						
							|  |  |  | 				<h3>Change Email</h3> | 
					
						
							| 
									
										
										
										
											2024-06-07 16:21:57 +02:00
										 |  |  | 				{ oidcEnabled && <p> | 
					
						
							|  |  |  | 					This instance is running with OIDC as its authorization + identity provider. | 
					
						
							|  |  |  | 					<br/> | 
					
						
							|  |  |  | 					You can still change your email address using this settings panel, | 
					
						
							|  |  |  | 					but it will only affect which address GoToSocial uses to contact you, | 
					
						
							|  |  |  | 					not the email address you use to log in. | 
					
						
							|  |  |  | 					<br/> | 
					
						
							|  |  |  | 					To change the email address you use to log in, contact your OIDC provider. | 
					
						
							|  |  |  | 				</p> } | 
					
						
							| 
									
										
										
										
											2024-06-06 15:43:25 +02:00
										 |  |  | 				<a | 
					
						
							|  |  |  | 					href="https://docs.gotosocial.org/en/latest/user_guide/settings/#email-change" | 
					
						
							|  |  |  | 					target="_blank" | 
					
						
							|  |  |  | 					className="docslink" | 
					
						
							|  |  |  | 					rel="noreferrer" | 
					
						
							|  |  |  | 				> | 
					
						
							|  |  |  | 					Learn more about this (opens in a new tab) | 
					
						
							|  |  |  | 				</a> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-07 16:21:57 +02:00
										 |  |  | 			{ (user.unconfirmed_email && user.unconfirmed_email !== user.email) && <> | 
					
						
							| 
									
										
										
										
											2024-06-06 15:43:25 +02:00
										 |  |  | 				<div className="info"> | 
					
						
							|  |  |  | 					<i className="fa fa-fw fa-info-circle" aria-hidden="true"></i> | 
					
						
							|  |  |  | 					<b> | 
					
						
							|  |  |  | 						You currently have a pending email address | 
					
						
							|  |  |  | 						change to the address: {user.unconfirmed_email} | 
					
						
							|  |  |  | 						<br /> | 
					
						
							|  |  |  | 						To confirm {user.unconfirmed_email} as your new | 
					
						
							|  |  |  | 						address for this account, please check your email inbox. | 
					
						
							|  |  |  | 					</b> | 
					
						
							|  |  |  | 				</div> | 
					
						
							|  |  |  | 			</> } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			<TextInput | 
					
						
							|  |  |  | 				type="email" | 
					
						
							|  |  |  | 				name="current-email" | 
					
						
							|  |  |  | 				field={form.currentEmail} | 
					
						
							|  |  |  | 				label="Current email address" | 
					
						
							|  |  |  | 				autoComplete="none" | 
					
						
							|  |  |  | 				disabled={true} | 
					
						
							|  |  |  | 			/> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			<TextInput | 
					
						
							|  |  |  | 				type="password" | 
					
						
							|  |  |  | 				name="password" | 
					
						
							|  |  |  | 				field={form.password} | 
					
						
							|  |  |  | 				label="Current password" | 
					
						
							|  |  |  | 				autoComplete="current-password" | 
					
						
							|  |  |  | 			/> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			<TextInput | 
					
						
							|  |  |  | 				type="email" | 
					
						
							|  |  |  | 				name="new-email" | 
					
						
							|  |  |  | 				field={form.newEmail} | 
					
						
							|  |  |  | 				label="New email address" | 
					
						
							|  |  |  | 				autoComplete="none" | 
					
						
							|  |  |  | 			/> | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			<MutationButton | 
					
						
							|  |  |  | 				disabled={!form.password || !form.newEmail || !form.newEmail.valid} | 
					
						
							|  |  |  | 				label="Change email address" | 
					
						
							|  |  |  | 				result={result} | 
					
						
							|  |  |  | 			/> | 
					
						
							|  |  |  | 		</form> | 
					
						
							|  |  |  | 	); | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | } |