Merge branch '4887-invalidate-duplicate-ip-on-old-compute-nodes'
[arvados.git] / services / api / app / models / arvados_model.rb
index 422ce01e1c598cee05b2a5cc9fe766d36a92214e..a170fb9b54368e3d8f77689604e2d1d5dd7ff301 100644 (file)
@@ -110,7 +110,8 @@ class ArvadosModel < ActiveRecord::Base
     unless (owner_uuid == current_user.uuid or
             current_user.is_admin or
             (current_user.groups_i_can(:manage) & [uuid, owner_uuid]).any?)
-      if (current_user.groups_i_can(:write) & [uuid, owner_uuid]).any?
+      if ((current_user.groups_i_can(:write) + [current_user.uuid]) &
+          [uuid, owner_uuid]).any?
         return [owner_uuid, current_user.uuid]
       else
         return [owner_uuid]
@@ -444,6 +445,10 @@ class ArvadosModel < ActiveRecord::Base
     "_____-#{uuid_prefix}-_______________"
   end
 
+  def self.uuid_regex
+    %r/[a-z0-9]{5}-#{uuid_prefix}-[a-z0-9]{15}/
+  end
+
   def ensure_valid_uuids
     specials = [system_user_uuid]