org.grails.web.servlet.mvc.SynchronizerTokensHolder.groovy Maven / Gradle / Ivy
/*
* Copyright 2004-2023 the original author or authors.
*
* 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
*
* https://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.grails.web.servlet.mvc
import java.util.concurrent.CopyOnWriteArraySet
import jakarta.servlet.http.HttpSession
import groovy.transform.CompileStatic
/**
* A token used to handle double-submits.
*
* @author Graeme Rocher
* @since 1.1
*/
@CompileStatic
class SynchronizerTokensHolder implements Serializable {
private static final long serialVersionUID = 1
public static final String HOLDER = 'SYNCHRONIZER_TOKENS_HOLDER'
public static final String TOKEN_KEY = 'SYNCHRONIZER_TOKEN'
public static final String TOKEN_URI = 'SYNCHRONIZER_URI'
Map> currentTokens = [:]
boolean isValid(String url, String token) {
try {
getTokens(url).contains UUID.fromString(token)
}
catch (IllegalArgumentException ignored) {
false
}
}
String generateToken(String url) {
UUID uuid = UUID.randomUUID()
getTokens(url).add(uuid)
uuid
}
void resetToken(String url) {
currentTokens.remove(url)
}
void resetToken(String url, String token) {
if (url && token) {
Set set = getTokens(url)
try {
set.remove UUID.fromString(token)
}
catch (IllegalArgumentException ignored) {
}
if (set.isEmpty()) {
currentTokens.remove(url)
}
}
}
boolean isEmpty() {
currentTokens.isEmpty() || currentTokens.every { String url, Set uuids -> uuids.isEmpty() }
}
protected Set getTokens(String url) {
if (!currentTokens.containsKey(url)) {
currentTokens[url] = new CopyOnWriteArraySet()
}
currentTokens[url]
}
static SynchronizerTokensHolder store(HttpSession session) {
SynchronizerTokensHolder tokensHolder = session.getAttribute(HOLDER) as SynchronizerTokensHolder
if (!tokensHolder) {
tokensHolder = new SynchronizerTokensHolder()
session.setAttribute(HOLDER, tokensHolder)
}
tokensHolder
}
}