beauty

command module
v0.0.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 29, 2019 License: MIT Imports: 10 Imported by: 0

README

GoDoc

A simple framwork written in golang.

You can build a simple restful project or a web application with it. If you dosen't want to use mysql db, you can implement your own Auth decorates and session.You can use your own DAO or whatever you like.

quick start:

  • run cmd

    mkdir demo && cd demo
    go get gopkg.in/alecthomas/kingpin.v2
    go get github.com/yang-f/beauty
    
  • add $GOPATH/bin to your $PATH

  • run cmd beauty

    usage: beauty [<flags>] <command> [<args> ...]
    
    A command-line tools of beauty.
    
    Flags:
      --help  Show context-sensitive help (also try --help-long and --help-man).
    
    Commands:
      help [<command>...]
        Show help.
    
      demo
        Demo of web server.
    
      generate <name>
        Generate a new app.
    
  • test beauty

    beauty demo
    
  • then

    2017/05/04 16:21:05 start server on port :8080
    
  • visit 127.0.0.1:8080

    {"description":"this is json"}
    
  • visit 127.0.0.1:8080/demo1

    {"status":403,"description":"token not found.","code":"AUTH_FAILED"}
    
  • visit 127.0.0.1:8080/demo2

    {"description":"this is json"}
    
  • visit 127.0.0.1:8080/demo3

    {"status":403,"description":"token not found.","code":"AUTH_FAILED"}
    

How to use:

  • Generate new app

    beauty generate yourAppName
    
  • dir list

    GOPATH/src/yourAppName
    ├── controllers
    │   ├── adminController.go
    │   └── controller_test.go
    ├── decorates
    |   └── http.go
    ├── main.go
    ├── models
    ├── tpl
    └── utils
    
  • about Route

    • demo
        r := router.New()
    
        r.GET("/", controllers.Config().ContentJSON())
    
        r.GET("/demo1", controllers.Config().ContentJSON().Auth())
    
        r.GET("/demo2", controllers.Config().ContentJSON().Verify())
    
        r.GET("/demo3", controllers.Config().ContentJSON().Auth().Verify())
    
    
  • token generate

    tokenString, err := token.Generate(fmt.Sprintf("%v|%v", user_id, user_pass))
    
    
  • demo

    package main
    
    import (
        "net/http"
        "github.com/yang-f/beauty/consts/contenttype"
        "github.com/yang-f/beauty/utils/log"
        "github.com/yang-f/beauty/router"
        "github.com/yang-f/beauty/settings"
        "github.com/yang-f/beauty/controllers"
        "github.com/yang-f/beauty/decorates"
    
    )
    
    func main() {
    
        log.Printf("start server on port %s", settings.Listen)
    
        settings.Listen = ":8080"
    
        settings.Domain = "yourdomain.com"
    
        settings.LogFile = "/your/path/yourname.log"
    
        settings.DefaultOrigin = "http://defaultorigin.com"
    
        settings.HmacSampleSecret = "whatever"
    
        r := router.New()
    
        r.GET("/", controllers.Config().ContentJSON())
    
        r.GET("/demo1", controllers.Config().ContentJSON().Auth())
    
        r.GET("/demo2", controllers.Config().ContentJSON().Verify())
    
        r.GET("/demo3", controllers.Config().ContentJSON().Auth().Verify())
    
        log.Fatal(http.ListenAndServe(settings.Listen, r))
    
    }
    

Support:

  • token

    settings.HmacSampleSecret = "whatever"
    
    token, err := token.Generate(origin)
    
    origin, err := token.Valid(token)
    
  • db

    db.Query(sql, params...)
    
  • cors

    • static file server
    router.PathPrefix("/static/").Handler(http.StripPrefix("/static/", decorates.CorsHeader2(http.FileServer(http.Dir("/your/static/path")))))
    
    • api etc:
      • default is cors
  • log

    • use
    settings.LogFile = "/you/log/path/beauty.log"
    
    log.Printf(msg, params...)
    
    • auto archive
  • sessions

    currentUser := sessions.CurrentUser(r *http.Request)
    
  • error handler

    func XxxxController() decorates.Handler{
        return func (w http.ResponseWriter, r *http.Request) *models.APPError {
            xxx,err := someOperation()
            if err != nil{
                return &models.APPError {err, Message, Code, Status}
            }
            ...
            return nil
        }
    }
    
  • utils

    • Response
    • Rand
    • MD5
    • Post
  • test

    • go test -v -bench=".*"
    • go test -v -short $(go list ./... | grep -v /vendor/)
    • ...

Etc:

  • sql

    create database yourdatabase;
    use yourdatabase;
    create table if not exists user
    (
        user_id int primary key not null  auto_increment,
        user_name varchar(64),
        user_pass varchar(64),
        user_mobile varchar(32),
        user_type enum('user', 'admin', 'test') not null,
        add_time timestamp not null default CURRENT_TIMESTAMP
    );
    
    insert into user (user_name, user_pass) values('admin', 'admin');
    
  • you need set a json file in '/srv/filestore/settings/latest.json' format like this

    {
        "mysql_host":"127.0.0.1:3306",
        "mysql_user":"root",
        "mysql_pass":"root",
        "mysql_database":"yourdatabase"
    }
    

Contributing:

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -m 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

TODO:

  • Cmd tools
  • Improve document
  • Role review

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
consts
log

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL