This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
dm-is-taggable / README.textile
dm-is-taggable
dm-is-taggable is a tagging system built for datamapper. It has supports for multiple tagger types and taggable types.
Each tagger can tag different taggable objects.
Installation
Download the plugin
In your console:
git clone git://github.com/aq1018/dm-is-taggable.git
Install the gem
In your console:
cd dm-is-taggable
sudo rake install
Include it Merb
In merb init.rb:
dependency "dm-is-taggable"
Using dm-is-taggable in your code
Define taggers
class User
include DataMapper::Resource
property :id, Serial
property :name, String
is :tagger, :on => ["Article", "Picture"]
end
class Bot
include DataMapper::Resource
property :id, Serial
property :name, String
is :tagger, :on => ["Article", "Picture"]
end
Define taggables
class Article
include DataMapper::Resource
property :id, Serial
is :taggable, :by => ["User", "Bot"]
end
class Picture
include DataMapper::Resource
property :id, Serial
is :taggable, :by => ["User", "Bot"]
end
Create tags
@picture = Picture.first
@scott = User.first
# You can tag like this
@picture.tag(:with => "shanghai, bar, beer", :by => @scott)
# or like this
# Note: this doesn't remove the previous tags
Tag.as(@scott) do
@picture.tag(:with => "cool, tag1, tag2")
end
# or like this
# Note, this removes all previous tags
Tag.as(@scott) do
@picture.taglist("cool, tag1, tag2")
end
Retrieve objects with tags
# find pictures tagged with tag1 and tag2
Picture.find(:with => "tag1, tag2")
# find pictures tagged with tag1 or tag2
Picture.find(:with => "tag1, tag2", :match => :any)
# find pictures tagged with tag1 or tag2, tagged by @user1
Picture.find(:with => "tag1, tag2", :match => :any, :by => @user1)
# find pictures tagged with tag1 or tag2, tagged by all users
Picture.find(:with => "tag1, tag2", :match => :any, :by => User)
# or you can do scoped way
# find pictures tagged with tag1 or tag2, tagged by all users
Tag.as(User) do
Picture.find(:with => "tag1, tag2", :match => :any)
end
# find pictures tagged with tag1 or tag2, tagged by @user1
Tag.as(@user1) do
Picture.find(:with => "tag1, tag2", :match => :any)
end
# You can tag like this
@picture.tag(:with => "shanghai, bar, beer", :by => @scott)
# or like this
# Note: this doesn't remove the previous tags
Tag.as(@scott) do
@picture.tag(:with => "cool, tag1, tag2")
end
# or like this
# Note, this removes all previous tags
Tag.as(@scott) do
@picture.taglist("cool, tag1, tag2")
end
Retrieve tags with objects
@picture1 = Picture.first
# get all tags associated with @picture2 as a string
@picture1.taglist
# or as tag objects
@picture1.tags
# tags tagged by users
@picture1.tags_by_users
# find tags by all users
Tag.by(User)
# find tags by a user
Tag.by(@user)
# find tags on all pictures
Tag.on(Picture)
# find tags on a picture
Tag.on(@picture1)
# find tags by a user, on all pictures
Tag.by(@user).on(Pictures)
# find tags by all users on a picture
Tag.by(User).on(@picture)
# find tags by a user on a picture
Tag.by(@user).on(@picture)
Counting tags
# Count how many articles are tagged by @user1
Tag.tagged_count(:by => @user1, :on => Article)
# Count how many articles are tagged by @user1 with "tag1"
Tag.tagged_count(:by => @user1, :on => Article, :with => "tag1")







