blaze-api

module
v0.0.0-...-833fa1d Latest Latest
Warning

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

Go to latest
Published: Apr 3, 2024 License: Apache-2.0

README

blaze-api

Tests Go Report Card Coverage Status

Blaze-API is a foundational template for building and deploying APIs in Go. This template is designed to provide a basic structure for creating both RESTful and GraphQL APIs. It includes essential features such as user management, account handling, role-based access control (RBAC), and JWT authentication.

  • Users: Manage user data and interactions.
  • Accounts: Handle account operations and storage.
  • Roles: Implement Role-Based Access Control (RBAC) for managing user permissions.
  • Permissions: Define and manage access rights for different roles.
  • JWT Authentication: Secure your API with JWT-based authentication.
  • GraphQL API: Integrated GraphQL support for building flexible APIs.
  • REST API: RESTful API interface for your application.
  • Swagger API documentation: Generate comprehensive API documentation with Swagger.
  • Tests: Comprehensive test suite for maintaining code quality.
  • Logging: Robust logging for monitoring and debugging.

Quick Start

Installation

To install Blaze-API, run the following command:

go get github.com/geniusrabbit/blaze-api
Example Usage

Below is a brief example to get you started with Blaze-API.

// @see example/api/main.go
package main

import (
  ...
  "github.com/geniusrabbit/blaze-api/context/ctxlogger"
  "github.com/geniusrabbit/blaze-api/context/permissionmanager"
  "github.com/geniusrabbit/blaze-api/database"
  "github.com/geniusrabbit/blaze-api/middleware"
  "github.com/geniusrabbit/blaze-api/permissions"
  "github.com/geniusrabbit/blaze-api/profiler"
  "github.com/geniusrabbit/blaze-api/repository/historylog/middleware/gormlog"
)

func main() {
  ...

  // Register callback for history log (only for modifications)
  gormlog.Register(masterDatabase)

  // Init permission manager
  permissionManager := permissions.NewManager(masterDatabase, conf.Permissions.RoleCacheLifetime)
  appinit.InitModelPermissions(permissionManager)

  // Init OAuth2 provider
  oauth2provider, jwtProvider := appinit.Auth(ctx, conf, masterDatabase)

    // Init HTTP server
  httpServer := server.HTTPServer{
    OAuth2provider: oauth2provider,
    JWTProvider:    jwtProvider,
    SessionManager: appinit.SessionManager("session", 60*time.Minute),
    AuthOption: gocast.IfThen(conf.IsDebug(), &middleware.AuthOption{
      DevToken:     conf.Session.DevToken,
      DevUserID:    conf.Session.DevUserID,
      DevAccountID: conf.Session.DevAccountID,
    }, nil),
    ContextWrap: func(ctx context.Context) context.Context {
      ctx = ctxlogger.WithLogger(ctx, loggerObj)
      ctx = database.WithDatabase(ctx, masterDatabase, slaveDatabase)
      ctx = permissionmanager.WithManager(ctx, permissionManager)
      return ctx
    },
  }
  httpServer.Run(ctx, ":8080")
}
Extend existing GraphQL API

To extend the existing GraphQL API, you need to create a new schema file in the src/graphql/schemas folder. Then, you need to add the new schema file to the gqlgen.yml configuration file. Finally, you need to run the go generate command to generate the new GraphQL API.

# Generate the server inside the folder
# > go run github.com/99designs/gqlgen

# Where are all the schema files located? globs are supported eg  src/**/*.graphqls
schema:
  - ./schemas/*.graphql
  - ../../vendor/github.com/geniusrabbit/blaze-api/protocol/graphql/schemas/*.graphql

skip_mod_tidy: yes

# Where should the generated server code go?
exec:
  filename: ../../internal/server/graphql/generated/exec.go
  package: generated

# federation:
#   filename: ../../lib/server/graphql/generated/federation.go
#   package: generated

model:
  filename: ../../internal/server/graphql/models/generated.go
  package: models

# Where should the resolver implementations go?
resolver:
  layout: follow-schema
  dir: ../../internal/server/graphql/resolvers
  package: resolvers

# Optional: turn on use ` + "`" + `gqlgen:"fieldName"` + "`" + ` tags in your models
# struct_tag: json

# Optional: turn on to use []Thing instead of []*Thing
omit_slice_element_pointers: false

# Optional: set to speed up generation time by not performing a final validation pass.
skip_validation: true

# gqlgen will search for any type names in the schema in these go packages
# if they match it will use them, otherwise it will generate them.
autobind:
  - github.com/geniusrabbit/blaze-api/server/graphql/models

# This section declares type mapping between the GraphQL and go type systems
#
# The first line in each type will be used as defaults for resolver arguments and
# modelgen, the others will be allowed when binding to fields. Configure them to
# your liking
models:
  ID:
    model:
      - github.com/99designs/gqlgen/graphql.ID
      - github.com/99designs/gqlgen/graphql.Int
      - github.com/99designs/gqlgen/graphql.Int64
      - github.com/99designs/gqlgen/graphql.Int32
  Int:
    model:
      - github.com/99designs/gqlgen/graphql.Int
      - github.com/99designs/gqlgen/graphql.Int64
      - github.com/99designs/gqlgen/graphql.Int32
  Int64:
    model:
      - github.com/99designs/gqlgen/graphql.Int64
  Time:
    model: github.com/geniusrabbit/blaze-api/server/graphql/types.Time
  TimeDuration:
    model: github.com/geniusrabbit/blaze-api/server/graphql/types.TimeDuration
  DateTime:
    model: github.com/geniusrabbit/blaze-api/server/graphql/types.DateTime
  JSON:
    model: github.com/geniusrabbit/blaze-api/server/graphql/types.JSON
  NullableJSON:
    model: github.com/geniusrabbit/blaze-api/server/graphql/types.NullableJSON
  UUID:
    model: github.com/geniusrabbit/blaze-api/server/graphql/types.UUID
  ID64:
    model: github.com/geniusrabbit/blaze-api/server/graphql/types.ID64
  # Connectors
  UserConnection:
    model: github.com/geniusrabbit/blaze-api/server/graphql/connectors.UserConnection
  AccountConnection:
    model: github.com/geniusrabbit/blaze-api/server/graphql/connectors.AccountConnection
  MemberConnection:
    model: github.com/geniusrabbit/blaze-api/server/graphql/connectors.MemberConnection
  RBACRoleConnection:
    model: github.com/geniusrabbit/blaze-api/server/graphql/connectors.RBACRoleConnection
  AuthClientConnection:
    model: github.com/geniusrabbit/blaze-api/server/graphql/connectors.AuthClientConnection
  HistoryActionConnection:
    model: github.com/geniusrabbit/blaze-api/server/graphql/connectors.HistoryActionConnection
  OptionConnection:
    model: github.com/geniusrabbit/blaze-api/server/graphql/connectors.OptionConnection

TODO features

  • OAuth2 add authorization providers: Google, Facebook, LinkedIn, GitHub, etc.
  • OAuth2 remote authorization.
  • REST API: RESTful API interface for your application.
  • Swagger API documentation: Generate comprehensive API documentation with Swagger.
  • GraphQL API: Integrated GraphQL support for building flexible APIs.
  • Support different databases (PostgreSQL, MySQL, SQLite, etc.)
  • OAuth2 server and client support.
  • RBAC: Role-Based Access Control (RBAC) for managing user permissions.
  • JWT Authentication: Secure your API with JWT-based authentication.
  • Object modification history log.
  • Profiler: Integrated profiler for monitoring and debugging.
  • Mailer/messanger support (abstract interface layer).
  • Add support OpenTelemetry-Go

Directories

Path Synopsis
example
api/cmd/api/appcontext
Package appcontext provides config options
Package appcontext provides config options
pkg
acl
auth/elogin
Package elogin provides auth middle procedures for remote authentication including oauth2 and other protocols, and specific providers like google, facebook, etc.
Package elogin provides auth middle procedures for remote authentication including oauth2 and other protocols, and specific providers like google, facebook, etc.
auth/oauth2/serverprovider/mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
gopentracing
Package gopentracing inites some opentracing interface
Package gopentracing inites some opentracing interface
middleware
Package middleware provides auth middle procedures
Package middleware provides auth middle procedures
Package repository contains control entety repositories
Package repository contains control entety repositories
account
Package account present full API functionality of the specific object
Package account present full API functionality of the specific object
account/mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
account/repository
Package repository implements methods of working with the repository objects
Package repository implements methods of working with the repository objects
account/usecase
Package usecase account implementation
Package usecase account implementation
authclient
Package account present full API functionality of the specific object
Package account present full API functionality of the specific object
authclient/mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
authclient/repository
Package repository implements methods of working with the repository objects
Package repository implements methods of working with the repository objects
authclient/usecase
Package usecase account implementation
Package usecase account implementation
historylog
Package account present full API functionality of the specific object
Package account present full API functionality of the specific object
historylog/mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
historylog/repository
Package repository implements methods of working with the repository objects
Package repository implements methods of working with the repository objects
historylog/usecase
Package usecase account implementation
Package usecase account implementation
option
Package option present full API functionality of the specific object
Package option present full API functionality of the specific object
option/mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
option/repository
Package repository implements methods of working with the repository objects
Package repository implements methods of working with the repository objects
option/usecase
Package usecase account implementation
Package usecase account implementation
rbac
Package account present full API functionality of the specific object
Package account present full API functionality of the specific object
rbac/mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
rbac/repository
Package repository implements methods of working with the repository objects
Package repository implements methods of working with the repository objects
rbac/usecase
Package usecase account implementation
Package usecase account implementation
user
Package user present full API functionality of the specific object
Package user present full API functionality of the specific object
user/mocks
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
user/repository
Package repository implements methods of working with the repository objects
Package repository implements methods of working with the repository objects
user/usecase
Package usecase user managing
Package usecase user managing
server

Jump to

Keyboard shortcuts

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