trabajo-afectivo/app/models/overview.rb

65 lines
1.5 KiB
Ruby
Raw Normal View History

2016-10-19 03:11:36 +00:00
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
class Overview < ApplicationModel
include ChecksClientNotification
include ChecksLatestChangeObserved
include ChecksConditionValidation
include CanSeed
load 'overview/assets.rb'
include Overview::Assets
2017-04-19 19:54:04 +00:00
has_and_belongs_to_many :roles, after_add: :cache_update, after_remove: :cache_update, class_name: 'Role'
has_and_belongs_to_many :users, after_add: :cache_update, after_remove: :cache_update
2012-04-10 14:06:46 +00:00
store :condition
store :order
store :view
validates :name, presence: true
before_create :fill_link_on_create, :fill_prio
before_update :fill_link_on_update
private
def fill_prio
2016-03-14 05:52:57 +00:00
return true if prio
self.prio = 9999
true
end
def fill_link_on_create
return true if link.present?
self.link = link_name(name)
true
end
def fill_link_on_update
return true if !changes['name']
return true if changes['link']
self.link = link_name(name)
true
end
def link_name(name)
local_link = name.downcase
2017-09-08 08:28:34 +00:00
local_link = local_link.parameterize(separator: '_')
local_link.gsub!(/\s/, '_')
local_link.gsub!(/_+/, '_')
2017-11-23 08:09:44 +00:00
local_link = CGI.escape(local_link)
if local_link.blank?
local_link = id || rand(999)
end
check = true
while check
exists = Overview.find_by(link: local_link)
2017-11-23 08:09:44 +00:00
if exists&.id != id
local_link = "#{local_link}_#{rand(999)}"
else
check = false
end
end
local_link
end
end