2021-08-16 12:19:44 +07:00
|
|
|
package controllers;
|
|
|
|
|
|
|
|
import com.typesafe.config.Config;
|
2022-08-23 09:54:34 -07:00
|
|
|
import java.net.URLEncoder;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
2021-08-16 12:19:44 +07:00
|
|
|
import org.pac4j.play.LogoutController;
|
|
|
|
import play.mvc.Result;
|
|
|
|
|
|
|
|
import javax.inject.Inject;
|
|
|
|
import java.util.concurrent.ExecutionException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Responsible for handling logout logic with oidc providers
|
|
|
|
*/
|
2022-08-23 09:54:34 -07:00
|
|
|
@Slf4j
|
2021-08-16 12:19:44 +07:00
|
|
|
public class CentralLogoutController extends LogoutController {
|
2022-10-31 16:39:26 -07:00
|
|
|
private static final String DEFAULT_BASE_URL_PATH = "/login";
|
2021-08-16 12:19:44 +07:00
|
|
|
private static Boolean _isOidcEnabled = false;
|
|
|
|
|
|
|
|
@Inject
|
|
|
|
public CentralLogoutController(Config config) {
|
|
|
|
_isOidcEnabled = config.hasPath("auth.oidc.enabled") && config.getBoolean("auth.oidc.enabled");
|
|
|
|
|
2022-10-31 16:39:26 -07:00
|
|
|
setDefaultUrl(DEFAULT_BASE_URL_PATH);
|
|
|
|
setLogoutUrlPattern(DEFAULT_BASE_URL_PATH + ".*");
|
2021-08-16 12:19:44 +07:00
|
|
|
setLocalLogout(true);
|
|
|
|
setCentralLogout(true);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* logout() method should not be called if oidc is not enabled
|
|
|
|
*/
|
|
|
|
public Result executeLogout() throws ExecutionException, InterruptedException {
|
|
|
|
if (_isOidcEnabled) {
|
2022-08-23 09:54:34 -07:00
|
|
|
try {
|
2022-09-21 14:21:55 -07:00
|
|
|
return logout().toCompletableFuture().get().withNewSession();
|
2022-08-23 09:54:34 -07:00
|
|
|
} catch (Exception e) {
|
|
|
|
log.error("Caught exception while attempting to perform SSO logout! It's likely that SSO integration is mis-configured.", e);
|
|
|
|
return redirect(
|
|
|
|
String.format("/login?error_msg=%s",
|
|
|
|
URLEncoder.encode("Failed to sign out using Single Sign-On provider. Please contact your DataHub Administrator, "
|
|
|
|
+ "or refer to server logs for more information.")));
|
|
|
|
}
|
2021-08-16 12:19:44 +07:00
|
|
|
}
|
2022-10-31 16:39:26 -07:00
|
|
|
return redirect(DEFAULT_BASE_URL_PATH).withNewSession();
|
2021-08-16 12:19:44 +07:00
|
|
|
}
|
|
|
|
}
|