Package org.opengrok.web
Class ProjectHelper
java.lang.Object
org.opengrok.web.ProjectHelper
Preprocessing of projects, repositories and groups for the UI.
- Author:
- Krystof Tulinger
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
cleanup
(PageConfig cfg) static ProjectHelper
getInstance
(PageConfig cfg) Object of project helper should be ONLY obtained by calling PageConfig#getProjectHelper.getProjects
(Group g) Get repository info list for particular project.Get repository info list for particular project.boolean
hasAllowedSubgroup
(Group group) Checks if given group contains a subgroup which is allowed by the AuthorizationFramework.boolean
hasFavourite
(Group group) Checks if given group contains a favourite project.boolean
Checks if there is a favourite project in ungrouped projects.boolean
isFavourite
(Project project) Checks if the project is a favourite project.
-
Method Details
-
getInstance
Object of project helper should be ONLY obtained by calling PageConfig#getProjectHelper.- Parameters:
cfg
- current page config- Returns:
- instance of ProjectHelper
- See Also:
-
getRepositoryInfo
Get repository info list for particular project. A copy of the list is returned always to allow concurrent modifications of the list in the caller. The items in the list shall not be modified concurrently, though.- Parameters:
p
- the project for which we find the repository info list- Returns:
- Copy of a list of repository info or empty list if no info is found
-
getSortedRepositoryInfo
Get repository info list for particular project. A copy of the list is returned always to allow concurrent modifications of the list in the caller. The items in the list shall not be modified concurrently, though. This list is sorted with respectREPOSITORY_NAME_COMPARATOR
.- Parameters:
p
- the project for which we find the repository info list- Returns:
- Copy of a list of repository info or empty list if no info is found
-
getGroups
- Returns:
- filtered groups
-
getProjects
- Returns:
- filtered ungrouped projects
-
getRepositories
- Returns:
- filtered ungrouped repositories
-
getProjects
- Parameters:
g
- group- Returns:
- filtered group's projects
-
getRepositories
- Parameters:
g
- group- Returns:
- filtered group's repositories
-
getGroupedProjects
- Returns:
- filtered grouped projects
-
getGroupedRepositories
- Returns:
- filtered grouped repositories
-
getUngroupedProjects
- Returns:
- filtered ungrouped projects
- See Also:
-
getUngroupedRepositories
- Returns:
- filtered ungrouped projects
- See Also:
-
getAllGrouped
- Returns:
- filtered projects and repositories
-
getAllGrouped
- Parameters:
g
- group- Returns:
- filtered set of all projects and repositories in group g
-
getAllUngrouped
- Returns:
- filtered set of all projects and repositories without group
-
getAllProjects
- Returns:
- filtered set of all projects and repositories no matter if grouped or ungrouped
-
getSubgroups
- Parameters:
g
- group- Returns:
- filtered set of subgroups
-
hasAllowedSubgroup
Checks if given group contains a subgroup which is allowed by the AuthorizationFramework. This should be used for deciding if this group should be written in the group hierarchy in the resulting html because it contains other allowed groups.- Parameters:
group
- group- Returns:
- true it it has an allowed subgroup
-
hasFavourite
Checks if given group contains a favourite project. Favourite project is a project which is contained in the OpenGrokProject cookie, i. e. it has been searched or viewed by the user. This should by used to determine if this group should be displayed expanded or rolled up.- Parameters:
group
- group- Returns:
- true if it has favourite project
-
isFavourite
Checks if the project is a favourite project.- Parameters:
project
- project- Returns:
- true if it is favourite
-
hasUngroupedFavourite
public boolean hasUngroupedFavourite()Checks if there is a favourite project in ungrouped projects. This should by used to determine if this 'other' section should be displayed expanded or rolled up.- Returns:
- true if there is
-
cleanup
-