swifttest

package
v0.0.0-...-f999bcc Latest Latest
Warning

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

Go to latest
Published: Jul 4, 2020 License: MIT Imports: 29 Imported by: 0

Documentation

Overview

This implements a very basic Swift server Everything is stored in memory

This comes from the https://github.com/mitchellh/goamz and was adapted for Swift

Index

Constants

This section is empty.

Variables

View Source
var (
	DEBUG        = false
	TEST_ACCOUNT = "swifttest"
)

Functions

This section is empty.

Types

type AutoExtractResponse

type AutoExtractResponse struct {
	CreatedFiles int64      `json:"Number Files Created"`
	Status       string     `json:"Response Status"`
	Errors       [][]string `json:"Errors"`
}

type Folder

type Folder struct {
	Count int64  `json:"count"`
	Bytes int64  `json:"bytes"`
	Name  string `json:"name"`
}

The Folder type represents a container stored in an account

type HandlerOverrideFunc

type HandlerOverrideFunc func(w http.ResponseWriter, r *http.Request, recorder *httptest.ResponseRecorder)

type Key

type Key struct {
	Key          string `json:"name"`
	LastModified string `json:"last_modified"`
	Size         int64  `json:"bytes"`
	// ETag gives the hex-encoded MD5 sum of the contents,
	// surrounded with double-quotes.
	ETag        string `json:"hash"`
	ContentType string `json:"content_type"`
}

The Key type represents an item stored in an container.

type Subdir

type Subdir struct {
	Subdir string `json:"subdir"`
}

type SwiftServer

type SwiftServer struct {
	sync.RWMutex

	Listener net.Listener
	AuthURL  string
	URL      string
	Accounts map[string]*account
	Sessions map[string]*session
	// contains filtered or unexported fields
}

func NewSwiftServer

func NewSwiftServer(address string) (*SwiftServer, error)

func (*SwiftServer) Close

func (srv *SwiftServer) Close()

func (*SwiftServer) SetOverride

func (s *SwiftServer) SetOverride(path string, fn HandlerOverrideFunc)

func (*SwiftServer) UnsetOverride

func (s *SwiftServer) UnsetOverride(path string)

Jump to

Keyboard shortcuts

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