scinote-web/app/models/tag.rb

60 lines
1.7 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-06-27 20:58:49 +08:00
class Tag < ApplicationRecord
2016-02-12 23:52:43 +08:00
include SearchableModel
auto_strip_attributes :name, :color, nullify: false
validates :name,
presence: true,
length: { maximum: Constants::NAME_MAX_LENGTH }
validates :color,
presence: true,
length: { maximum: Constants::COLOR_MAX_LENGTH }
2016-02-12 23:52:43 +08:00
validates :project, presence: true
belongs_to :created_by, foreign_key: 'created_by_id', class_name: 'User', optional: true
belongs_to :last_modified_by, foreign_key: 'last_modified_by_id', class_name: 'User', optional: true
belongs_to :project
2017-06-28 21:21:32 +08:00
has_many :my_module_tags, inverse_of: :tag, dependent: :destroy
2016-02-12 23:52:43 +08:00
has_many :my_modules, through: :my_module_tags
2017-05-05 22:41:23 +08:00
def self.search(user,
include_archived,
query = nil,
page = 1,
_current_team = nil,
options = {})
2016-02-12 23:52:43 +08:00
project_ids =
Project
.search(user, include_archived, nil, Constants::SEARCH_NO_LIMIT)
2017-04-11 20:55:44 +08:00
.pluck(:id)
2016-02-12 23:52:43 +08:00
new_query = Tag
2017-05-05 22:41:23 +08:00
.distinct
.where('tags.project_id IN (?)', project_ids)
.where_attributes_like(:name, query, options)
2016-02-12 23:52:43 +08:00
# Show all results if needed
if page == Constants::SEARCH_NO_LIMIT
2016-02-12 23:52:43 +08:00
new_query
else
new_query
.limit(Constants::SEARCH_LIMIT)
.offset((page - 1) * Constants::SEARCH_LIMIT)
2016-02-12 23:52:43 +08:00
end
end
2016-08-16 14:49:24 +08:00
def clone_to_project_or_return_existing(project)
tag = Tag.find_by(project: project, name: name, color: color)
return tag if tag
2016-08-16 14:49:24 +08:00
Tag.create(
name: name,
color: color,
created_by: created_by,
last_modified_by: last_modified_by,
project: project
)
end
2016-02-12 23:52:43 +08:00
end