README.md 12.2 KB
Newer Older
1
<p align="center">
sinat_25235033's avatar
sinat_25235033 已提交
2
  <a href="https://github.com/usthe/sureness">
sinat_25235033's avatar
sinat_25235033 已提交
3
    <img alt="sureness" src="./docs/_media/brand128.svg">
4 5 6
  </a>
</p>

sinat_25235033's avatar
sinat_25235033 已提交
7
# <font size="14p">sureness</font> <font size="5p">  | [中文文档](README_CN.md)</font>
sinat_25235033's avatar
sinat_25235033 已提交
8

sinat_25235033's avatar
sinat_25235033 已提交
9
> A simple and efficient jvm security framework that focus on the protection of REST API.
sinat_25235033's avatar
sinat_25235033 已提交
10

11 12 13 14 15 16 17
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
[![Maven](https://img.shields.io/badge/Maven%20Central-1.0.3-blue.svg)](https://search.maven.org/artifact/com.usthe.sureness/sureness-core)
![GitHub pull request check contexts](https://img.shields.io/github/status/contexts/pulls/dromara/sureness/8?label=pull%20checks)
[![Gitter](https://img.shields.io/gitter/room/usthe/sureness?label=sureness&color=orange&logo=gitter&logoColor=red)](https://gitter.im/usthe/sureness)
![GitHub Release Date](https://img.shields.io/github/release-date/dromara/sureness?color=blue&logo=figshare&logoColor=red)
[![star](https://gitee.com/dromara/sureness/badge/star.svg?theme=gray)](https://gitee.com/dromara/sureness/stargazers)
[![star](https://img.shields.io/github/stars/dromara/sureness?style=social)](https://github.com/dromara/sureness)
sinat_25235033's avatar
sinat_25235033 已提交
18 19

<a href="https://www.producthunt.com/posts/sureness?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-sureness" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=287707&theme=light" alt="sureness - Jvm security framework that focus on protection of rest api | Product Hunt"/></a>
20

sinat_25235033's avatar
sinat_25235033 已提交
21
**Home Page: [dromara.org/sureness](https://dromara.org/sureness) or [su.usthe.com](https://su.usthe.com/)**  
sinat_25235033's avatar
sinat_25235033 已提交
22

23
## 🎡 <font color="green">Introduction</font>
sinat_25235033's avatar
sinat_25235033 已提交
24

25
> [Sureness](https://github.com/dromara/sureness) is a simple and efficient open-source security framework that focus on the protection of REST API.  
26
> Provide authentication and authorization, based on RBAC.   
27
> No specific framework dependency (supports Javalin, Spring Boot, Quarkus, Ktor, Micronaut and more).    
28 29 30 31 32 33 34
> Supports dynamic modification of permissions.   
> Supports WebSockets and mainstream HTTP containers (Servlet and JAX-RS).    
> Supports JWT, Basic Auth, Digest Auth, and can be extended to support custom authentication methods.    
> High performance due to dictionary matching tree.      
> Good extension interface, demos and documentation.

> Sureness has a sensible default configuration, is easy to customize, and is not couple to any one framework, which enables developers to quickly and safely protect their projects in multiple scenarios.
sinat_25235033's avatar
sinat_25235033 已提交
35

36
##### 🔍 Compare     
sinat_25235033's avatar
sinat_25235033 已提交
37 38 39

| ~         | sureness | shiro | spring security |
| ---       | ---      | ---   | --- |
40
| **Multi Framework Support**  | support      | support need modify   | not support |
41
| **REST API** | support | support need modify   | support |
42 43 44 45 46 47 48 49
| **Websocket** | support | not support   | not support |
| **Path Match**  | dictionary matching tree | ant match | ant match |
| **Annotation Support**    | support      | support      | support |
| **Servlet**    | support      | support      | support |
| **JAX-RS**     | support      | not support    | not support |
| **Dynamic Modification of Permissions** | support | support need modify | support need modify |
| **Performance** | fast | slower | slower|
| **Learning Curve** | simple | simple | steep|
50

51
##### 📈 Benchmark  
52 53 54

![benchmark](docs/_images/benchmark_en.png)  

sinat_25235033's avatar
sinat_25235033 已提交
55 56
**Benchmark test shows sureness to lose 0.026ms performance compared to frameless application, shiro lose 0.088ms, spring security lose 0.116ms.**    
**In contrast, sureness basically does not consume performance, and the performance (TPS loss) is 3 times that of shiro and 4 times that of spring security.**      
sinat_25235033's avatar
sinat_25235033 已提交
57
**The performance gap will be further widened as the api matching chain increases.**      
58

sinat_25235033's avatar
sinat_25235033 已提交
59
Detail see [Benchmark Test](https://github.com/tomsun28/sureness-shiro-spring-security-benchmark)       
sinat_25235033's avatar
sinat_25235033 已提交
60

61
##### ✌ Framework Sample Support  
sinat_25235033's avatar
sinat_25235033 已提交
62

sinat_25235033's avatar
sinat_25235033 已提交
63 64 65 66 67
- [x] sureness integration springboot sample(configuration file scheme) [sample-bootstrap](sample-bootstrap)   
- [x] sureness integration springboot sample(database scheme) [sample-tom](sample-tom)  
- [x] sureness integration quarkus sample [sample-quarkus](samples/quarkus-sureness)  
- [x] sureness integration javalin sample [sample-javalin](samples/javalin-sureness)    
- [x] sureness integration ktor sample [sample-ktor](samples/ktor-sureness)   
68 69
- [x] sureness integration spring webflux sample [sample-spring-webflux](samples/spring-webflux-sureness)
- [x] sureness integration micronaut sample [sample-micronaut](samples/micronaut-sureness)
70 71
- [x] sureness integration micronaut sample [sample-jfinal](samples/jfinal-sureness)
- [x] sureness integration solon sample [sample-solon](samples/solon-sureness)
72 73
- [x] sureness integration session sample [sureness-session](samples/sureness-session)
- [x] sureness integration redis cache session sample [sureness-redis-session](samples/sureness-redis-session)
74
- [x] more samples todo  
sinat_25235033's avatar
sinat_25235033 已提交
75

76
## 🔨 Quick Start 
sinat_25235033's avatar
sinat_25235033 已提交
77

78
#### 🐕 <font color="red">Some Conventions</font>  
sinat_25235033's avatar
sinat_25235033 已提交
79

80 81
- Based RBAC, User-Role-Resource.    
- We treat API requests as a resource, resource format like `requestUri===httpMethod`.   
82 83
  That is the request uri + request method(`post,get,put,delete...`) is considered as a resource as a whole.  
  `eg: /api/v2/book===get`    
sinat_25235033's avatar
sinat_25235033 已提交
84
- User belongs some Role -- Role owns Resource -- User can access the resource.  
sinat_25235033's avatar
sinat_25235033 已提交
85

sinat_25235033's avatar
sinat_25235033 已提交
86
Resource path matching see: [URI Match](docs/path-match.md)  
sinat_25235033's avatar
sinat_25235033 已提交
87

88
#### 🐖 Add Sureness In Your Project  
sinat_25235033's avatar
sinat_25235033 已提交
89

sinat_25235033's avatar
sinat_25235033 已提交
90
When use maven or gradle build project, add coordinate  
sinat_25235033's avatar
sinat_25235033 已提交
91 92 93 94
```
<dependency>
    <groupId>com.usthe.sureness</groupId>
    <artifactId>sureness-core</artifactId>
95
    <version>1.0.3</version>
sinat_25235033's avatar
sinat_25235033 已提交
96 97 98
</dependency>
```
```
99
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '1.0.3'
sinat_25235033's avatar
sinat_25235033 已提交
100
```
sinat_25235033's avatar
sinat_25235033 已提交
101

102
#### 🐵 Use the Default Configuration to Configure Sureness  
sinat_25235033's avatar
sinat_25235033 已提交
103

104
The default configuration -`DefaultSurenessConfig` uses the document datasource `sureness.yml` as the auth datasource.  
105
It supports JWT auth, Basic auth, Digest authentication.  
sinat_25235033's avatar
sinat_25235033 已提交
106
```
sinat_25235033's avatar
sinat_25235033 已提交
107 108 109 110
@Bean
public DefaultSurenessConfig surenessConfig() {
    return new DefaultSurenessConfig();
}
sinat_25235033's avatar
sinat_25235033 已提交
111 112
```

113
#### 🐮 Load Auth Config DataSource   
sinat_25235033's avatar
sinat_25235033 已提交
114

115
Sureness authentication requires us to provide our own account data, role permission data, etc. These data may come from text, relational databases, non-relational databases, annotations, etc.   
sinat_25235033's avatar
sinat_25235033 已提交
116 117
We provide interfaces `SurenessAccountProvider`, `PathTreeProvider` for user implement to load data from the dataSource where they want.  

118 119
- `SurenessAccountProvider` - Account datasource provider interface.    
- `PathTreeProvider` - Resource uri-role datasource provider interface.     
sinat_25235033's avatar
sinat_25235033 已提交
120

121 122
Default Document DataSource Config - `sureness.yml`, see: [Default Document DataSource](docs/default-datasource.md)   
Annotation DataSource Config Detail - `AnnotationLoader`, see: [Annotation DataSource](docs/annotation-datasource.md)  
sinat_25235033's avatar
sinat_25235033 已提交
123

124 125
If the configuration resource data comes from text, please refer to  [Sureness integration springboot sample(configuration file scheme)](https://github.com/tomsun28/sureness/tree/master/sample-bootstrap)   
If the configuration resource data comes from dataBase, please refer to  [Sureness integration springboot sample(database scheme)](https://github.com/tomsun28/sureness/tree/master/sample-tom)   
sinat_25235033's avatar
sinat_25235033 已提交
126 127


128
#### 🐐 Add an Interceptor Intercepting All Requests  
sinat_25235033's avatar
sinat_25235033 已提交
129

130
The essence of sureness is to intercept all rest requests for authenticating and Authorizing.     
sinat_25235033's avatar
sinat_25235033 已提交
131
The interceptor can be a filter or a spring interceptor, it intercepts all request to check them.  
sinat_25235033's avatar
sinat_25235033 已提交
132
```
sinat_25235033's avatar
sinat_25235033 已提交
133
SubjectSum subject = SurenessSecurityManager.getInstance().checkIn(servletRequest)
sinat_25235033's avatar
sinat_25235033 已提交
134 135
```

136
#### 🐰 Implement Auth Exception Handling Process    
sinat_25235033's avatar
sinat_25235033 已提交
137

138
Sureness uses exception handling process:  
sinat_25235033's avatar
sinat_25235033 已提交
139

140 141 142 143 144 145
- If auth success, method - `checkIn` will return a `SubjectSum` object containing user information.    
- If auth failure, method - `checkIn` will throw different types of auth exceptions.   

Users need to continue the subsequent process based on these exceptions.(eg: return the request response)  

Here we need to customize the exceptions thrown by `checkIn`, passed directly when auth success, catch exception when auth failure and do something:    
sinat_25235033's avatar
sinat_25235033 已提交
146 147

```
sinat_25235033's avatar
sinat_25235033 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160
try {
    SubjectSum subject = SurenessSecurityManager.getInstance().checkIn(servletRequest);
} catch (ProcessorNotFoundException | UnknownAccountException | UnsupportedSubjectException e4) {
    // Create subject error related execption 
} catch (DisabledAccountException | ExcessiveAttemptsException e2 ) {
    // Account disable related exception
} catch (IncorrectCredentialsException | ExpiredCredentialsException e3) {
    // Authentication failure related exception
} catch (UnauthorizedException e5) {
    // Authorization failure related exception
} catch (SurenessAuthenticationException | SurenessAuthorizationException e) {
    // other sureness exception
}
sinat_25235033's avatar
sinat_25235033 已提交
161 162
```

sinat_25235033's avatar
sinat_25235033 已提交
163
Detail sureness auth exception see: [Default Sureness Auth Exception](docs/default-exception.md)   
sinat_25235033's avatar
sinat_25235033 已提交
164

165
**Have Fun**      
sinat_25235033's avatar
sinat_25235033 已提交
166

167
## 🥐 Advanced Use
sinat_25235033's avatar
sinat_25235033 已提交
168

169
Sureness supports custom subject, custom subjectCreator, custom processor and more.  
sinat_25235033's avatar
sinat_25235033 已提交
170

171
Before advanced custom extension, let's first understand the general process of sureness:  
sinat_25235033's avatar
sinat_25235033 已提交
172

173
![flow](/docs/_images/flow-en.png)  
sinat_25235033's avatar
sinat_25235033 已提交
174

175
As in the above process, Subject is created by SubjectCreate according to the request body, and different authentication processors process the supported Subjects.  
sinat_25235033's avatar
sinat_25235033 已提交
176

177
Sureness provides the following common interfaces as extension points:  
sinat_25235033's avatar
sinat_25235033 已提交
178

179 180 181 182 183
- `Subject`:  Authenticated authorized  user's account interface, provide the account's username,password, request resources, roles, etc.  
- `SubjectCreate`: Create subject interface, provider create method.   
- `Processor`:  Process subject interface, where happen authentication and authorization. 
- `PathTreeProvider`: Resource data provider, it can load data from txt or database,etc.
- `SurenessAccountProvider`: Account data provider, it can load data from txt or database,etc.   
sinat_25235033's avatar
sinat_25235033 已提交
184

sinat_25235033's avatar
sinat_25235033 已提交
185
Refer to [Extension Point](https://usthe.com/sureness/#/extend-point) for the extended documentation.   
sinat_25235033's avatar
sinat_25235033 已提交
186

187
1. 🥊 **Custom Subject**
sinat_25235033's avatar
sinat_25235033 已提交
188

189 190
`Implment Subject, add custom subject content`  
`Implment SubjectCreate to create custom subject`  
191 192 193
`Implment Processor to support custom subject`

See [Custom Subject](docs/custom-subject.md)  
sinat_25235033's avatar
sinat_25235033 已提交
194

195
2. 🔫 **Custom SubjectCreator**
196 197 198 199 200

`Implment SubjectCreate to create your custom subject`   

See [Custom SubjectCreator](docs/custom-subject-creator.md)  

201
3. 🪓 **Custom Processor**
sinat_25235033's avatar
sinat_25235033 已提交
202

203
`A subject also can support by different processor, so we can custom processor to support custom subject`
204 205 206 207
`Implment Processor, set which subject can support and implment processing details`

See [Custom Processor](docs/custom-processor.md)  

208
4. 🏹 **Custom Datasource**  
209 210 211 212 213

`Implment PathTreeProvider, load in DefaultPathRoleMatcher`   
`Implment SurenessAccountProvide, load in processor`  

See [Custom Datasource](docs/custom-datasource.md)  
sinat_25235033's avatar
sinat_25235033 已提交
214

215
Detail please refer to  [Sureness integration springboot sample(database scheme)](sample-tom)   
sinat_25235033's avatar
sinat_25235033 已提交
216

217
## 🙋 Contributing  
sinat_25235033's avatar
sinat_25235033 已提交
218

sinat_25235033's avatar
sinat_25235033 已提交
219
Very welcome to Contribute this project, go further and better with sureness. 
sinat_25235033's avatar
sinat_25235033 已提交
220

221 222
Components of Repository:  
- [sureness's kernel code--sureness-core](core)  
sinat_25235033's avatar
sinat_25235033 已提交
223 224
- [sureness integration springboot sample(configuration file scheme)--sample-bootstrap](sample-bootstrap)  
- [sureness integration springboot sample(database scheme)-sample-tom](sample-tom)  
sinat_25235033's avatar
sinat_25235033 已提交
225
- [sample projects using sureness in each framework(javalin,ktor,quarkus)--samples](samples)  
sinat_25235033's avatar
sinat_25235033 已提交
226

sinat_25235033's avatar
sinat_25235033 已提交
227
See [CONTRIBUTING](CONTRIBUTING.md)    
sinat_25235033's avatar
sinat_25235033 已提交
228

229
#### 💪 Why Is High Performance  
sinat_25235033's avatar
sinat_25235033 已提交
230

231
![pathRoleMatcher](docs/_images/PathRoleMatcher.svg)  
sinat_25235033's avatar
sinat_25235033 已提交
232

233 234 235 236 237 238
## 🌞 Friend's Links   

* **```JustAuth```** A Java library of third-party authorized login: [Github](https://github.com/justauth/JustAuth)    
* **```MaxKey```** Leading-Edge Enterprise-Class open source IAM Identity and Access management product: [Github](https://github.com/dromara/MaxKey)   
* **```PhalApi```** PHP Api Framework: [Website](https://www.phalapi.net/)    

239 240
## Join discussion

Y
yqxxgh 已提交
241 242 243 244 245
[Github Discussion](https://github.com/usthe/sureness/discussions)          
[Gitter Channel](https://gitter.im/usthe/sureness)   
QQ Group:390083213        
Dromara社区微信公众号: gh_7eeb0b1b7476      
Sureness微信公众号:sureness   
246 247


sinat_25235033's avatar
sinat_25235033 已提交
248

249
## 🛡️ License  
Y
yqxxgh 已提交
250
[`Apache License, Version 2.0`](https://www.apache.org/licenses/LICENSE-2.0.html)