├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── README.md ├── index.html ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── kunal52 │ │ └── springandfirebaseauth │ │ ├── SpringandfirebaseauthApplication.java │ │ ├── auth │ │ ├── SecurityConfig.java │ │ ├── SecurityFilter.java │ │ ├── SecurityService.java │ │ └── models │ │ │ ├── CookieProperties.java │ │ │ ├── Credentials.java │ │ │ ├── FirebaseProperties.java │ │ │ ├── SecurityProperties.java │ │ │ └── User.java │ │ ├── config │ │ ├── FirebaseConfig.java │ │ └── SpringConfig.java │ │ ├── controller │ │ ├── PrivateEndpoint.java │ │ └── PublicEndpoints.java │ │ └── utils │ │ └── CookieUtils.java └── resources │ └── application.yml └── test └── java └── com └── kunal52 └── springandfirebaseauth └── SpringandfirebaseauthApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/index.html -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/kunal52/springandfirebaseauth/SpringandfirebaseauthApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/java/com/kunal52/springandfirebaseauth/SpringandfirebaseauthApplication.java -------------------------------------------------------------------------------- /src/main/java/com/kunal52/springandfirebaseauth/auth/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/java/com/kunal52/springandfirebaseauth/auth/SecurityConfig.java -------------------------------------------------------------------------------- /src/main/java/com/kunal52/springandfirebaseauth/auth/SecurityFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/java/com/kunal52/springandfirebaseauth/auth/SecurityFilter.java -------------------------------------------------------------------------------- /src/main/java/com/kunal52/springandfirebaseauth/auth/SecurityService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/java/com/kunal52/springandfirebaseauth/auth/SecurityService.java -------------------------------------------------------------------------------- /src/main/java/com/kunal52/springandfirebaseauth/auth/models/CookieProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/java/com/kunal52/springandfirebaseauth/auth/models/CookieProperties.java -------------------------------------------------------------------------------- /src/main/java/com/kunal52/springandfirebaseauth/auth/models/Credentials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/java/com/kunal52/springandfirebaseauth/auth/models/Credentials.java -------------------------------------------------------------------------------- /src/main/java/com/kunal52/springandfirebaseauth/auth/models/FirebaseProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/java/com/kunal52/springandfirebaseauth/auth/models/FirebaseProperties.java -------------------------------------------------------------------------------- /src/main/java/com/kunal52/springandfirebaseauth/auth/models/SecurityProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/java/com/kunal52/springandfirebaseauth/auth/models/SecurityProperties.java -------------------------------------------------------------------------------- /src/main/java/com/kunal52/springandfirebaseauth/auth/models/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/java/com/kunal52/springandfirebaseauth/auth/models/User.java -------------------------------------------------------------------------------- /src/main/java/com/kunal52/springandfirebaseauth/config/FirebaseConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/java/com/kunal52/springandfirebaseauth/config/FirebaseConfig.java -------------------------------------------------------------------------------- /src/main/java/com/kunal52/springandfirebaseauth/config/SpringConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/java/com/kunal52/springandfirebaseauth/config/SpringConfig.java -------------------------------------------------------------------------------- /src/main/java/com/kunal52/springandfirebaseauth/controller/PrivateEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/java/com/kunal52/springandfirebaseauth/controller/PrivateEndpoint.java -------------------------------------------------------------------------------- /src/main/java/com/kunal52/springandfirebaseauth/controller/PublicEndpoints.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/java/com/kunal52/springandfirebaseauth/controller/PublicEndpoints.java -------------------------------------------------------------------------------- /src/main/java/com/kunal52/springandfirebaseauth/utils/CookieUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/java/com/kunal52/springandfirebaseauth/utils/CookieUtils.java -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/test/java/com/kunal52/springandfirebaseauth/SpringandfirebaseauthApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kunal52/springbootfirebaseauth/HEAD/src/test/java/com/kunal52/springandfirebaseauth/SpringandfirebaseauthApplicationTests.java --------------------------------------------------------------------------------