Class: CustomField

Inherits:
ApplicationRecord show all
Includes:
Redmine::SafeAttributes, Redmine::SubclassFactory
Defined in:
app/models/custom_field.rb

Overview

Redmine - project management software Copyright © 2006- Jean-Philippe Lang

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Redmine::SubclassFactory

included

Methods included from Redmine::SafeAttributes

#delete_unsafe_attributes, included, #safe_attribute?, #safe_attribute_names, #safe_attributes=

Class Method Details

.customized_classObject



282
283
284
285
# File 'app/models/custom_field.rb', line 282

def self.customized_class
  self.name =~ /^(.+)CustomField$/
  $1.constantize rescue nil
end

.for_allObject

to move in project_custom_field



288
289
290
# File 'app/models/custom_field.rb', line 288

def self.for_all
  where(:is_for_all => true).order(:position).to_a
end

.human_attribute_name(attribute_key_name, *args) ⇒ Object



338
339
340
341
342
343
344
# File 'app/models/custom_field.rb', line 338

def self.human_attribute_name(attribute_key_name, *args)
  attr_name = attribute_key_name.to_s
  if attr_name == 'url_pattern'
    attr_name = "url"
  end
  super(attr_name, *args)
end

Instance Method Details

#<=>(field) ⇒ Object



271
272
273
274
275
# File 'app/models/custom_field.rb', line 271

def <=>(field)
  return nil unless field.is_a?(CustomField)

  position <=> field.position
end

#after_save_custom_value(custom_value) ⇒ Object



330
331
332
# File 'app/models/custom_field.rb', line 330

def after_save_custom_value(custom_value)
  format.after_save_custom_value(self, custom_value)
end

#cast_value(value) ⇒ Object



205
206
207
# File 'app/models/custom_field.rb', line 205

def cast_value(value)
  format.cast_value(self, value)
end

#copy_from(arg, options = {}) ⇒ Object



107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# File 'app/models/custom_field.rb', line 107

def copy_from(arg, options={})
  return if arg.blank?

  custom_field = arg.is_a?(CustomField) ? arg : CustomField.find_by(id: arg.to_s)
  self.attributes = custom_field.attributes.dup.except('id', 'name', 'position')
  custom_field.enumerations.each do |e|
    new_enumeration = self.enumerations.build
    new_enumeration.attributes = e.attributes.except('id')
  end
  self.default_value = nil if custom_field.enumerations.any?
  if %w(IssueCustomField TimeEntryCustomField ProjectCustomField VersionCustomField).include?(self.class.name)
    self.role_ids = custom_field.role_ids.dup
  end
  if self.is_a?(IssueCustomField)
    self.tracker_ids = custom_field.tracker_ids.dup
    self.project_ids = custom_field.project_ids.dup
  end
  self
end

#css_classesObject



346
347
348
# File 'app/models/custom_field.rb', line 346

def css_classes
  "#{field_format}_cf cf_#{id}"
end

#field_format=(arg) ⇒ Object



131
132
133
134
135
136
137
# File 'app/models/custom_field.rb', line 131

def field_format=(arg)
  # cannot change format of a saved custom field
  if new_record?
    @format = nil
    super
  end
end

#formatObject



127
128
129
# File 'app/models/custom_field.rb', line 127

def format
  @format ||= Redmine::FieldFormat.find(field_format)
end

#format_in?(*args) ⇒ Boolean

Returns:

  • (Boolean)


334
335
336
# File 'app/models/custom_field.rb', line 334

def format_in?(*args)
  args.include?(field_format)
end

#full_text_formatting?Boolean

Returns:

  • (Boolean)


226
227
228
# File 'app/models/custom_field.rb', line 226

def full_text_formatting?
  text_formatting == 'full'
end

#full_width_layout?Boolean

Returns:

  • (Boolean)


222
223
224
# File 'app/models/custom_field.rb', line 222

def full_width_layout?
  full_width_layout == '1'
end

#group_statementObject

Returns a GROUP BY clause that can used to group by custom value Returns nil if the custom field can not be used for grouping.



245
246
247
248
249
# File 'app/models/custom_field.rb', line 245

def group_statement
  return nil if multiple?

  format.group_statement(self)
end

#join_for_order_statementObject



251
252
253
# File 'app/models/custom_field.rb', line 251

def join_for_order_statement
  format.join_for_order_statement(self)
end

#order_statementObject

Returns a ORDER BY clause that can used to sort customized objects by their value of the custom field. Returns nil if the custom field can not be used for sorting.



237
238
239
240
241
# File 'app/models/custom_field.rb', line 237

def order_statement
  return nil if multiple?

  format.order_statement(self)
end

#possible_custom_value_options(custom_value) ⇒ Object



167
168
169
# File 'app/models/custom_field.rb', line 167

def possible_custom_value_options(custom_value)
  format.possible_custom_value_options(custom_value)
end

#possible_valuesObject



179
180
181
182
183
184
185
186
187
188
189
# File 'app/models/custom_field.rb', line 179

def possible_values
  values = read_attribute(:possible_values)
  if values.is_a?(Array)
    values.each do |value|
      value.to_s.force_encoding('UTF-8')
    end
    values
  else
    []
  end
end

#possible_values=(arg) ⇒ Object

Makes possible_values accept a multiline string



192
193
194
195
196
197
198
199
# File 'app/models/custom_field.rb', line 192

def possible_values=(arg)
  if arg.is_a?(Array)
    values = arg.compact.map {|a| a.to_s.strip}.reject(&:blank?)
    write_attribute(:possible_values, values)
  else
    self.possible_values = arg.to_s.split(/[\n\r]+/)
  end
end

#possible_values_options(object = nil) ⇒ Object



171
172
173
174
175
176
177
# File 'app/models/custom_field.rb', line 171

def possible_values_options(object=nil)
  if object.is_a?(Array)
    object.map {|o| format.possible_values_options(self, o)}.reduce(:&) || []
  else
    format.possible_values_options(self, object) || []
  end
end

#query_filter_options(query) ⇒ Object

Returns the options hash used to build a query filter for the field



214
215
216
# File 'app/models/custom_field.rb', line 214

def query_filter_options(query)
  format.query_filter_options(self, query)
end

#set_custom_field_value(custom_field_value, value) ⇒ Object



201
202
203
# File 'app/models/custom_field.rb', line 201

def set_custom_field_value(custom_field_value, value)
  format.set_custom_field_value(self, custom_field_value, value)
end

#set_searchableObject



139
140
141
142
143
144
145
# File 'app/models/custom_field.rb', line 139

def set_searchable
  # make sure these fields are not searchable
  self.searchable = false unless format.class.searchable_supported
  # make sure only these fields can have multiple values
  self.multiple = false unless format.class.multiple_supported
  true
end

#thousands_delimiter?Boolean

Returns:

  • (Boolean)


230
231
232
# File 'app/models/custom_field.rb', line 230

def thousands_delimiter?
  thousands_delimiter == '1'
end

#totalable?Boolean

Returns:

  • (Boolean)


218
219
220
# File 'app/models/custom_field.rb', line 218

def totalable?
  format.totalable_supported
end

#type_nameObject



292
293
294
# File 'app/models/custom_field.rb', line 292

def type_name
  nil
end

#valid_field_value?(value) ⇒ Boolean

Returns true if value is a valid value for the custom field

Returns:

  • (Boolean)


326
327
328
# File 'app/models/custom_field.rb', line 326

def valid_field_value?(value)
  validate_field_value(value).empty?
end

#validate_custom_fieldObject



147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# File 'app/models/custom_field.rb', line 147

def validate_custom_field
  format.validate_custom_field(self).each do |attribute, message|
    errors.add attribute, message
  end

  if regexp.present?
    begin
      Regexp.new(regexp)
    rescue
      errors.add(:regexp, :invalid)
    end
  end

  if default_value.present?
    validate_field_value(default_value).each do |message|
      errors.add :default_value, message
    end
  end
end

#validate_custom_value(custom_value) ⇒ Object

Returns the error messages for the given value or an empty array if value is a valid value for the custom field



298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
# File 'app/models/custom_field.rb', line 298

def validate_custom_value(custom_value)
  value = custom_value.value
  errs = format.validate_custom_value(custom_value)

  unless errs.any?
    if value.is_a?(Array)
      unless multiple?
        errs << ::I18n.t('activerecord.errors.messages.invalid')
      end
      if is_required? && value.detect(&:present?).nil?
        errs << ::I18n.t('activerecord.errors.messages.blank')
      end
    else
      if is_required? && value.blank?
        errs << ::I18n.t('activerecord.errors.messages.blank')
      end
    end
  end

  errs
end

#validate_field_value(value) ⇒ Object

Returns the error messages for the default custom field value



321
322
323
# File 'app/models/custom_field.rb', line 321

def validate_field_value(value)
  validate_custom_value(CustomFieldValue.new(:custom_field => self, :value => value))
end

#value_classObject

Returns the class that values represent



278
279
280
# File 'app/models/custom_field.rb', line 278

def value_class
  format.target_class if format.respond_to?(:target_class)
end

#value_from_keyword(keyword, customized) ⇒ Object



209
210
211
# File 'app/models/custom_field.rb', line 209

def value_from_keyword(keyword, customized)
  format.value_from_keyword(self, keyword, customized)
end

#visibility_by_project_condition(project_key = nil, user = User.current, id_column = nil) ⇒ Object



255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
# File 'app/models/custom_field.rb', line 255

def visibility_by_project_condition(project_key=nil, user=User.current, id_column=nil)
  if visible? || user.admin?
    "1=1"
  elsif user.anonymous?
    "1=0"
  else
    project_key ||= "#{self.class.customized_class.table_name}.project_id"
    id_column ||= id
    "#{project_key} IN (SELECT DISTINCT m.project_id FROM #{Member.table_name} m" \
      " INNER JOIN #{MemberRole.table_name} mr ON mr.member_id = m.id" \
      " INNER JOIN #{table_name_prefix}custom_fields_roles#{table_name_suffix} cfr" \
      " ON cfr.role_id = mr.role_id" \
      " WHERE m.user_id = #{user.id} AND cfr.custom_field_id = #{id_column})"
  end
end

#visible_by?(project, user = User.current) ⇒ Boolean

Returns:

  • (Boolean)


75
76
77
# File 'app/models/custom_field.rb', line 75

def visible_by?(project, user=User.current)
  visible? || user.admin?
end