Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow internal privilege evaluation external URLs #281

Merged
merged 1 commit into from Jul 4, 2015

Conversation

mrjoel
Copy link
Collaborator

@mrjoel mrjoel commented Jun 30, 2015

commit c20191f enabled support
for hiding internal URLs, but didn't consider that it broke the
evaluation of permissions (used for tickets, etc.), and caused
a NPE on repoUrl.permission when trying to view the TicketPage.

With all internal mechanisms disabled, it would result in the
first URL being external with unknown permissions. This adds an
option to use internal permissions even for external URLs.

Note that this does not grant any additional permissions, but
does offer the option to have gitblit advertise the full set of
what is allowed, even if the external URL imposes additional
restrictions.

@@ -41,8 +41,8 @@ public RepositoryUrl(String url, AccessPermission permission) {
this.permission = permission;
}

public boolean isExternal() {
return permission == null;
public boolean isPermissionKnown() {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would prefer hasPermission()

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated

@mrjoel mrjoel force-pushed the mrjoel-ticketswithexternalurl branch from ef27a88 to 27cd0b5 Compare July 1, 2015 17:22
commit c20191f enabled support
for hiding internal URLs, but didn't consider that it broke the
evaluation of permissions (used for tickets, etc.), and caused
a NPE on repoUrl.permission when trying to view the TicketPage.

With all internal mechanisms disabled, it would result in the
first URL being external with unknown permissions. This adds an
option to use internal permissions even for external URLs.

Note that this does not grant any additional permissions, but
does offer the option to have gitblit advertise the full set of
what is allowed, even if the external URL imposes additional
restrictions.
@mrjoel mrjoel force-pushed the mrjoel-ticketswithexternalurl branch from 27cd0b5 to 1590fd7 Compare July 1, 2015 19:10
gitblit added a commit that referenced this pull request Jul 4, 2015
allow internal privilege evaluation external URLs
@gitblit gitblit merged commit 7c4d074 into gitblit-org:develop Jul 4, 2015
@mrjoel mrjoel deleted the mrjoel-ticketswithexternalurl branch July 5, 2015 15:53
@flaix flaix modified the milestone: 1.7.0 Mar 18, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants