Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mdeering/attribute_normalizer
Adds the ability to normalize attributes cleanly with code blocks and predefined normalizers
https://github.com/mdeering/attribute_normalizer
activerecord normalization rails ruby
Last synced: 6 days ago
JSON representation
Adds the ability to normalize attributes cleanly with code blocks and predefined normalizers
- Host: GitHub
- URL: https://github.com/mdeering/attribute_normalizer
- Owner: mdeering
- License: mit
- Created: 2009-06-27T04:39:28.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2023-12-13T05:44:30.000Z (about 1 year ago)
- Last Synced: 2024-12-13T10:05:26.134Z (13 days ago)
- Topics: activerecord, normalization, rails, ruby
- Language: Ruby
- Homepage:
- Size: 119 KB
- Stars: 475
- Watchers: 9
- Forks: 53
- Open Issues: 19
-
Metadata Files:
- Readme: README.textile
- License: MIT-LICENSE
- Roadmap: ROADMAP.textile
Awesome Lists containing this project
README
h1. Attribute Normalizer
!https://secure.travis-ci.org/mdeering/attribute_normalizer.png?branch=master(Build Status)!:http://travis-ci.org/mdeering/attribute_normalizer
p. A little normalization goes a long way in helping maintain data integrity.
h2. Change History
* 1.1.0
** Allow the use of default normalizers before and after the evaluation of a given block* 1.0.0
** -DSL Changes-
** Default attributes to normalize
** mongid support* 0.3.0
** Normalizer Chaining
** Built-in common normalizers
** Ability to change the default attribute normalization.* 0.2.1
** ActiveModel Support Built-in
** Fix for :with option getting dropped when normalizing several attributes* 0.2.0
** Removed the normalization on reads.
** Added out of the box support for CassandraObjects
** Included RSpec matcher _normalizer_attribute_
** Added the ability to define global normalizers
** *Strings no longer get 'strip' called on them before getting passed on to your defined normalization blocks*h2. Supported ORMs
* _Active Model_
* Active Record
* CassandraObjectsp. _I will gladly take pull requests to automatically load Attribute Normalizer into your ORM of choice if requested. To test it out on your ORM just include the AttributeNormalizer module after requiring it._
# your_initializer.rb
require 'attribute_normalizer'
YourORM::Base.send :include, AttributeNormalizerh2. Install
sudo gem install attribute_normalizer
p. Then just required it. Rails usages is as follows.
h3. Rails 2
# config/environment.rb
config.gem 'attribute_normalizer'h3. Rails 3
# Gemfile
gem 'attribute_normalizer'p. It also still works as a traditional Rails plugin.
./script/plugin install git://github.com/mdeering/attribute_normalizer.git
h2. Usage
p. Lets create a quick test/spec for what we want to accomplish as far as normalization using the built in RSpec matcher.
# spec/models/book_spec.rb
describe Book do
it { should normalize_attribute(:author) }
it { should normalize_attribute(:price).from('$3,450.98').to(3450.98) }
it { should normalize_attribute(:summary).from(' Here is my summary that is a little to long ').to('Here is m...') }
it { should normalize_attribute(:title).from(' pick up chicks with magic tricks ').to('Pick Up Chicks With Magic Tricks') }
it { should normalize_attribute(:slug).from(' Social Life at the Edge of Chaos ').to('social-life-at-the-edge-of-chaos') }
it { should normalize_attribute(:limited_slug).from(' Social Life at the Edge of Chaos ').to('social-life') }
endp. The following normalizers are already included with the +0.3 version of the gem.
* _:blank_ Will return _nil_ on empty strings
* _:phone_ Will strip out all non-digit characters and return nil on empty strings
* _:strip_ Will strip leading and trailing whitespace.
* _:squish_ Will strip leading and trailing whitespace and convert any consecutive spaces to one space eachp. And lets predefine some normalizers that we may use in other classes/models or that we don't want to clutter up our class/model's readability with.
# config/initializers/attribute_normalizer.rb
AttributeNormalizer.configure do |config|config.normalizers[:currency] = lambda do |value, options|
value.is_a?(String) ? value.gsub(/[^0-9\.]+/, '') : value
endconfig.normalizers[:truncate] = lambda do |text, options|
if text.is_a?(String)
options.reverse_merge!(:length => 30, :omission => "...")
l = options[:length] - options[:omission].mb_chars.length
chars = text.mb_chars
(chars.length > options[:length] ? chars[0...l] + options[:omission] : text).to_s
else
text
end
end# The default normalizers if no :with option or block is given is to apply the :strip and :blank normalizers (in that order).
# You can change this if you would like as follows:
# config.default_normalizers = :strip, :blankend
The _normalize_attributes_ method is eager loaded into your ORM. _normalize_attribute_ is aliased to _normalize_attributes_ and both can take in a single attribute or an array of attributes.
class Book < ActiveRecord::Base
# By default it will strip leading and trailing whitespace
# and set to nil if blank.
normalize_attributes :author, :publisher# Using one of our predefined normalizers.
normalize_attribute :price, :with => :currency# Using more then one of our predefined normalizers including one with options
normalize_attribute :summary, :with => [ :strip, { :truncate => { :length => 12 } } ]# You can also define your normalization block inline.
normalize_attribute :title do |value|
value.is_a?(String) ? value.titleize.strip : value
end# Or use a combination of normalizers plus an inline block.
# the normalizers in the :with option will each be evalulated
# in order and the result will be given to the block.
# You could also use option :before in place of :with
normalize_attribute :slug, :with => [ :strip, :blank ] do |value|
value.present? && value.is_a?(String) ? value.downcase.gsub(/\s+/, '-') : value
end# Use builtin normalizers before and after the evaluation of your inline
# block
normalize_attribute :limited_slug, :before => [ :strip, :blank ], :after => [ { :truncate => { :length => 11, :omission => '' } } ] do |value|
value.present? && value.is_a?(String) ? value.downcase.gsub(/\s+/, '-') : value
endend
p. All the specs will pass now. Here is quick look at the behaviour from a console.
summary = 'Here is my summary that is a little to long'
title = 'pick up chicks with magic tricks'
book = Book.create!(:author => '', :price => '$3,450.89', :summary => summary, :title => title, :slug => title, :limited_slug => title)
book.author # => nil
book.price # => 3450.89
book.summary # => 'Here is m...'
book.title # => 'Pick Up Chicks With Magic Tricks'
book.slug # => 'pick-up-chicks-with-magic-tricks'
book.limited_slug # => 'pick-up-chi'h2. Test Helpers
p. If you are running RSpec there is a matcher available for use. Usage can been seen above. Include it as follows.
h3. Rails 2
# spec/spec_helper.rb
RSpec.configure do |config|
config.include AttributeNormalizer::RSpecMatcher, :type => :models
endh3. Rails 3
# spec/spec_helper.rb
RSpec.configure do |config|
config.include AttributeNormalizer::RSpecMatcher, :type => :model
endp. _I will gladly take a patch to add a macro to Test::Unit if someone submits it._
h2. Credits
Original module code and concept was taken from "Dan Kubb":http://github.com/dkubb during a project we worked on together. I found that I was consistently using this across all my projects so I wanted to plugin-er-size and gem this up for easy reuse.
h2. Copyright
Copyright (c) 2009-2010 "Michael Deering(Edmonton Ruby on Rails)":http://mdeering.com See MIT-LICENSE for details.