mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-12 08:25:44 +01:00
Subversion repository export
Add the repository export function for Subversion repositories. The repository will be exported as dump file which can be downloaded directly or inside a gzip compressed archive.
This commit is contained in:
@@ -35,6 +35,7 @@ import RepositoryDangerZone from "./RepositoryDangerZone";
|
||||
import { getLinks } from "../../modules/indexResource";
|
||||
import { urls } from "@scm-manager/ui-components";
|
||||
import { TranslationProps, withTranslation } from "react-i18next";
|
||||
import ExportRepository from "./ExportRepository";
|
||||
|
||||
type Props = TranslationProps &
|
||||
RouteComponentProps & {
|
||||
@@ -82,6 +83,7 @@ class EditRepo extends React.Component<Props> {
|
||||
this.props.modifyRepo(repo, this.repoModified);
|
||||
}}
|
||||
/>
|
||||
<ExportRepository repository={this.props.repository}/>
|
||||
<ExtensionPoint name="repo-config.route" props={extensionProps} renderAll={true} />
|
||||
<RepositoryDangerZone repository={repository} indexLinks={indexLinks} />
|
||||
</>
|
||||
|
||||
73
scm-ui/ui-webapp/src/repos/containers/ExportRepository.tsx
Normal file
73
scm-ui/ui-webapp/src/repos/containers/ExportRepository.tsx
Normal file
@@ -0,0 +1,73 @@
|
||||
/*
|
||||
* MIT License
|
||||
*
|
||||
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
import React, { FC, useState } from "react";
|
||||
import { Button, Checkbox, Level, Notification, Subtitle } from "@scm-manager/ui-components";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { Link, Repository } from "@scm-manager/ui-types";
|
||||
|
||||
type Props = {
|
||||
repository: Repository;
|
||||
};
|
||||
|
||||
const ExportRepository: FC<Props> = ({ repository }) => {
|
||||
const [t] = useTranslation("repos");
|
||||
const [compressed, setCompressed] = useState(true);
|
||||
const [loading, setLoading] = useState(false);
|
||||
|
||||
const createExportLink = () => {
|
||||
let exportLink = (repository?._links.export as Link).href;
|
||||
if (compressed) {
|
||||
exportLink += "?compressed=true";
|
||||
}
|
||||
return exportLink;
|
||||
};
|
||||
|
||||
if (!repository?._links?.export) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<hr />
|
||||
<Subtitle subtitle={t("export.subtitle")} />
|
||||
<>
|
||||
<Checkbox
|
||||
checked={compressed}
|
||||
label={t("export.compressed.label")}
|
||||
onChange={setCompressed}
|
||||
helpText={t("export.compressed.helpText")}
|
||||
/>
|
||||
<Level
|
||||
right={
|
||||
<a color="primary" href={createExportLink()} onClick={() => setLoading(true)}>
|
||||
<Button color="primary" label={t("export.exportButton")} icon="file-export" />
|
||||
</a>
|
||||
}
|
||||
/>
|
||||
{loading && <Notification onClose={() => setLoading(false)}>{t("export.exportStarted")}</Notification>}
|
||||
</>
|
||||
</>
|
||||
);
|
||||
};
|
||||
export default ExportRepository;
|
||||
Reference in New Issue
Block a user