Skip to content
/ zarex Public
forked from ricn/zarex

Filename sanitization for Elixir

License

Notifications You must be signed in to change notification settings

slab/zarex

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Zarex

Elixir CI Hex.pm

Filename sanitization for Elixir. This is useful when you generate filenames for downloads from user input. The library is heavily inspired by Zaru which does the same thing but in Ruby.

Installation

Add this to your mix.exs file, then run mix do deps.get, deps.compile:

  {:zarex, "~> 1.0"}

Examples

Zarex.sanitize("  whatver//wëird:user:înput:")
# => "whatēverwëirduserînput"

Zarex takes a given filename and normalizes, filters and truncates it.

It deletes the bad stuff and leaves unicode characters in place, so users can use whatever alphabets they want to. Zarex doesn't remove whitespace—instead, any sequence of whitespace that is 1 or more characters in length is collapsed to a single space. Filenames are truncated so that they are at maximum 255 characters long.

If extra space is required (for example to add your own filename extension later), you can leave extra padding:

Zarex.sanitize(String.duplicate("a", 400), padding: 10)
# returns a string with 245 chars. First the binary of 400 chars will be truncated
# to 255 chars and then the extra padding of 10 will truncate the binary to 245 chars.

Credits

The following people have contributed ideas, documentation, or code to Zarex:

  • Richard Nyström
  • Thomas Fuchs (the creator of Zaru, the Ruby library Zarex is heavily based on)

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

About

Filename sanitization for Elixir

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Elixir 100.0%