Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-server
Commits
2674aa54
Commit
2674aa54
authored
4 years ago
by
Henrik tom Wörden
Browse files
Options
Downloads
Plain Diff
Merge branch 'f-server-120' into 'dev'
F server 120 See merge request caosdb/caosdb-server!79
parents
b5e10adf
cb4e837f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!21
Release v0.4.0
Pipeline
#5219
failed
4 years ago
Stage: setup
Stage: test
Stage: deploy
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+2
-0
2 additions, 0 deletions
CHANGELOG.md
src/main/java/org/caosdb/server/accessControl/UserSources.java
+11
-1
11 additions, 1 deletion
...ain/java/org/caosdb/server/accessControl/UserSources.java
with
13 additions
and
1 deletion
CHANGELOG.md
+
2
−
0
View file @
2674aa54
...
...
@@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
*
#120 - Editing entities that were created with a no longer existing user
leads to a server error.
*
#31 - Queries with keywords in the path (e.g.
`... STORED AT 0in.txt`
)
*
#116 - Queries
`FIND [ANY VERSION OF] *`
and
`FIND [ANY VERSION OF] ENTITY`
.
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/caosdb/server/accessControl/UserSources.java
+
11
−
1
View file @
2674aa54
...
...
@@ -79,8 +79,18 @@ public class UserSources extends HashMap<String, UserSource> {
private
static
UserSources
instance
=
new
UserSources
();
/**
* Check whether a user exists.
*
* @param principal - principal of the user.
* @return true iff the user identified by the given {@link Principal} exists.
*/
public
static
boolean
isUserExisting
(
final
Principal
principal
)
{
return
instance
.
get
(
principal
.
getRealm
()).
isUserExisting
(
principal
.
getUsername
());
UserSource
userSource
=
instance
.
get
(
principal
.
getRealm
());
if
(
userSource
!=
null
)
{
return
userSource
.
isUserExisting
(
principal
.
getUsername
());
}
return
false
;
}
private
UserSources
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment