Documentation
¶
Index ¶
- Variables
- func GetCaptcha(id, typ string) (idKey string, value string, instance base64Captcha.CaptchaInterface)
- func GetCaptchaBase64(id, typ string) (string, string)
- func NewTracer(serviceName string) (opentracing.Tracer, io.Closer, error)
- func ResponseAny(c *gin.Context, err interface{}, any interface{})
- func ResponseError(c *gin.Context, err *BusinessException)
- func ResponseSuccess(c *gin.Context, data interface{})
- func SendEmail(receiver string)
- func SendHTMLEmail(receiver string, path string, variables interface{}) error
- type BusinessException
- func BadRequestException(desc string) *BusinessException
- func EntityExistException(entity, property string, value interface{}) *BusinessException
- func IntervalException(desc string) *BusinessException
- func NewBusinessException(enum ExceptionEnum) *BusinessException
- func NoException(desc string) *BusinessException
- func SendEmailCode(duration time.Duration, email, redisKey, templatePath string) *BusinessException
- func VerifyCaptcha(id, value string) *BusinessException
- type EmailConfig
- type ExceptionEnum
- type HashSet
- func (set *HashSet) Add(items ...interface{})
- func (set *HashSet) Clear()
- func (set *HashSet) Contains(items ...interface{}) bool
- func (set *HashSet) Empty() bool
- func (set *HashSet) FromJSON(data []byte) error
- func (set *HashSet) Remove(items ...interface{})
- func (set *HashSet) Size() int
- func (set *HashSet) String() string
- func (set *HashSet) ToJSON() ([]byte, error)
- func (set *HashSet) Values() []interface{}
- type Response
Constants ¶
This section is empty.
Variables ¶
View Source
var DB *gorm.DB
Functions ¶
func GetCaptcha ¶
func GetCaptcha(id, typ string) (idKey string, value string, instance base64Captcha.CaptchaInterface)
func GetCaptchaBase64 ¶
GetCaptchaBase64: 获取图片验证码 以base64字符串返回
func ResponseAny ¶
ResponseAny : do response
func ResponseError ¶
func ResponseError(c *gin.Context, err *BusinessException)
func ResponseSuccess ¶
func SendHTMLEmail ¶
SendHTMLEmail: 发送HTML格式邮件
Types ¶
type BusinessException ¶
type BusinessException struct {
// contains filtered or unexported fields
}
func BadRequestException ¶
func BadRequestException(desc string) *BusinessException
BadRequestException: 错误的客户端请求,自定义错误信息
func EntityExistException ¶
func EntityExistException(entity, property string, value interface{}) *BusinessException
EntityExistException: 存在属性相同的实体
func IntervalException ¶
func IntervalException(desc string) *BusinessException
IntervalException: 服务器内部错误,自定义错误信息
func NewBusinessException ¶
func NewBusinessException(enum ExceptionEnum) *BusinessException
func NoException ¶
func NoException(desc string) *BusinessException
func SendEmailCode ¶
func SendEmailCode(duration time.Duration, email, redisKey, templatePath string) *BusinessException
SendEmailCode: 发送邮箱验证码
func (BusinessException) Code ¶
func (c BusinessException) Code() int32
func (BusinessException) Error ¶
func (c BusinessException) Error() string
type EmailConfig ¶
type ExceptionEnum ¶
type ExceptionEnum int32
const ( //not business exception : dao,valid,etc. VALID_PARM_ERROR ExceptionEnum = 10000 PREPARE_SQL_ERROR ExceptionEnum = 10001 EXECUTE_SQL_ERROR ExceptionEnum = 10002 ROW_SCAN_ERROR ExceptionEnum = 10003 BEGIN_TRANSACTION_ERROR ExceptionEnum = 10004 OK ExceptionEnum = 20000 MEMBER_NOT_EXIST ExceptionEnum = 20001 USER_LOGIN_NAME_EXIST ExceptionEnum = 20002 USER_NOT_EXIST ExceptionEnum = 20003 LOGIN_MEMBER_ERROR ExceptionEnum = 20004 VERIFY_CODE_TOO_FREQUENT ExceptionEnum = 20005 VERIFY_CODE_ERROR ExceptionEnum = 20006 VERIFY_CODE_EXPIRED ExceptionEnum = 20007 ERROR_PASSWORD ExceptionEnum = 20008 SAME_PASSWORD ExceptionEnum = 20009 SEND_EMAIL_CODE_ERROR ExceptionEnum = 20010 USER_EMAIL_EXIST ExceptionEnum = 20011 USER_PHONE_EXIST ExceptionEnum = 20012 ROLE_USER_EXIST ExceptionEnum = 20013 BAD_REQUEST ExceptionEnum = 40000 INTERVAL_ERROR ExceptionEnum = 50000 )
type HashSet ¶
type HashSet struct {
// contains filtered or unexported fields
}
HashSet holds elements in go's native map
func NewHashSet ¶
func NewHashSet(values ...interface{}) *HashSet
NewHashSet instantiates a new empty set and adds the passed values, if any, to the set
func (*HashSet) Add ¶
func (set *HashSet) Add(items ...interface{})
Add adds the items (one or more) to the set.
func (*HashSet) Contains ¶
Contains check if items (one or more) are present in the set. All items have to be present in the set for the method to return true. Returns true if no arguments are passed at all, i.e. set is always superset of empty set.
func (*HashSet) Remove ¶
func (set *HashSet) Remove(items ...interface{})
Remove removes the items (one or more) from the set.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.