2022-09-29 11:02:41 +01: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-09-29 11:02:41 +01: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-04-13 12:25:10 +01:00
|
|
|
import React from "react";
|
2022-09-29 11:02:41 +01:00
|
|
|
|
2024-04-24 11:12:47 +01:00
|
|
|
import { useMediaCleanupMutation } from "../../../../lib/query";
|
|
|
|
import { useTextInput } from "../../../../lib/form";
|
|
|
|
import { TextInput } from "../../../../components/form/inputs";
|
|
|
|
import MutationButton from "../../../../components/form/mutation-button";
|
2022-09-29 11:02:41 +01:00
|
|
|
|
2024-04-13 12:25:10 +01:00
|
|
|
export default function Cleanup({}) {
|
|
|
|
const daysField = useTextInput("days", { defaultValue: "30" });
|
2022-09-29 11:02:41 +01:00
|
|
|
|
2024-04-13 12:25:10 +01:00
|
|
|
const [mediaCleanup, mediaCleanupResult] = useMediaCleanupMutation();
|
2022-09-29 11:02:41 +01:00
|
|
|
|
2023-09-12 10:43:12 +01:00
|
|
|
function submitCleanup(e) {
|
2023-01-18 13:45:14 +00:00
|
|
|
e.preventDefault();
|
|
|
|
mediaCleanup(daysField.value);
|
|
|
|
}
|
2023-09-12 10:43:12 +01:00
|
|
|
|
2022-09-29 11:02:41 +01:00
|
|
|
return (
|
2023-09-12 10:43:12 +01:00
|
|
|
<form onSubmit={submitCleanup}>
|
|
|
|
<h2>Cleanup</h2>
|
|
|
|
<p>
|
2022-09-29 11:02:41 +01:00
|
|
|
Clean up remote media older than the specified number of days.
|
|
|
|
If the remote instance is still online they will be refetched when needed.
|
|
|
|
Also cleans up unused headers and avatars from the media cache.
|
2023-09-12 10:43:12 +01:00
|
|
|
</p>
|
|
|
|
<TextInput
|
|
|
|
field={daysField}
|
|
|
|
label="Days"
|
|
|
|
type="number"
|
|
|
|
min="0"
|
|
|
|
placeholder="30"
|
|
|
|
/>
|
2024-04-13 12:25:10 +01:00
|
|
|
<MutationButton
|
2024-04-24 11:12:47 +01:00
|
|
|
disabled={!daysField.value}
|
2024-04-13 12:25:10 +01:00
|
|
|
label="Remove old media"
|
|
|
|
result={mediaCleanupResult}
|
|
|
|
/>
|
2023-09-12 10:43:12 +01:00
|
|
|
</form>
|
2022-09-29 11:02:41 +01:00
|
|
|
);
|
2024-04-13 12:25:10 +01:00
|
|
|
}
|