forked from keycloak/keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparation for moving User Storage SPI
- Introduction of new AdminRealmResource SPI - Moving handler of /realm/{realm}/user-storage into model/legacy-service - session.users() and userStorageManager() moved refers legacy module IMPORTANT: Broken as UserStorageSyncManager is not yet moved
- Loading branch information
Showing
37 changed files
with
622 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
.../src/main/java/org/keycloak/services/scheduled/ClearExpiredClientInitialAccessTokens.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Copyright 2017 Red Hat, Inc. and/or its affiliates | ||
* and other contributors as indicated by the @author tags. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.keycloak.services.scheduled; | ||
|
||
import org.keycloak.models.KeycloakSession; | ||
import org.keycloak.timer.ScheduledTask; | ||
|
||
/** | ||
* @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a> | ||
*/ | ||
public class ClearExpiredClientInitialAccessTokens implements ScheduledTask { | ||
|
||
@Override | ||
public void run(KeycloakSession session) { | ||
session.realms().removeExpiredClientInitialAccess(); | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
model/legacy-private/src/main/java/org/keycloak/services/scheduled/ClearExpiredEvents.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* Copyright 2016 Red Hat, Inc. and/or its affiliates | ||
* and other contributors as indicated by the @author tags. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.keycloak.services.scheduled; | ||
|
||
import org.jboss.logging.Logger; | ||
import org.keycloak.common.util.Time; | ||
import org.keycloak.events.EventStoreProvider; | ||
import org.keycloak.models.KeycloakSession; | ||
import org.keycloak.timer.ScheduledTask; | ||
|
||
/** | ||
* @author <a href="mailto:sthorger@redhat.com">Stian Thorgersen</a> | ||
*/ | ||
public class ClearExpiredEvents implements ScheduledTask { | ||
|
||
protected static final Logger logger = Logger.getLogger(ClearExpiredEvents.class); | ||
|
||
@Override | ||
public void run(KeycloakSession session) { | ||
long currentTimeMillis = Time.currentTimeMillis(); | ||
|
||
EventStoreProvider eventStore = session.getProvider(EventStoreProvider.class); | ||
if (eventStore != null) { | ||
eventStore.clearExpiredEvents(); | ||
} | ||
|
||
long took = Time.currentTimeMillis() - currentTimeMillis; | ||
logger.debugf("ClearExpiredEvents finished in %d ms", took); | ||
} | ||
|
||
} |
45 changes: 45 additions & 0 deletions
45
...egacy-private/src/main/java/org/keycloak/services/scheduled/ClearExpiredUserSessions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Copyright 2016 Red Hat, Inc. and/or its affiliates | ||
* and other contributors as indicated by the @author tags. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.keycloak.services.scheduled; | ||
|
||
import org.jboss.logging.Logger; | ||
import org.keycloak.common.util.Time; | ||
import org.keycloak.models.KeycloakSession; | ||
import org.keycloak.timer.ScheduledTask; | ||
|
||
/** | ||
* @author <a href="mailto:sthorger@redhat.com">Stian Thorgersen</a> | ||
*/ | ||
public class ClearExpiredUserSessions implements ScheduledTask { | ||
|
||
protected static final Logger logger = Logger.getLogger(ClearExpiredUserSessions.class); | ||
|
||
public static final String TASK_NAME = "ClearExpiredUserSessions"; | ||
|
||
@Override | ||
public void run(KeycloakSession session) { | ||
long currentTimeMillis = Time.currentTimeMillis(); | ||
|
||
session.authenticationSessions().removeAllExpired(); | ||
session.sessions().removeAllExpired(); | ||
|
||
long took = Time.currentTimeMillis() - currentTimeMillis; | ||
logger.debugf("ClearExpiredUserSessions finished in %d ms", took); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.