• Stars
    star
    204
  • Rank 185,267 (Top 4 %)
  • Language
    Ruby
  • License
    MIT License
  • Created about 9 years ago
  • Updated almost 4 years ago

Reviews

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

Repository Details

Yet another approach to file upload

attache

Gem Version Build Status

But why?

If you're interested in the "why", checkout my slides and the blog post.

Your app can easily support

Run an instance

Heroku

You can run your own instance on your own Heroku server

Deploy

Docker

docker run -it -p 9292:5000 --rm attache/attache

Also, see Deploying Attache on Digital Ocean using Docker

RubyGem

You can install the gem and then execute attache command

gem install attache
attache start -c web=1 -p 9292

NOTE: some config files will be written into your current directory

.
├── Procfile
├── config
│   ├── puma.rb
│   └── vhost.yml
└── config.ru

Bundler

You can also use bundler to manage the gem; add this into your Gemfile

gem 'attache'

then execute

bundle install
bundle exec attache start -c web=1 -p 9292

NOTE: some config files will be written into your current directory (see RubyGems above)

Source code

You can checkout the source code and run it like a regular a Procfile-based app:

git clone https://github.com/choonkeat/attache.git
cd attache
bundle install
foreman start -c web=1 -p 9292

See foreman for more details.

Configuration

LOCAL_DIR is where your local disk cache will be. By default, attache will use a system assigned temporary directory which may not be the same everytime you run attache.

CACHE_SIZE_BYTES determines how much disk space will be used for the local disk cache. If the size of cache exceeds, least recently used files will be evicted after CACHE_EVICTION_INTERVAL_SECONDS duration.

Asynchronous delete

By default attache will delete files from cloud storage using the lightweight, async processing library sucker_punch. This requires no additional setup (read: 1x free dyno).

However if you prefer a more durable queue for reliable uploads, configuring REDIS_PROVIDER or REDIS_URL will switch attache to use a redis queue instead, via sidekiq. Read Sidekiq's documentation for details on these variables.

If for some reason you'd want the cloud storage delete to be synchronous, set INLINE_JOB=1 instead.

Virtual Host Cloud Storage

attache uses a different config (and backup files into a different cloud service) depending on the request hostname that it was accessed by.

This means a single attache server can be the workhorse for different apps. Refer to config/vhost.example.yml file for configuration details.

At boot time, attache server will first look at VHOST environment variable. If that is missing, it will load the content of config/vhost.yml. If neither exist, the attache server run in development mode; uploaded files are only stored locally and may be evicted to free up disk space.

If you do not want to write down sensitive information like aws access key and secrets into a config/vhost.yml file, you can convert the entire content into json format and assign it to the VHOST environment variable instead.

# bash
export VHOST=$(bundle exec rake attache:vhost)

# heroku
heroku config:set VHOST=$(bundle exec rake attache:vhost)

Virtual Host Authorization

By default attache will accept uploads and delete requests from any client. Set SECRET_KEY to ensure attache only receives upload (and delete commands) from your own app.

To most app developers using attache in your rails app through a library like attache-rails gem, how this work may not matter. But if you are developing attache itself or writing a client library for attache, then read on.

Virtual Host Authorization (Developer)

When SECRET_KEY is set, attache will require a valid hmac parameter in the upload request. Upload and Delete requests will be refused with HTTP 401 error unless the hmac is correct.

The additional parameters required for authorized request are:

  • uuid is a uuid string
  • expiration is a unix timestamp of a future time. the significance is, if the timestamp has passed, the upload will be regarded as invalid
  • hmac is the HMAC-SHA1 of the SECRET_KEY and the concatenated value of uuid and expiration

i.e.

hmac = OpenSSL::HMAC.hexdigest(OpenSSL::Digest.new('sha1'), SECRET_KEY, uuid + expiration)

APIs

The attache server is a reference implementation of these interfaces. If you write your own server, compatibility can be verified by running a test suite.

Upload

Users will upload files directly into the attache server from their browser, bypassing the main app.

PUT /upload?file=image123.jpg

file content is the http request body

The main app front end will receive a unique path for each uploaded file - the only information to store in the main app database.

{"path":"pre/fix/image123.jpg","content_type":"image/jpeg","geometry":"1920x1080"}

json response from attache after upload.

Upload by url
GET /upload_url?url=https://example.com/logo.png

Attache will download the file from url supplied and uploads it through the regular /upload handler. So be expecting the same json response after upload. works with GET, POST, PUT.

Data URIs (aka base64 encoded file binaries) can also be uploaded to the same /upload_url endpoint through the same url parameter.

Download

Whenever the main app wants to display the uploaded file, constrained to a particular size, it will use a helper method provided by the attache lib. e.g. embed_attache(path) which will generate the necessary, barebones markup.

<img src="https://example.com/view/pre/fix/100x100/image123.jpg" />

use the imagemagick resize syntax to specify the desired output.

make sure to escape the geometry string. e.g. for a hard crop of 50x50#, the url should be 50x50%23

<img src="https://example.com/view/pre/fix/50x50%23/image123.jpg" />

requesting for a geometry of original will return the uploaded file. this works well for non-image file uploads. requesting for a geometry of remote will skip the local cache and serve from cloud storage.

  • Attache keeps the uploaded file in the local harddisk (a temp directory)
  • Attache will also upload the file into cloud storage if FOG_CONFIG is set
  • If the local file does not exist for some reason (e.g. cleared cache), it will download from cloud storage and store it locally
  • When a specific size is requested, it will generate the resized file based on the local file and serve it in the http response
  • If cloud storage is defined, local disk cache will store up to a maximum of CACHE_SIZE_BYTES bytes. By default CACHE_SIZE_BYTES will 80% of available diskspace

Delete

DELETE /delete
paths=image1.jpg%0Aprefix2%2Fimage2.jpg%0Aimage3.jpg

Removing 1 or more files from the local cache and remote storage can be done via a http POST or DELETE request to /delete, with a paths parameter in the request body.

The paths value should be delimited by the newline character, aka \n. In the example above, 3 files will be requested for deletion: image1.jpg, prefix2/image2.jpg, and image3.jpg.

Backup

POST /backup
paths=image1.jpg%0Aprefix2%2Fimage2.jpg%0Aimage3.jpg

This feature might be known as promote in other file upload solutions. attache allows client app to backup uploaded images to another bucket for longer term storage.

Copying 1 or more files from the default remote storage to the backup remote storage (backup) can be done via a http POST request to /backup, with a paths parameter in the request body.

The paths value should be delimited by the newline character, aka \n. In the example above, 3 files will be requested for backup: image1.jpg, prefix2/image2.jpg, and image3.jpg.

If backup remote storage is not configured, this API call will be a noop. If configured, the backup storage must be accessible by the same credentials as default cloud storage as the system. Please refer to the BACKUP_CONFIG configuration illustrated in config/vhost.example.yml file in this repository.

By default, backup operation is performed synchronously. Set BACKUP_ASYNC environment variable to make it follow the same synchronicity as delete

The main reason to configure a backup storage is to make the default cloud storage auto expire files; mitigating abuse. You should consult the documentation of your cloud storage provider on how to setup auto expiry, e.g. here or here

License

MIT

More Repositories

1

active_params

Automatic strong parameters
Ruby
82
star
2

elm-webapp

A setup for writing http based, client-server app in elm, inspired wholly by lamdera.com
Elm
57
star
3

active_waiter

allow your users to wait for the completion of your `ActiveJob`
Ruby
54
star
4

attache-rails

integrate your Rails app with a attache server
JavaScript
48
star
5

create-elm-server

A setup for writing http based, client-server app in elm, inspired wholly by lamdera.com
Elm
45
star
6

branchesapp

a better git(hub) forks visualizer
Ruby
37
star
7

hquery

Unobtrusive Server Script Implementation for Ruby on Rails
Ruby
28
star
8

yaselect

Yet another CSS-customizable select plugin for jQuery. But this one is more native than the rest.
JavaScript
27
star
9

heroku-log-s3

log drain from heroku to s3. grep by line prefix and buffer upload to s3 as timestamped files
Ruby
25
star
10

postload_google_ads

Solution (that works) to prevent Google ads from stalling your page render
Ruby
19
star
11

hellocrud

generate ORM, GraphQL backend and React JS frontend to CRUD against your database schema
Elm
11
star
12

bounce-email

Clone & update of http://rubyforge.org/projects/bounce-email/
Ruby
10
star
13

poormans-trends

Plug and play trend visualisation for your data.
JavaScript
10
star
14

epicenter

Twitter.com skin
JavaScript
9
star
15

dbmigrate

rails migrate inspired approach to database schema migrations but with plain sql files. and much faster.
Go
9
star
16

pubsubhubbub4r

Simple pubsubhubbub client lib for Ruby. API is Rails-friendly, not dependent.
Ruby
9
star
17

elm-auto-encoder-decoder

cli to watch *.elm file changes and generate Elm encoder and decoders for each type in the source code. used in https://github.com/choonkeat/elm-webapp
Elm
8
star
18

loginsane

standalone authentication server. keeps logins / registrations sane and simple. 4eva.
Ruby
7
star
19

attache-railsapp

Attache server demo
Ruby
7
star
20

GraphQL.html

Given any GraphQL endpoint, render an HTML form
Elm
7
star
21

runtimeerror.js

nodejs app to create github issues, update (and reopen) existing issues. meant for posting production errors to github issues
JavaScript
7
star
22

nativeform

Working with form in Elm without storing raw form state in Elm. Demo at https://nativeform.netlify.app
Elm
6
star
23

sotong

yet another Ruby proxy server
Ruby
6
star
24

web_sg_form_builder

Simplified form builder that produces consistent and semantic form markups
Ruby
6
star
25

elm-openai

Elm library for OpenAI API
Elm
6
star
26

better_scaffold

A modified CRUD generator for Rails, more for solving my own needs
Ruby
5
star
27

gofix

Fixtures in Golang with minimal ceremony
Go
5
star
28

binary_column_table

For whatever reason you need or choose to store blobs in databases, at *least* have the decency to put them all in a separate table
Ruby
5
star
29

activerecord_diy

DIY means Do Indexing Yourself
Ruby
4
star
30

krjs

Keat's RJS - using RJS without messing with your Views
Ruby
4
star
31

tldr-chrome

TLDR by topic sentence
JavaScript
3
star
32

deliveryboy

Email gateway between your application and the world. Deliveryboy strives to keep your applications blissfully ignorant of the world of pain (aka email reputation)
Ruby
3
star
33

tweetstreamproxy

http proxy for twitter api
Ruby
3
star
34

elm-serverless-edge

Elm on Cloudflare Workers & KV store
Elm
3
star
35

elm-webapp-oauth-example

How to add OAuth to an elm-webapp app
Elm
3
star
36

formdata

Demo https://elm-formdata.netlify.app
Elm
2
star
37

meld

meld is a javascript library for unobtrusive "templating" on server-side and on browsers
JavaScript
2
star
38

resize-upload-proxy

the next best thing to client-side image resize: image resize proxy between browser & s3
Ruby
2
star
39

runtimeerror_notifier

runtimeerror_notifier gem for those without email sending resources
Ruby
2
star
40

githubtracker

Yet Another Github Pivotal Tracker Sync
Go
1
star
41

poormans_trends

Some numbers from the database
Ruby
1
star
42

paperclip_to_attache

Sample project implemented with Paperclip upgrades to Attache
Ruby
1
star
43

elm-element-navigation

How to Browser.element with SPA navigation? Look at the `Pull Requests` tab of this repo
Elm
1
star
44

livegraph-demo

real time Elm chart example with Go backend (don't look at that code) via GraphQL mutation + websocket subscriptions
Elm
1
star
45

attache-api

Core library for building client libs to integrate with an attache server
Ruby
1
star
46

godogs

trying https://github.com/cucumber/godog
Go
1
star
47

dom-go

Construct HTML elements in Go. Can be used together with `html/template` templates.
Go
1
star
48

sample-sinatra-elm

Elm
1
star