Categorygithub.com/jiebutech/uc
repositorypackage
1.0.0
Repository: https://github.com/jiebutech/uc.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

UC

用户中心

Feature

  • 邮箱注册/登录
  • 手机号注册/登录
  • 发送短信验证码
  • facebook 登录
  • google 登录

Install

加载依赖

go get -u github.com/jiebutech/uc

初始化数据表结构

source ./schema.sql

自定义相关功能需要实现的接口

  • 用户表 => github.com/jiebutech/uc/model.UserEntity
  • 第三方登录表 => github.com/jiebutech/uc/model.OauthUserEntity
  • 用户相关操作 => github.com/jiebutech/uc/model.UserResource
  • 验证码发送器 => github.com/jiebutech/uc/sender.SmsCodeSender
  • 邮箱验证码标题及内容模板 => github.com/jiebutech/uc/sender.CodeMessenger
  • 验证码缓存器 => github.com/jiebutech/uc/cache.Cache

扩展第三方登录实现

  1. 实现github.com/jiebutech/uc/oauth.Oauth接口, 完成登录注册的基本业务流程
  2. 实现github.com/jiebutech/uc/oauth.OauthLoginType接口, 完成登录类型的相关定义

Example

用户中心接口实现