Skip to content
/ exclusive-go-hexa Public template

Preparing the resource for the Course Exclusive Golang Hexagonal Architecture Course & APIs Hexagonal Template it selft

Notifications You must be signed in to change notification settings

billowdev/exclusive-go-hexa

Repository files navigation

Hexagonal

This project follows the Hexagonal Architecture (also known as Ports and Adapters Architecture), which aims to create a clear separation between the core business logic and external systems. The structure of the project is designed to ensure maintainability, testability, and scalability by decoupling various components.

Project Structure

cmd Contains the main application entry points. This is where the application starts and is responsible for setting up the application context, configuration, and running the server.

internal The core of the application is divided into several packages:

  • adapters: Contains the implementations for interacting with external systems.

    • app: Application-level adapters.
    • database: Database-related adapters, including models and seeders.
      • models: Database models used for ORM.
      • seeders: Scripts for populating the database with initial data.
    • http: HTTP-related adapters, including handlers and routers.
      • handlers: HTTP request handlers, organized by domain (e.g., documents, orders, system_fields).
      • routers: Routing configurations for handling HTTP requests and responses.
    • repositories: Data access repositories, organized by domain (e.g., documents, orders, system_fields).
  • core: Contains the business logic and domain-specific code.

    • domain: Domain models and business entities, organized by domain (e.g., documents, orders, system_fields).
    • ports: Interfaces that define the interactions between the core domain and the external systems.
      • documents, master_files, orders, system_fields: Ports for different domains.
  • services: Business logic and use cases, organized by domain (e.g., documents, orders, system_fields).

pkg Contains shared utilities and helpers that can be used across the application.

  • configs: Configuration management.
  • helpers: Utility functions for various tasks.
  • filters: Helpers for filtering data.
  • pagination: Helpers for pagination.
  • utils: Additional utility functions, such as Argon2ID for password hashing

Hexagonal Architecture

Core Concepts

  • Domain: The core business logic and rules are encapsulated within the core package. This includes the domain models, services, and ports.
  • Ports: Interfaces in the core/ports package define the required interactions between the domain and external systems. Adapters: The internal/adapters package contains implementations that interact with external systems (e.g., HTTP handlers, database repositories). These adapters convert data to and from the domain format.

How It Works

  • Application Initialization: The cmd package initializes the application, setting up necessary configurations and dependencies.

  • Business Logic: The core business logic is contained in the core package. It remains independent of external systems and is only influenced by the interfaces (ports) it defines.

  • Interaction with External Systems: Adapters in the internal/adapters package implement the interfaces defined in the core/ports package. These adapters handle data persistence (e.g., in databases) and external communication (e.g., HTTP requests).

  • Routing and Handlers: The http/routers package sets up the routing for incoming HTTP requests. The http/handlers package contains the logic for processing these requests and invoking the appropriate business logic.

  • Frontend: The views package contains the front-end code, including static assets and UI components.

Read more

GraphQL

1. Init by use gqlgen

go run github.com/99designs/gqlgen init

2. move graph to /internal/adapters/gql

3. rm server.go

4. modify gqlgen.yml

  • 4.1 schema โครงสร้าง ของ graphQL ว่าเรามี object model
schema:
- graph/*.graphqls

to

schema:
- internal/adapters/gql/schema/*.graphqls

NOTE: mkdir schema inside internal/adapters/gql/ and move schema.graphqls to internal/adapters/gql/schema/schema.graphqls

  • 4.2 exec
exec:
  filename: graph/generated.go
  package: graph

to

exec:
  filename: internal/adapters/gql/generated.go
  package: graph
  • 4.3 model
model:
  filename: graph/model/models_gen.go
  package: model

to

model:
  filename: internal/adapters/gql/model/models_gen.go
  package: model
  • 4.4 resolver ส่วนจัดการ view ของ graphQL
resolver:
  layout: follow-schema
  dir: internal/adapters/gql/resolvers
  package: graph
  filename_template: "{name}.resolvers.go"

to

resolver:
  layout: follow-schema
  dir: graph
  package: graph
  filename_template: "{name}.resolvers.go"

NOTE: delete resolver.go & schema.resolvers.go

Example change of gqlgen.yml

  • from
# Where are all the schema files located? globs are supported eg  src/**/*.graphqls
schema:
  - graph/*.graphqls

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


# Where should any generated models go?
model:
  filename: graph/model/models_gen.go
  package: model

# Where should the resolver implementations go?
resolver:
  layout: follow-schema
  dir: graph
  package: graph
  filename_template: "{name}.resolvers.go"
  # Optional: turn on to not generate template comments above resolvers
  # omit_template_comment: false
  • to
# Where are all the schema files located? globs are supported eg  src/**/*.graphqls
schema:
- internal/adapters/gql/schema/*.graphqls

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


# Where should any generated models go?
model:
  filename: internal/adapters/gql/model/models_gen.go
  package: model

# Where should the resolver implementations go?
resolver:
  layout: follow-schema
  dir: internal/adapters/gql/resolvers
  package: graph
  filename_template: "{name}.resolvers.go"
  # Optional: turn on to not generate template comments above resolvers
  # omit_template_comment: false
go run github.com/99designs/gqlgen generate

Transactor

  • WithTransactionContextTimeout Function
package database

import (
	"context"
	"fmt"
	"log"
	"time"

	"gorm.io/gorm"
)

// WithTransactionContextTimeout executes a function within a transaction with a specified context timeout.
// The transaction is committed if successful, or rolled back if an error occurs or the context times out.
func (d *TransactorImpl) WithTransactionContextTimeout(ctx context.Context, timeout time.Duration, tFunc func(ctx context.Context) error) error {
	// Create a new context with timeout
	transactionCtx, cancel := context.WithTimeout(ctx, timeout)
	defer cancel()

	// Start a new transaction
	tx, err := d.BeginTransaction()
	if err != nil {
		return fmt.Errorf("failed to begin transaction: %w", err)
	}

	// Ensure that the transaction is finalized properly
	defer func() {
		select {
		case <-transactionCtx.Done():
			// Rollback if the transaction context is done (timeout or cancel)
			if rollbackErr := d.RollbackTransaction(tx); rollbackErr != nil {
				log.Printf("failed to rollback transaction: %v", rollbackErr)
			}
		default:
			// Commit if no error and context is still valid
			if commitErr := tx.Commit().Error; commitErr != nil {
				log.Printf("failed to commit transaction: %v", commitErr)
				err = commitErr
			}
		}
	}()

	// Run the callback function with the transaction context
	err = tFunc(InjectTx(transactionCtx, tx))
	if err != nil {
		tx.Error = err // Mark the transaction as needing a rollback
		return err
	}

	return nil
}
  • Explanation
  1. Context with Timeout:
  • Creates a new context with a specified timeout using context.WithTimeout. This context will be used for the transaction operations.
  1. Start Transaction:
  • Begins a new transaction with BeginTransaction.
  1. Deferred Finalization:
  • Uses defer to ensure the transaction is finalized correctly:
    • Rollback on Timeout or Cancellation: Rolls back the transaction if the context is canceled or times out.
    • Commit on Success: Commits the transaction if it completes successfully within the timeout period.
  1. Function Execution: Executes the provided function tFunc within the transaction context, passing the transaction as part of the context using InjectTx.
  2. Error Handling:
  • Sets the transaction error to indicate a rollback is needed if tFunc returns an error.

  • Logs errors during commit and rollback operations.

  • Usage Example

// CreateSeaPort attempts to create a new sea port entry within a transaction.
// It uses the WithTransactionContextTimeout function to ensure that the transaction
// is managed properly with a specified timeout.
func (s *SeaPortServicesImpl) CreateSeaPort(ctx context.Context, payload domain.SeaPortDomain) utils.APIV2Response {
    var result utils.APIV2Response

    // Use the WithTransactionContextTimeout function to handle the transaction
    err := s.transactor.WithTransactionContextTimeout(ctx, 5*time.Second, func(txCtx context.Context) error {
        // Convert the domain payload to a model suitable for database operations
        data := domain.ToSeaPortModel(payload)
        
        // Create the sea port entry in the database using the transaction context
        if err := s.repo.CreateSeaPort(txCtx, data); err != nil {
            return err // Return error to trigger rollback
        }
        
        // If no errors occurred, prepare a successful response
        result = utils.APIV2Response{
            StatusCode:    utils.API_SUCCESS_CODE,
            StatusMessage: "Success",
            Data:          domain.ToSeaPortDomain(data),
        }
        return nil // Indicate success
    })

    // Check if there was an error during the transaction
    if err != nil {
        // Prepare an error response if something went wrong
        result = utils.APIV2Response{
            StatusCode:    utils.API_ERROR_CODE,
            StatusMessage: "Error",
            Data:          err,
        }
    }

    // Return the result of the transaction
    return result
}

Using WithinTransaction:

func (s *SeaPortServicesImpl) CreateSeaPort(ctx context.Context, payload domain.SeaPortDomain) utils.APIV2Response {
	var result utils.APIV2Response

	// Create a context with a timeout for the transaction
	ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
	defer cancel()

	// Use the WithinTransaction function to handle the transaction
	err := s.transactor.WithinTransaction(ctx, func(txCtx context.Context) error {
		// Convert the domain payload to a model suitable for database operations
		data := domain.ToSeaPortModel(payload)

		// Create the sea port entry in the database using the transaction context
		if err := s.repo.CreateSeaPort(txCtx, data); err != nil {
			return err // Return error to trigger rollback
		}

		// If no errors occurred, prepare a successful response
		result = utils.APIV2Response{
			StatusCode:    utils.API_SUCCESS_CODE,
			StatusMessage: "Success",
			Data:          domain.ToSeaPortDomain(data),
		}
		return nil // Indicate success
	})

	// Check if there was an error during the transaction
	if err != nil {
		// Prepare an error response if something went wrong
		result = utils.APIV2Response{
			StatusCode:    utils.API_ERROR_CODE,
			StatusMessage: "Error",
			Data:          err,
		}
	}

	// Return the result of the transaction
	return result
}

Key Differences WithinTransaction & WithTransactionContextTimeout

  1. Timeout Management:
  • WithTransactionContextTimeout: Manages both transaction and context timeout internally.
  • WithinTransaction: Requires separate context timeout management; transaction timeout is handled externally.
  1. Flexibility:
  • WithTransactionContextTimeout: Less flexible for cases where you need different timeout values for transactions and overall request processing.
  • WithinTransaction: Provides more flexibility by allowing you to set a timeout for the transaction context separately.
  1. Complexity:
  • WithTransactionContextTimeout: Combines timeout handling with transaction management, which may be simpler but less flexible.
  • WithinTransaction: Keeps transaction management separate, requiring explicit timeout management but offering more control.
  1. Error Handling:
  • Both methods handle errors similarly by triggering rollbacks on failures. The primary difference is how the timeouts are managed and handled. Summary If you need to manage timeouts for transactions separately from the overall request timeout, using WithinTransaction with an explicitly managed context timeout allows more flexibility and control. If you prefer to encapsulate timeout management within the transaction handling logic itself, WithTransactionContextTimeout may simplify your code but with less flexibility.

About

Preparing the resource for the Course Exclusive Golang Hexagonal Architecture Course & APIs Hexagonal Template it selft

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Languages