Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ARSnova Backend
Manage
Activity
Members
Labels
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
Paul-Christian Volkmer
ARSnova Backend
Commits
aa28f9de
Commit
aa28f9de
authored
11 years ago
by
Paul-Christian Volkmer
Browse files
Options
Downloads
Patches
Plain Diff
Fixed NullpointerException and removed obsolete log entries
parent
ca9b572a
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/thm/arsnova/services/UserService.java
+8
-12
8 additions, 12 deletions
src/main/java/de/thm/arsnova/services/UserService.java
with
8 additions
and
12 deletions
src/main/java/de/thm/arsnova/services/UserService.java
+
8
−
12
View file @
aa28f9de
...
...
@@ -66,20 +66,15 @@ public class UserService implements IUserService, InitializingBean, DisposableBe
public
final
void
removeInactiveUsersFromLegacyMap
()
{
List
<
String
>
usernames
=
databaseDao
.
getActiveUsers
(
MAX_USER_INACTIVE_SECONDS
);
Set
<
String
>
affectedSessions
=
new
HashSet
<
String
>();
LOGGER
.
info
(
"Active users in database: {}, active users in memory (user2sessionLegacy): {}"
,
usernames
.
size
(),
user2sessionLegacy
.
size
()
);
for
(
Entry
<
User
,
String
>
e
:
user2sessionLegacy
.
entrySet
())
{
LOGGER
.
debug
(
"entry: {}"
,
e
);
User
key
=
e
.
getKey
();
if
(!
usernames
.
contains
(
key
.
getUsername
()))
{
if
(
usernames
!=
null
&&
!
usernames
.
contains
(
key
.
getUsername
()))
{
if
(
null
!=
e
.
getValue
())
{
affectedSessions
.
add
(
e
.
getValue
());
}
else
{
LOGGER
.
warn
(
"Session for user {} is null"
,
key
);
}
LOGGER
.
debug
(
"Removing user {} from user2sessionLegacy"
,
e
.
getKey
());
user2sessionLegacy
.
remove
(
e
.
getKey
());
}
}
...
...
@@ -150,11 +145,13 @@ public class UserService implements IUserService, InitializingBean, DisposableBe
@Override
public
boolean
isUserInSession
(
User
user
,
String
keyword
)
{
if
(
keyword
==
null
)
if
(
keyword
==
null
)
{
return
false
;
}
String
session
=
user2sessionLegacy
.
get
(
user
);
if
(
session
==
null
)
if
(
session
==
null
)
{
return
false
;
}
return
keyword
.
equals
(
session
);
}
...
...
@@ -184,9 +181,9 @@ public class UserService implements IUserService, InitializingBean, DisposableBe
@Transactional
(
isolation
=
Isolation
.
READ_COMMITTED
)
public
void
addCurrentUserToSessionMap
(
String
keyword
)
{
User
user
=
getCurrentUser
();
if
(
user
==
null
)
if
(
user
==
null
)
{
throw
new
UnauthorizedException
();
LOGGER
.
info
(
"Mapping user "
+
user
.
getUsername
()
+
" to session "
+
keyword
+
" [legacy]."
);
}
user2sessionLegacy
.
put
(
user
,
keyword
);
}
...
...
@@ -194,7 +191,6 @@ public class UserService implements IUserService, InitializingBean, DisposableBe
@Transactional
(
isolation
=
Isolation
.
READ_COMMITTED
)
public
void
addUserToSessionBySocketId
(
UUID
socketId
,
String
keyword
)
{
User
user
=
socketid2user
.
get
(
socketId
);
LOGGER
.
info
(
"Mapping user "
+
user
.
getUsername
()
+
" to session "
+
keyword
+
"."
);
user2session
.
put
(
user
,
keyword
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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