mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-05-06 16:36:48 +02:00
Improve repository information page (#1636)
Only show relevant information for repository on repository information page. The initialization code example is only shown if the repository is still empty.
This commit is contained in:
@@ -24,16 +24,19 @@
|
||||
|
||||
package sonia.scm.api.v2.resources;
|
||||
|
||||
import com.google.common.base.Strings;
|
||||
import io.swagger.v3.oas.annotations.Operation;
|
||||
import io.swagger.v3.oas.annotations.media.Content;
|
||||
import io.swagger.v3.oas.annotations.media.ExampleObject;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import io.swagger.v3.oas.annotations.parameters.RequestBody;
|
||||
import io.swagger.v3.oas.annotations.responses.ApiResponse;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import sonia.scm.repository.GitRepositoryConfig;
|
||||
import sonia.scm.repository.GitRepositoryHandler;
|
||||
import sonia.scm.repository.NamespaceAndName;
|
||||
import sonia.scm.repository.Repository;
|
||||
import sonia.scm.repository.RepositoryManager;
|
||||
@@ -61,12 +64,14 @@ public class GitRepositoryConfigResource {
|
||||
private final GitRepositoryConfigMapper repositoryConfigMapper;
|
||||
private final RepositoryManager repositoryManager;
|
||||
private final GitRepositoryConfigStoreProvider gitRepositoryConfigStoreProvider;
|
||||
private final GitRepositoryHandler repositoryHandler;
|
||||
|
||||
@Inject
|
||||
public GitRepositoryConfigResource(GitRepositoryConfigMapper repositoryConfigMapper, RepositoryManager repositoryManager, GitRepositoryConfigStoreProvider gitRepositoryConfigStoreProvider) {
|
||||
public GitRepositoryConfigResource(GitRepositoryConfigMapper repositoryConfigMapper, RepositoryManager repositoryManager, GitRepositoryConfigStoreProvider gitRepositoryConfigStoreProvider, GitRepositoryHandler repositoryHandler) {
|
||||
this.repositoryConfigMapper = repositoryConfigMapper;
|
||||
this.repositoryManager = repositoryManager;
|
||||
this.gitRepositoryConfigStoreProvider = gitRepositoryConfigStoreProvider;
|
||||
this.repositoryHandler = repositoryHandler;
|
||||
}
|
||||
|
||||
@GET
|
||||
@@ -100,12 +105,55 @@ public class GitRepositoryConfigResource {
|
||||
public Response getRepositoryConfig(@PathParam("namespace") String namespace, @PathParam("name") String name) {
|
||||
Repository repository = getRepository(namespace, name);
|
||||
RepositoryPermissions.read(repository).check();
|
||||
ConfigurationStore<GitRepositoryConfig> repositoryConfigStore = getStore(repository);
|
||||
GitRepositoryConfig config = repositoryConfigStore.get();
|
||||
GitRepositoryConfig config = getStore(repository).get();
|
||||
GitRepositoryConfigDto dto = repositoryConfigMapper.map(config, repository);
|
||||
return Response.ok(dto).build();
|
||||
}
|
||||
|
||||
@GET
|
||||
@Path("default-branch")
|
||||
@Produces(GitVndMediaType.GIT_REPOSITORY_DEFAULT_BRANCH)
|
||||
@Operation(summary = "Git repository default branch", description = "Returns the default branch for the repository.", tags = "Git")
|
||||
@ApiResponse(
|
||||
responseCode = "200",
|
||||
description = "success",
|
||||
content = @Content(
|
||||
mediaType = GitVndMediaType.GIT_REPOSITORY_CONFIG,
|
||||
schema = @Schema(implementation = GitRepositoryConfigDto.class)
|
||||
)
|
||||
)
|
||||
@ApiResponse(responseCode = "401", description = "not authenticated / invalid credentials")
|
||||
@ApiResponse(responseCode = "403", description = "not authorized, the current user has no privileges to read the repository config")
|
||||
@ApiResponse(
|
||||
responseCode = "404",
|
||||
description = "not found, no repository with the specified namespace and name available",
|
||||
content = @Content(
|
||||
mediaType = VndMediaType.ERROR_TYPE,
|
||||
schema = @Schema(implementation = ErrorDto.class)
|
||||
))
|
||||
@ApiResponse(
|
||||
responseCode = "500",
|
||||
description = "internal server error",
|
||||
content = @Content(
|
||||
mediaType = VndMediaType.ERROR_TYPE,
|
||||
schema = @Schema(implementation = ErrorDto.class)
|
||||
))
|
||||
public Response getDefaultBranch(@PathParam("namespace") String namespace, @PathParam("name") String name) {
|
||||
Repository repository = getRepository(namespace, name);
|
||||
RepositoryPermissions.read(repository).check();
|
||||
GitRepositoryConfig config = getStore(repository).get();
|
||||
|
||||
String defaultBranch = "main";
|
||||
|
||||
if (!Strings.isNullOrEmpty(config.getDefaultBranch())) {
|
||||
defaultBranch = config.getDefaultBranch();
|
||||
} else if (!Strings.isNullOrEmpty(repositoryHandler.getConfig().getDefaultBranch())) {
|
||||
defaultBranch = repositoryHandler.getConfig().getDefaultBranch();
|
||||
}
|
||||
|
||||
return Response.ok(new DefaultBranchDto(defaultBranch)).build();
|
||||
}
|
||||
|
||||
@PUT
|
||||
@Path("/")
|
||||
@Consumes(GitVndMediaType.GIT_REPOSITORY_CONFIG)
|
||||
@@ -167,4 +215,10 @@ public class GitRepositoryConfigResource {
|
||||
private ConfigurationStore<GitRepositoryConfig> getStore(Repository repository) {
|
||||
return gitRepositoryConfigStoreProvider.get(repository);
|
||||
}
|
||||
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public static class DefaultBranchDto {
|
||||
private final String defaultBranch;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
package sonia.scm.api.v2.resources;
|
||||
|
||||
import sonia.scm.plugin.Extension;
|
||||
import sonia.scm.repository.Repository;
|
||||
import sonia.scm.repository.RepositoryPermissions;
|
||||
|
||||
import javax.inject.Inject;
|
||||
import javax.inject.Provider;
|
||||
|
||||
@Extension
|
||||
@Enrich(Repository.class)
|
||||
public class RepositoryLinkEnricher implements HalEnricher {
|
||||
|
||||
private final Provider<ScmPathInfoStore> scmPathInfoStore;
|
||||
|
||||
@Inject
|
||||
public RepositoryLinkEnricher(Provider<ScmPathInfoStore> scmPathInfoStore) {
|
||||
this.scmPathInfoStore = scmPathInfoStore;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void enrich(HalEnricherContext context, HalAppender appender) {
|
||||
Repository repository = context.oneRequireByType(Repository.class);
|
||||
|
||||
LinkBuilder linkBuilder = new LinkBuilder(scmPathInfoStore.get().get(), GitConfigResource.class, GitRepositoryConfigResource.class);
|
||||
|
||||
if (RepositoryPermissions.read(repository).isPermitted()) {
|
||||
appender.appendLink("defaultBranch", getDefaultBranchLink(repository, linkBuilder));
|
||||
}
|
||||
}
|
||||
|
||||
private String getDefaultBranchLink(Repository repository, LinkBuilder linkBuilder) {
|
||||
return linkBuilder
|
||||
.method("getRepositoryConfig").parameters(repository.getNamespace(), repository.getName())
|
||||
.method("getDefaultBranch").parameters()
|
||||
.href();
|
||||
}
|
||||
}
|
||||
@@ -27,6 +27,7 @@ package sonia.scm.web;
|
||||
public class GitVndMediaType {
|
||||
public static final String GIT_CONFIG = VndMediaType.PREFIX + "gitConfig" + VndMediaType.SUFFIX;
|
||||
public static final String GIT_REPOSITORY_CONFIG = VndMediaType.PREFIX + "gitConfig" + VndMediaType.SUFFIX;
|
||||
public static final String GIT_REPOSITORY_DEFAULT_BRANCH = VndMediaType.PREFIX + "gitDefaultBranch" + VndMediaType.SUFFIX;
|
||||
|
||||
private GitVndMediaType() {
|
||||
}
|
||||
|
||||
@@ -21,57 +21,93 @@
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
import React from "react";
|
||||
import { WithTranslation, withTranslation } from "react-i18next";
|
||||
import { Repository } from "@scm-manager/ui-types";
|
||||
import React, { FC, useEffect, useState } from "react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { Link, Repository } from "@scm-manager/ui-types";
|
||||
import { apiClient } from "@scm-manager/ui-components";
|
||||
|
||||
type Props = WithTranslation & {
|
||||
type Props = {
|
||||
url: string;
|
||||
repository: Repository;
|
||||
};
|
||||
|
||||
class CloneInformation extends React.Component<Props> {
|
||||
render() {
|
||||
const { url, repository, t } = this.props;
|
||||
const CloneInformation: FC<Props> = ({ url, repository }) => {
|
||||
const [t] = useTranslation("plugins");
|
||||
const [defaultBranch, setDefaultBranch] = useState<string>("main");
|
||||
const [emptyRepository, setEmptyRepository] = useState<boolean>();
|
||||
|
||||
return (
|
||||
<div>
|
||||
<h4>{t("scm-git-plugin.information.clone")}</h4>
|
||||
<pre>
|
||||
<code>git clone {url}</code>
|
||||
</pre>
|
||||
<h4>{t("scm-git-plugin.information.create")}</h4>
|
||||
<pre>
|
||||
<code>
|
||||
git init {repository.name}
|
||||
<br />
|
||||
cd {repository.name}
|
||||
<br />
|
||||
echo "# {repository.name}
|
||||
" > README.md
|
||||
<br />
|
||||
git add README.md
|
||||
<br />
|
||||
git commit -m "Add readme"
|
||||
<br />
|
||||
git remote add origin {url}
|
||||
<br />
|
||||
git push -u origin master
|
||||
<br />
|
||||
</code>
|
||||
</pre>
|
||||
<h4>{t("scm-git-plugin.information.replace")}</h4>
|
||||
<pre>
|
||||
<code>
|
||||
git remote add origin {url}
|
||||
<br />
|
||||
git push -u origin master
|
||||
<br />
|
||||
</code>
|
||||
</pre>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
useEffect(() => {
|
||||
if (repository) {
|
||||
apiClient
|
||||
.get((repository._links.changesets as Link).href + "?limit=1")
|
||||
.then(r => r.json())
|
||||
.then(result => {
|
||||
const empty = result._embedded.changesets.length === 0;
|
||||
setEmptyRepository(empty);
|
||||
});
|
||||
}
|
||||
}, [repository]);
|
||||
|
||||
export default withTranslation("plugins")(CloneInformation);
|
||||
useEffect(() => {
|
||||
if (repository) {
|
||||
apiClient
|
||||
.get((repository._links.defaultBranch as Link).href)
|
||||
.then(r => r.json())
|
||||
.then(r => r.defaultBranch && setDefaultBranch(r.defaultBranch));
|
||||
}
|
||||
}, [repository]);
|
||||
|
||||
return (
|
||||
<div>
|
||||
<h4>{t("scm-git-plugin.information.clone")}</h4>
|
||||
<pre>
|
||||
<code>
|
||||
git clone {url}
|
||||
<br />
|
||||
cd {repository.name}
|
||||
{emptyRepository && (
|
||||
<>
|
||||
<br />
|
||||
git checkout -b {defaultBranch}
|
||||
</>
|
||||
)}
|
||||
</code>
|
||||
</pre>
|
||||
{emptyRepository && (
|
||||
<>
|
||||
<h4>{t("scm-git-plugin.information.create")}</h4>
|
||||
<pre>
|
||||
<code>
|
||||
git init {repository.name}
|
||||
<br />
|
||||
cd {repository.name}
|
||||
<br />
|
||||
git checkout -b {defaultBranch}
|
||||
<br />
|
||||
echo "# {repository.name}
|
||||
" > README.md
|
||||
<br />
|
||||
git add README.md
|
||||
<br />
|
||||
git commit -m "Add readme"
|
||||
<br />
|
||||
git remote add origin {url}
|
||||
<br />
|
||||
git push -u origin {defaultBranch}
|
||||
<br />
|
||||
</code>
|
||||
</pre>
|
||||
</>
|
||||
)}
|
||||
<h4>{t("scm-git-plugin.information.replace")}</h4>
|
||||
<pre>
|
||||
<code>
|
||||
git remote add origin {url}
|
||||
<br />
|
||||
</code>
|
||||
</pre>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default CloneInformation;
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
import React from "react";
|
||||
import { binder } from "@scm-manager/ui-extensions";
|
||||
import ProtocolInformation from "./ProtocolInformation";
|
||||
import GitAvatar from "./GitAvatar";
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"information": {
|
||||
"clone": "Repository klonen",
|
||||
"create": "Neues Repository erstellen",
|
||||
"replace": "Ein bestehendes Repository aktualisieren",
|
||||
"replace": "Quelle zum bestehenden Repository hinzufügen",
|
||||
"fetch": "Remote-Änderungen herunterladen",
|
||||
"checkout": "Branch wechseln",
|
||||
"checkoutTag": "Tag als neuen Branch auschecken",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"information": {
|
||||
"clone": "Clone the Repository",
|
||||
"create": "Create a New Repository",
|
||||
"replace": "Push an Existing Repository",
|
||||
"replace": "Add Remote Origin to an Existing Repository",
|
||||
"fetch": "Get Remote Changes",
|
||||
"checkout": "Switch Branch",
|
||||
"checkoutTag": "Checkout Tag as New Branch",
|
||||
|
||||
Reference in New Issue
Block a user