-
Notifications
You must be signed in to change notification settings - Fork 6.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request !45 from 芋道源码/admin-social-auth
- Loading branch information
Showing
114 changed files
with
2,765 additions
and
1,275 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
...oder/yudao/adminserver/modules/system/controller/auth/vo/auth/SysAuthSocialBindReqVO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package cn.iocoder.yudao.adminserver.modules.system.controller.auth.vo.auth; | ||
|
||
import cn.iocoder.yudao.adminserver.modules.system.enums.social.SysSocialTypeEnum; | ||
import cn.iocoder.yudao.framework.common.validation.InEnum; | ||
import io.swagger.annotations.ApiModel; | ||
import io.swagger.annotations.ApiModelProperty; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
import javax.validation.constraints.NotEmpty; | ||
import javax.validation.constraints.NotNull; | ||
|
||
@ApiModel("社交绑定 Request VO,使用 code 授权码") | ||
@Data | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
@Builder | ||
public class SysAuthSocialBindReqVO { | ||
|
||
@ApiModelProperty(value = "社交平台的类型", required = true, example = "10", notes = "参见 SysUserSocialTypeEnum 枚举值") | ||
@InEnum(SysSocialTypeEnum.class) | ||
@NotNull(message = "社交平台的类型不能为空") | ||
private Integer type; | ||
|
||
@ApiModelProperty(value = "授权码", required = true, example = "1024") | ||
@NotEmpty(message = "授权码不能为空") | ||
private String code; | ||
|
||
@ApiModelProperty(value = "state", required = true, example = "9b2ffbc1-7425-4155-9894-9d5c08541d62") | ||
@NotEmpty(message = "state 不能为空") | ||
private String state; | ||
|
||
} |
48 changes: 48 additions & 0 deletions
48
...er/yudao/adminserver/modules/system/controller/auth/vo/auth/SysAuthSocialLogin2ReqVO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
package cn.iocoder.yudao.adminserver.modules.system.controller.auth.vo.auth; | ||
|
||
import cn.iocoder.yudao.adminserver.modules.system.enums.social.SysSocialTypeEnum; | ||
import cn.iocoder.yudao.framework.common.validation.InEnum; | ||
import io.swagger.annotations.ApiModel; | ||
import io.swagger.annotations.ApiModelProperty; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
import org.hibernate.validator.constraints.Length; | ||
|
||
import javax.validation.constraints.NotEmpty; | ||
import javax.validation.constraints.NotNull; | ||
import javax.validation.constraints.Pattern; | ||
|
||
@ApiModel("社交登录 Request VO,使用 code 授权码 + 账号密码") | ||
@Data | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
@Builder | ||
public class SysAuthSocialLogin2ReqVO { | ||
|
||
@ApiModelProperty(value = "社交平台的类型", required = true, example = "10", notes = "参见 SysUserSocialTypeEnum 枚举值") | ||
@InEnum(SysSocialTypeEnum.class) | ||
@NotNull(message = "社交平台的类型不能为空") | ||
private Integer type; | ||
|
||
@ApiModelProperty(value = "授权码", required = true, example = "1024") | ||
@NotEmpty(message = "授权码不能为空") | ||
private String code; | ||
|
||
@ApiModelProperty(value = "state", required = true, example = "9b2ffbc1-7425-4155-9894-9d5c08541d62") | ||
@NotEmpty(message = "state 不能为空") | ||
private String state; | ||
|
||
@ApiModelProperty(value = "账号", required = true, example = "yudaoyuanma") | ||
@NotEmpty(message = "登录账号不能为空") | ||
@Length(min = 4, max = 16, message = "账号长度为 4-16 位") | ||
@Pattern(regexp = "^[A-Za-z0-9]+$", message = "账号格式为数字以及字母") | ||
private String username; | ||
|
||
@ApiModelProperty(value = "密码", required = true, example = "buzhidao") | ||
@NotEmpty(message = "密码不能为空") | ||
@Length(min = 4, max = 16, message = "密码长度为 4-16 位") | ||
private String password; | ||
|
||
} |
35 changes: 35 additions & 0 deletions
35
...der/yudao/adminserver/modules/system/controller/auth/vo/auth/SysAuthSocialLoginReqVO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package cn.iocoder.yudao.adminserver.modules.system.controller.auth.vo.auth; | ||
|
||
import cn.iocoder.yudao.adminserver.modules.system.enums.social.SysSocialTypeEnum; | ||
import cn.iocoder.yudao.framework.common.validation.InEnum; | ||
import io.swagger.annotations.ApiModel; | ||
import io.swagger.annotations.ApiModelProperty; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
import javax.validation.constraints.NotEmpty; | ||
import javax.validation.constraints.NotNull; | ||
|
||
@ApiModel("社交登录 Request VO,使用 code 授权码") | ||
@Data | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
@Builder | ||
public class SysAuthSocialLoginReqVO { | ||
|
||
@ApiModelProperty(value = "社交平台的类型", required = true, example = "10", notes = "参见 SysUserSocialTypeEnum 枚举值") | ||
@InEnum(SysSocialTypeEnum.class) | ||
@NotNull(message = "社交平台的类型不能为空") | ||
private Integer type; | ||
|
||
@ApiModelProperty(value = "授权码", required = true, example = "1024") | ||
@NotEmpty(message = "授权码不能为空") | ||
private String code; | ||
|
||
@ApiModelProperty(value = "state", required = true, example = "9b2ffbc1-7425-4155-9894-9d5c08541d62") | ||
@NotEmpty(message = "state 不能为空") | ||
private String state; | ||
|
||
} |
31 changes: 31 additions & 0 deletions
31
...er/yudao/adminserver/modules/system/controller/auth/vo/auth/SysAuthSocialUnbindReqVO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package cn.iocoder.yudao.adminserver.modules.system.controller.auth.vo.auth; | ||
|
||
import cn.iocoder.yudao.adminserver.modules.system.enums.social.SysSocialTypeEnum; | ||
import cn.iocoder.yudao.framework.common.validation.InEnum; | ||
import io.swagger.annotations.ApiModel; | ||
import io.swagger.annotations.ApiModelProperty; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
import javax.validation.constraints.NotEmpty; | ||
import javax.validation.constraints.NotNull; | ||
|
||
@ApiModel("取消社交绑定 Request VO,使用 code 授权码") | ||
@Data | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
@Builder | ||
public class SysAuthSocialUnbindReqVO { | ||
|
||
@ApiModelProperty(value = "社交平台的类型", required = true, example = "10", notes = "参见 SysUserSocialTypeEnum 枚举值") | ||
@InEnum(SysSocialTypeEnum.class) | ||
@NotNull(message = "社交平台的类型不能为空") | ||
private Integer type; | ||
|
||
@ApiModelProperty(value = "社交的全局编号", required = true, example = "IPRmJ0wvBptiPIlGEZiPewGwiEiE") | ||
@NotEmpty(message = "社交的全局编号不能为空") | ||
private String unionId; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.