]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/ability.rb
Combine site permissions declarations
[rails.git] / app / models / ability.rb
index 59b1c5ec3e68ebda8edc6e1bddd68d13bfec82a6..17ed6715cae2732ae73cee044c7094322b0d0028 100644 (file)
@@ -3,21 +3,29 @@
 class Ability
   include CanCan::Ability
 
 class Ability
   include CanCan::Ability
 
-  def initialize(user, token)
-    can :index, :site
-    can [:permalink, :edit, :help, :fixthemap, :offline, :export, :about, :preview, :copyright, :key, :id, :welcome], :site
-
-    can [:list, :rss, :view, :comments], DiaryEntry
+  def initialize(user)
+    can [:index, :permalink, :edit, :help, :fixthemap, :offline, :export, :about, :preview, :copyright, :key, :id], :site
+    can [:index, :rss, :show, :comments], DiaryEntry
+    can [:search, :search_latlon, :search_ca_postcode, :search_osm_nominatim,
+         :search_geonames, :search_osm_nominatim_reverse, :search_geonames_reverse], :geocoder
 
     if user
 
     if user
-      can :weclome, :site
-
+      can :welcome, :site
       can [:create, :edit, :comment, :subscribe, :unsubscribe], DiaryEntry
       can [:create, :edit, :comment, :subscribe, :unsubscribe], DiaryEntry
+      can [:new, :create], Report
+
+      if user.moderator?
+        can [:index, :show, :resolve, :ignore, :reopen], Issue
+        can :create, IssueComment
+      end
 
       if user.administrator?
         can [:hide, :hidecomment], [DiaryEntry, DiaryComment]
 
       if user.administrator?
         can [:hide, :hidecomment], [DiaryEntry, DiaryComment]
+        can [:index, :show, :resolve, :ignore, :reopen], Issue
+        can :create, IssueComment
       end
     end
       end
     end
+
     # Define abilities for the passed in user here. For example:
     #
     #   user ||= User.new # guest user (not logged in)
     # Define abilities for the passed in user here. For example:
     #
     #   user ||= User.new # guest user (not logged in)
@@ -45,8 +53,4 @@ class Ability
     # See the wiki for details:
     # https://github.com/CanCanCommunity/cancancan/wiki/Defining-Abilities
   end
     # See the wiki for details:
     # https://github.com/CanCanCommunity/cancancan/wiki/Defining-Abilities
   end
-
-  def has_capability?(token, cap)
-    token && token.read_attribute(cap)
-  end
 end
 end