Skip to content

Commit 867f722

Browse files
committed
Updated project build and dependencies
- Kotlin 1.3 -> 1.8 - Java 8 -> 17 - Gradle 6 -> 8 - Github Actions latest versions (removing deprecated Node 12 calls) - Spring 5 -> 6 - Added several build features - ktlint for linting - dependencyUpdates for easier updating - dokka Javadoc-compatible documentation
1 parent 5f2c241 commit 867f722

26 files changed

+591
-511
lines changed

.editorconfig

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ root = true
88
# Change these settings to your own preference
99
indent_style = space
1010
indent_size = 4
11-
continuation_indent_size = 8
1211

1312
# We recommend you to keep these unchanged
1413
end_of_line = lf
@@ -22,4 +21,8 @@ trim_trailing_whitespace = false
2221
[*.{json,yaml,yml}]
2322
indent_style = space
2423
indent_size = 2
25-
continuation_indent_size = 4
24+
continuation_indent_size = 4
25+
26+
[*.{kt,kts}]
27+
ktlint_standard_trailing-comma-on-call-site=disabled
28+
ktlint_standard_trailing-comma-on-declaration-site=disabled

.github/workflows/main.yml

+5-15
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,14 @@ jobs:
1717
# Steps represent a sequence of tasks that will be executed as part of the job
1818
steps:
1919
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121

22-
- uses: actions/setup-java@v1
22+
- uses: actions/setup-java@v3
2323
with:
24-
java-version: 11
24+
java-version: 17
25+
distribution: temurin
2526

26-
- name: Cache
27-
uses: actions/[email protected]
28-
with:
29-
# Cache gradle directories
30-
path: |
31-
~/.gradle/caches/jars-3
32-
~/.gradle/caches/modules-2/files-2.1/
33-
~/.gradle/caches/modules-2/metadata-2.96/
34-
~/.gradle/native
35-
~/.gradle/wrapper
36-
# Key for restoring and saving the cache
37-
key: ${{ runner.os }}-gradle
27+
- uses: gradle/gradle-build-action@v2
3828

3929
# Compile the code
4030
- name: Compile code

.github/workflows/release.yml

+6-16
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,21 @@ jobs:
1313
# Steps represent a sequence of tasks that will be executed as part of the job
1414
steps:
1515
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
16-
- uses: actions/checkout@v2
17-
- uses: actions/setup-java@v1
16+
- uses: actions/checkout@v3
17+
- uses: actions/setup-java@v3
1818
with:
19-
java-version: 11
19+
java-version: 17
20+
distribution: temurin
2021

21-
- name: Cache
22-
uses: actions/[email protected]
23-
with:
24-
# A list of files, directories, and wildcard patterns to cache and restore
25-
path: |
26-
~/.gradle/caches/jars-3
27-
~/.gradle/caches/modules-2/files-2.1/
28-
~/.gradle/caches/modules-2/metadata-2.96/
29-
~/.gradle/native
30-
~/.gradle/wrapper
31-
# An explicit key for restoring and saving the cache
32-
key: ${{ runner.os }}-gradle
22+
- uses: gradle/gradle-build-action@v2
3323

3424
# Compile code
3525
- name: Compile code
3626
run: ./gradlew assemble
3727

3828
# Upload it to GitHub
3929
- name: Upload to GitHub
40-
uses: AButler/[email protected]
30+
uses: AButler/[email protected].2
4131
with:
4232
files: 'build/libs/*;radar-spring-auth/build/libs/*'
4333
repo-token: ${{ secrets.GITHUB_TOKEN }}

README.md

+62-66
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ Since we are using this in spring applications, we can use `spring-aop`. So add
1414

1515
```groovy
1616
repositories {
17-
maven { url "https://dl.bintray.com/radar-base/org.radarbase" }
17+
mavenCentral()
1818
}
1919
2020
dependencies {
2121
// AOP
22-
runtimeOnly(group: 'org.springframework', name: 'spring-aop', version: '5.2.4.RELEASE')
23-
api(group: 'org.radarbase', name: 'radar-spring-auth', version: '1.0.0')
22+
runtimeOnly("org.springframework:spring-aop:6.0.6")
23+
api("org.radarbase:radar-spring-auth:1.2.0")
2424
}
2525
```
2626

@@ -71,27 +71,26 @@ public class AuthConfig {
7171
}
7272
```
7373

74-
Although, we only need `AuthAspect` as a bean, we declare it's dependencies as a bean too, so they can be reused in the application using `Autowired`.
74+
Although, we only need `AuthAspect` as a bean, we declare its dependencies as a bean too, so they can be reused in the application using `Autowired`.
7575

7676
Now, we add the `Authorized` annotation to our method that we want to authorize for (these are usually spring `Controller` methods).
7777

7878
```java
79-
@Authorized(permission = "READ", entity = "SUBJECT", permissionOn = PermissionOn.SUBJECT)
80-
@GetMapping(
81-
"/"
82-
+ "projects"
83-
+ "/"
84-
+ "{projectId}"
85-
+ "/"
86-
+ "users"
87-
+ "/"
88-
+ "{subjectId}")
89-
public ResponseEntity<FcmUserDto> getUsersUsingProjectIdAndSubjectId(
90-
@Valid @PathVariable String projectId, @Valid @PathVariable String subjectId) {
91-
79+
@Authorized(permission = "READ", entity = "SUBJECT", permissionOn = PermissionOn.SUBJECT)
80+
@GetMapping(
81+
"/"
82+
+ "projects"
83+
+ "/"
84+
+ "{projectId}"
85+
+ "/"
86+
+ "users"
87+
+ "/"
88+
+ "{subjectId}")
89+
public ResponseEntity<FcmUserDto> getUsersUsingProjectIdAndSubjectId(
90+
@Valid @PathVariable String projectId, @Valid @PathVariable String subjectId) {
9291
return ResponseEntity.ok(
9392
this.userService.getUsersByProjectIdAndSubjectId(projectId, subjectId));
94-
}
93+
}
9594
```
9695

9796
Various other conditions to verify can be provided using the `Authorized` annotation. For a full set, take a look at the [annotation class](./radar-spring-auth/src/main/kotlin/radar/spring/auth/common/Authorization.kt)
@@ -112,7 +111,7 @@ The `Authorized` annotation adds a request attribute named `radar_token` (presen
112111
```java
113112
import java.util.Optional;
114113
import java.util.stream.Collectors;
115-
import javax.servlet.http.HttpServletRequest;
114+
import jakarta.servlet.http.HttpServletRequest;
116115

117116
import radar.spring.auth.common.Authorization;
118117
import radar.spring.auth.common.Authorized;
@@ -131,47 +130,47 @@ import org.springframework.http.ResponseEntity;
131130

132131
@RestController
133132
public class RadarProjectController {
134-
// Your project Service
135-
private transient ProjectService projectService;
133+
// Your project Service
134+
private transient ProjectService projectService;
136135

137-
private transient Authorization<RadarToken> authorization;
136+
private transient Authorization<RadarToken> authorization;
138137

139-
public RadarProjectController(
140-
ProjectService projectService, Optional<Authorization<RadarToken>> authorization) {
141-
this.projectService = projectService;
142-
this.authorization = authorization.orElse(null);
143-
}
138+
public RadarProjectController(
139+
ProjectService projectService, Optional<Authorization<RadarToken>> authorization) {
140+
this.projectService = projectService;
141+
this.authorization = authorization.orElse(null);
142+
}
144143

145144

146-
@Authorized(permission = "READ", entity = "PROJECT")
147-
@GetMapping("/" + "projects")
148-
public ResponseEntity<ProjectDtos> getAllProjects(HttpServletRequest request) {
149-
150-
ProjectDtos projectDtos = this.projectService.getAllProjects();
151-
if (authorization != null) {
152-
RadarToken token = (RadarToken) request.getAttribute(AuthAspect.TOKEN_KEY);
153-
ProjectDtos finalProjectDtos =
154-
new ProjectDtos()
155-
.setProjects(
156-
projectDtos.getProjects().stream()
157-
.filter(
158-
project ->
159-
authorization.hasPermission(
160-
token,
161-
"READ",
162-
"PROJECT",
163-
PermissionOn.PROJECT,
164-
project.getProjectId(),
165-
null,
166-
null))
167-
.collect(Collectors.toList()));
168-
return ResponseEntity.ok(finalProjectDtos);
169-
} else {
170-
// If not authorization object if present, means authorization is disabled.
171-
// Remember how we added this as a bean initially.
172-
return ResponseEntity.ok(projectDtos);
145+
@Authorized(permission = "READ", entity = "PROJECT")
146+
@GetMapping("/" + "projects")
147+
public ResponseEntity<ProjectDtos> getAllProjects(HttpServletRequest request) {
148+
149+
ProjectDtos projectDtos = this.projectService.getAllProjects();
150+
if (authorization != null) {
151+
RadarToken token = (RadarToken) request.getAttribute(AuthAspect.TOKEN_KEY);
152+
ProjectDtos finalProjectDtos =
153+
new ProjectDtos()
154+
.setProjects(
155+
projectDtos.getProjects().stream()
156+
.filter(
157+
project ->
158+
authorization.hasPermission(
159+
token,
160+
"READ",
161+
"PROJECT",
162+
PermissionOn.PROJECT,
163+
project.getProjectId(),
164+
null,
165+
null))
166+
.collect(Collectors.toList()));
167+
return ResponseEntity.ok(finalProjectDtos);
168+
} else {
169+
// If not authorization object if present, means authorization is disabled.
170+
// Remember how we added this as a bean initially.
171+
return ResponseEntity.ok(projectDtos);
172+
}
173173
}
174-
}
175174
}
176175
```
177176

@@ -181,24 +180,21 @@ public class RadarProjectController {
181180
The various parts of the application can be extended as required. Take a look at [AuthValidator](./radar-spring-auth/src/main/kotlin/radar/spring/auth/common/AuthValidator.kt) and [Authorization](./radar-spring-auth/src/main/kotlin/radar/spring/auth/common/Authorization.kt) interfaces which can be used to implement a new authorization. These can then be used to instantiate the `AuthAspect` to enable them.
182181
You can also add another Aspect as per your requirements in your own project and add it as a Bean in spring to start using it just like the `AuthAspect` from this library.
183182

184-
185183
The [required parameter](#parameters-required) names can also be changed as per your requirements apart from the default ones mentioned above. You can even specify multiple names as an array. These will need to be added when creating the `AuthAspect`. For example,
186184

187185
```java
188-
...
189-
@Bean
190-
AuthAspect getAuthAspect(
191-
@Autowired ManagementPortalAuthValidator authValidator,
192-
@Autowired ManagementPortalAuthorization authorization) {
186+
@Bean
187+
AuthAspect getAuthAspect(
188+
@Autowired ManagementPortalAuthValidator authValidator,
189+
@Autowired ManagementPortalAuthorization authorization) {
193190
return new AuthAspect<>(
194191
authValidator,
195192
authorization,
196-
new String[]{"projectId", "projectName", "project"},
197-
new String[]{"subjectId", "login"},
198-
new String[]{"sourceId", "source"}
193+
Set.of("projectId", "projectName", "project"),
194+
Set.of("subjectId", "login"),
195+
Set.of("sourceId", "source")
199196
);
200-
}
201-
...
197+
}
202198
```
203199

204200
But Note that while you can modify the name of the parameters according to you liking, their type must always be `String`.

0 commit comments

Comments
 (0)