• Stars
    star
    53
  • Rank 533,371 (Top 11 %)
  • Language
    Go
  • License
    MIT License
  • Created almost 4 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

a tool for handling file uploads simple
                         
 β–„β–„β–„β–„    β–„β–„β–„       β–ˆβ–ˆβ–€β–ˆβ–ˆβ–ˆ   β–„β–„β–„       β–ˆβ–ˆ β–„β–ˆβ–€β–„β–„β–„      
β–“β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–„ β–’β–ˆβ–ˆβ–ˆβ–ˆβ–„    β–“β–ˆβ–ˆ β–’ β–ˆβ–ˆβ–’β–’β–ˆβ–ˆβ–ˆβ–ˆβ–„     β–ˆβ–ˆβ–„β–ˆβ–’β–’β–ˆβ–ˆβ–ˆβ–ˆβ–„    
β–’β–ˆβ–ˆβ–’ β–„β–ˆβ–ˆβ–’β–ˆβ–ˆ  β–€β–ˆβ–„  β–“β–ˆβ–ˆ β–‘β–„β–ˆ β–’β–’β–ˆβ–ˆ  β–€β–ˆβ–„  β–“β–ˆβ–ˆβ–ˆβ–„β–‘β–’β–ˆβ–ˆ  β–€β–ˆβ–„  
β–’β–ˆβ–ˆβ–‘β–ˆβ–€  β–‘β–ˆβ–ˆβ–„β–„β–„β–„β–ˆβ–ˆ β–’β–ˆβ–ˆβ–€β–€β–ˆβ–„  β–‘β–ˆβ–ˆβ–„β–„β–„β–„β–ˆβ–ˆ β–“β–ˆβ–ˆ β–ˆβ–„β–‘β–ˆβ–ˆβ–„β–„β–„β–„β–ˆβ–ˆ 
β–‘β–“β–ˆ  β–€β–ˆβ–“ β–“β–ˆ   β–“β–ˆβ–ˆβ–’β–‘β–ˆβ–ˆβ–“ β–’β–ˆβ–ˆβ–’ β–“β–ˆ   β–“β–ˆβ–ˆβ–’β–’β–ˆβ–ˆβ–’ β–ˆβ–„β–“β–ˆ   β–“β–ˆβ–ˆβ–’
β–‘β–’β–“β–ˆβ–ˆβ–ˆβ–€β–’ β–’β–’   β–“β–’β–ˆβ–‘β–‘ β–’β–“ β–‘β–’β–“β–‘ β–’β–’   β–“β–’β–ˆβ–‘β–’ β–’β–’ β–“β–’β–’β–’   β–“β–’β–ˆβ–‘
β–’β–‘β–’   β–‘   β–’   β–’β–’ β–‘  β–‘β–’ β–‘ β–’β–‘  β–’   β–’β–’ β–‘β–‘ β–‘β–’ β–’β–‘ β–’   β–’β–’ β–‘
 β–‘    β–‘   β–‘   β–’     β–‘β–‘   β–‘   β–‘   β–’   β–‘ β–‘β–‘ β–‘  β–‘   β–’   
 β–‘            β–‘  β–‘   β–‘           β–‘  β–‘β–‘  β–‘        β–‘  β–‘
      β–‘                                              
	

Go Report Card codecov Build Status go.dev reference

a tool for handling file uploads for http servers

makes it easier to make operations with files from the http request.

Contents

Install

go get github.com/xis/baraka/v2

Simple Usage

func main() {
	// create a parser
	parser := baraka.NewParser(baraka.ParserOptions{
		MaxFileSize:   5 << 20,
		MaxFileCount:  5,
		MaxParseCount: 5,
	})

	store := baraka.NewFilesystemStorage("./files")

	router := gin.Default()
	router.POST("/upload", func(c *gin.Context) {
		// parse
		request, err := parser.Parse(c.Request)
		if err != nil {
			fmt.Println(err)
		}

		// get the form
		images, err := request.GetForm("images")
		if err != nil {
			fmt.Println(err)
		}

		// save
		for key, image := range images {
			err = store.Save("images", "image_"+strconv.Itoa(key), image)
			if err != nil {
				fmt.Println(err)
			}
		}
	})
	router.Run()
}

You can use baraka with the other http server libraries, just pass the http.Request to the parser.Parse function.

Filtering Parts

You can filter parts by their properties, like part's content type. Parser can inspect the part's bytes and detect the type of the part with the Inspector.

// create a parser
parser := baraka.NewParser(baraka.ParserOptions{
	MaxFileSize:   5 << 20,
	MaxFileCount:  5,
	MaxParseCount: 5,
})

// give parser an inspector
parser.SetInspector(baraka.NewDefaultInspector(512))
// give parser a filter
parser.SetFilter(baraka.NewExtensionFilter(".jpg"))

Now parser will inspect the each part and it will just return the jpeg ones from the Parse function. You can make your own Inspector and Filter.

Contribute

Pull requests are welcome. please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT