com.boot.auth.starter.AuthWebConfig Maven / Gradle / Ivy
package com.boot.auth.starter;
import com.boot.auth.starter.common.AuthProperties;
import com.boot.auth.starter.common.RestStatus;
import com.boot.auth.starter.service.AuthService;
import com.boot.auth.starter.service.CacheService;
import com.boot.auth.starter.service.LogService;
import com.boot.auth.starter.service.OutJsonService;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.reactive.config.WebFluxConfigurer;
import org.springframework.web.reactive.result.method.annotation.ArgumentResolverConfigurer;
@Configuration
public class AuthWebConfig implements WebFluxConfigurer {
final
CacheService cacheService;
ObjectMapper objectMapper;
AuthProperties authProperties;
AuthService authService;
LogService logService;
OutJsonService outJsonService;
public AuthWebConfig(CacheService cacheService, ObjectMapper objectMapper, AuthProperties authProperties,
AuthService authService, LogService logService, OutJsonService outJsonService) {
this.cacheService = cacheService;
this.objectMapper = objectMapper;
this.authProperties = authProperties;
this.authService = authService;
this.logService = logService;
this.outJsonService = outJsonService;
}
@Override
public void configureArgumentResolvers(ArgumentResolverConfigurer configurer) {
configurer.addCustomResolver(new SessionArgumentResolver());
}
@Bean
SessionResolver sessionResolver() {
return new SessionResolver(cacheService, objectMapper, authProperties.getTokenPrefix());
}
@Bean
String loginRequired() {
return outJsonService.errorOutJson(RestStatus.USER_NOLOGIIN.getMsg(), String.valueOf(RestStatus.USER_NOLOGIIN.value()));
}
@Bean
String tokenInvalid() {
return outJsonService.errorOutJson(RestStatus.USER_TOKEN_INVALID.getMsg(), String.valueOf(RestStatus.USER_TOKEN_INVALID.value()));
}
@Bean
String authNoInvalid() {
return outJsonService.errorOutJson(RestStatus.AUTH_NO.getMsg(), String.valueOf(RestStatus.AUTH_NO.value()));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy