I'm working on a web application right now using Rails and wanted to see if anyone knew of a good way to keep track of file storage limits? We want to give users a specific amount of room that they can use to upload files and we are using paperclip for storage on Amazon S3. Any thoughts? Thanks
|
feedback
|
|
One of the optional columns you can use with paperclip is the OBJECT_file_size which you can sum up like
As to the actually imposing the cap, I'd recommend creating a custom validation on whatever the file model is so that you can pass errors and issues back to the client. | ||||
|
feedback
|
|
Paperclip stores the file size.
You'll then have the total size of every user's documents. | ||||
|
feedback
|