Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elixir-waffle/waffle
Flexible file upload and attachment library for Elixir
https://github.com/elixir-waffle/waffle
Last synced: about 1 month ago
JSON representation
Flexible file upload and attachment library for Elixir
- Host: GitHub
- URL: https://github.com/elixir-waffle/waffle
- Owner: elixir-waffle
- Created: 2019-08-25T11:39:00.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-17T17:29:49.000Z (6 months ago)
- Last Synced: 2024-10-02T07:45:37.569Z (2 months ago)
- Language: Elixir
- Size: 417 KB
- Stars: 727
- Watchers: 9
- Forks: 71
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Flexible file upload and attachment library for Elixir. (Files and Directories)
- fucking-awesome-elixir - waffle - Flexible file upload and attachment library for Elixir. (Files and Directories)
- awesome-elixir - waffle - Flexible file upload and attachment library for Elixir. (Files and Directories)
README
[hex-img]: http://img.shields.io/hexpm/v/waffle.svg
[hexdocs-img]: http://img.shields.io/badge/hexdocs-documentation-brightgreen.svg
[evrone-img]: https://img.shields.io/badge/Sponsored_by-Evrone-brightgreen.svg
# Waffle [![Sponsored by Evrone][evrone-img]](https://evrone.com?utm_source=waffle)
[![Hex.pm Version][hex-img]](https://hex.pm/packages/waffle)
[![waffle documentation][hexdocs-img]](https://hexdocs.pm/waffle)![Waffle is a flexible file upload library for Elixir](https://elixir-waffle.github.io/waffle/assets/logo.svg)
Waffle is a flexible file upload library for Elixir with straightforward integrations for Amazon S3 and ImageMagick.
[Documentation](https://hexdocs.pm/waffle)
## Installation
Add the latest stable release to your `mix.exs` file, along with the
required dependencies for `ExAws` if appropriate:```elixir
defp deps do
[
{:waffle, "~> 1.1"},# If using S3:
{:ex_aws, "~> 2.1.2"},
{:ex_aws_s3, "~> 2.0"},
{:hackney, "~> 1.9"},
{:sweet_xml, "~> 0.6"}
]
end
```Then run `mix deps.get` in your shell to fetch the dependencies.
## Usage
After installing Waffle, another two things should be done:
1. setup a storage provider
2. define a definition module### Setup a storage provider
Waffle has two built-in storage providers:
* `Waffle.Storage.Local`
* `Waffle.Storage.S3`[Other available storage providers](#other-storage-providers)
are supported by the community.An example for setting up `Waffle.Storage.Local`:
```elixir
config :waffle,
storage: Waffle.Storage.Local,
asset_host: "http://static.example.com" # or {:system, "ASSET_HOST"}
```An example for setting up `Waffle.Storage.S3`:
```elixir
config :waffle,
storage: Waffle.Storage.S3,
bucket: "custom_bucket", # or {:system, "AWS_S3_BUCKET"}
asset_host: "http://static.example.com" # or {:system, "ASSET_HOST"}config :ex_aws,
json_codec: Jason
# any configurations provided by https://github.com/ex-aws/ex_aws
```### Define a definition module
Waffle requires a **definition module** which contains the relevant
functions to store and retrieve files:* Optional transformations of the uploaded file
* Where to put your files (the storage directory)
* How to name your files
* How to secure your files (private? Or publicly accessible?)
* Default placeholdersThis module can be created manually or generated by `mix waffle.g`
automatically.As an example, we will generate a definition module for handling
avatars:mix waffle.g avatar
This should generate a file at `lib/[APP_NAME]_web/uploaders/avatar.ex`.
Check this file for descriptions of configurable options.## Examples
* [An example for Local storage driver](documentation/examples/local.md)
* [An example for S3 storage driver](documentation/examples/s3.md)## Usage with Ecto
Waffle comes with a companion package for use with Ecto. If you
intend to use Waffle with Ecto, it is highly recommended you also
add the
[`waffle_ecto`](https://github.com/elixir-waffle/waffle_ecto)
dependency. Benefits include:* Changeset integration
* Versioned urls for cache busting (`.../thumb.png?v=63601457477`)## Other Storage Providers
* **Rackspace** - [arc_rackspace](https://github.com/lokalebasen/arc_rackspace)
* **Manta** - [arc_manta](https://github.com/onyxrev/arc_manta)
* **OVH** - [arc_ovh](https://github.com/stephenmoloney/arc_ovh)
* **Google Cloud Storage** - [waffle_gcs](https://github.com/elixir-waffle/waffle_gcs)
* **Microsoft Azure Storage** - [arc_azure](https://github.com/phil-a/arc_azure)
* **Aliyun OSS Storage** - [waffle_aliyun_oss](https://github.com/ug0/waffle_aliyun_oss)
## TestingThe basic test suite can be run with without supplying any S3 information:
```
mix test
```In order to test S3 capability, you must have access to an S3/equivalent bucket. For
S3 buckets, the bucket must be configured to allow ACLs and it must allow public
access.The following environment variables will be used by the test suite:
* WAFFLE_TEST_BUCKET
* WAFFLE_TEST_BUCKET2
* WAFFLE_TEST_S3_KEY
* WAFFLE_TEST_S3_SECRET
* WAFFLE_TEST_REGIONAfter setting these variables, you can run the full test suite with `mix test --include s3:true`.
## Attribution
Great thanks to Sean Stavropoulos (@stavro) for the original awesome work on the library.
This project is forked from [Arc](https://github.com/stavro/arc) from the version `v0.11.0`.
## License
Copyright 2019 Boris Kuznetsov
Copyright 2015 Sean Stavropoulos
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.