Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
/usersPublic

Common Web User Workflows in Go

License

NotificationsYou must be signed in to change notification settings

rivo/users

Repository files navigation

Godoc ReferenceGo Report

This Go package providesnet/http handlers for the following functions:

  • Signing up for a new user account
  • Logging in and out
  • Checking login status
  • Resetting forgotten passwords
  • Changing email and password

Forms of the github.com/rivo/users package

Special emphasis is placed on reducing the risk of someone hijacking user accounts. This is achieved by enforcing a certain user structure and following certain procedures:

  • Users are identified by their email address.
  • New or changed email addresses must be verified by clicking on a link emailed to that address.
  • Users authenticate by entering their email address and a password.
  • Password strength checks (based on NIST recommendations).
  • Forgotten passwords are reset by clicking on a link emailed to the user.
  • It usesgithub.com/rivo/sessions (cookie-based web sessions).

Installation

go get github.com/rivo/users

Simple Example

Theusers.Main() function registers all handlers and starts an HTTP server:

iferr:=users.Main();err!=nil {panic(err)}

Alternatively, register the handlers and start the server yourself:

http.HandleFunc(users.Config.RouteSignUp,users.SignUp)http.HandleFunc(users.Config.RouteVerify,users.Verify)http.HandleFunc(users.Config.RouteLogIn,users.LogIn)http.HandleFunc(users.Config.RouteLogOut,users.LogOut)http.HandleFunc(users.Config.RouteForgottenPassword,users.ForgottenPassword)http.HandleFunc(users.Config.RouteResetPassword,users.ResetPassword)http.HandleFunc(users.Config.RouteChange,users.Change)iferr:=http.ListenAndServe(users.Config.ServerAddr,nil);err!=nil {panic(err)}

If you use these handlers as they are, you will need access to an SMTP mail server (for email verification and password reset emails).

For pages behind the login, you can use theusers.IsLoggedIn() function in your own handler:

user,_,_:=users.IsLoggedIn(response,request)ifuser==nil {users.RenderProgramError(response,request,"You must be logged in","",nil)return}fmt.Fprintf(response,"You are logged in: %s",user.GetEmail())

Configuration

This package uses Golang HTML templates for the various pages and text templates for the various emails sent to the user. Basic templates are provided which can be customized to your needs. Internationalization is supported via the "lang" browser cookie.

Theusers.User type is an interface. Bring your own user model.

Theusers.Config struct provides a number of fields with sensible defaults but which may be customized for your application. Refer to theGodoc documentation for details.

No specific database backend is assumed. The functions to load and save users default to a RAM-based solution but can be customized to access your individual database.

Documentation

Seehttp://godoc.org/github.com/rivo/users for the documentation.

See also thehttps://github.com/rivo/users/wiki for more examples and explanations.

Your Feedback

Add your issue here on GitHub. Feel free to get in touch if you have any questions.

Release Notes

  • v0.2 (2017-12-04)
    • Changed signature of LoggedIn(), simpler handling
  • v0.1 (2017-11-17)
    • First release.

About

Common Web User Workflows in Go

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp