Class: Principal
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Principal
- Defined in:
- app/models/principal.rb
Overview
Redmine - project management software Copyright © 2006-2022 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.
Constant Summary collapse
- STATUS_ANONYMOUS =
Account statuses
0
- STATUS_ACTIVE =
1
- STATUS_REGISTERED =
2
- STATUS_LOCKED =
3
Class Method Summary collapse
-
.detect_by_keyword(principals, keyword) ⇒ Object
Returns the principal that matches the keyword among principals.
-
.fields_for_order_statement(table = nil) ⇒ Object
Returns an array of fields names than can be used to make an order statement for principals.
Instance Method Summary collapse
- #<=>(principal) ⇒ Object
- #mail ⇒ Object
- #mail=(*args) ⇒ Object
-
#member_of?(project) ⇒ Boolean
Returns true if the principal is a member of project.
- #name(formatter = nil) ⇒ Object
- #nullify_projects_default_assigned_to ⇒ Object
-
#project_ids ⇒ Object
Returns an array of the project ids that the principal is a member of.
- #reload(*args) ⇒ Object
- #visible?(user = User.current) ⇒ Boolean
Class Method Details
.detect_by_keyword(principals, keyword) ⇒ Object
Returns the principal that matches the keyword among principals
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
# File 'app/models/principal.rb', line 174 def self.detect_by_keyword(principals, keyword) keyword = keyword.to_s return nil if keyword.blank? principal = nil principal ||= principals.detect {|a| keyword.casecmp(a.login.to_s) == 0} principal ||= principals.detect {|a| keyword.casecmp(a.mail.to_s) == 0} if principal.nil? && / /.match?(keyword) firstname, lastname = *(keyword.split) # "First Last Throwaway" principal ||= principals.detect do |a| a.is_a?(User) && firstname.casecmp(a.firstname.to_s) == 0 && lastname.casecmp(a.lastname.to_s) == 0 end end if principal.nil? principal ||= principals.detect {|a| keyword.casecmp(a.name) == 0} end principal end |
.fields_for_order_statement(table = nil) ⇒ Object
Returns an array of fields names than can be used to make an order statement for principals. Users are sorted before Groups. Examples:
167 168 169 170 171 |
# File 'app/models/principal.rb', line 167 def self.fields_for_order_statement(table=nil) table ||= table_name columns = ['type DESC'] + (User.name_formatter[:order] - ['id']) + ['lastname', 'id'] columns.uniq.map {|field| "#{table}.#{field}"} end |
Instance Method Details
#<=>(principal) ⇒ Object
153 154 155 156 157 158 159 160 161 162 |
# File 'app/models/principal.rb', line 153 def <=>(principal) if principal.nil? -1 elsif self.class.name == principal.class.name self.to_s.casecmp(principal.to_s) else # groups after users principal.class.name <=> self.class.name end end |
#mail ⇒ Object
135 136 137 |
# File 'app/models/principal.rb', line 135 def mail nil end |
#mail=(*args) ⇒ Object
131 132 133 |
# File 'app/models/principal.rb', line 131 def mail=(*args) nil end |
#member_of?(project) ⇒ Boolean
Returns true if the principal is a member of project
144 145 146 |
# File 'app/models/principal.rb', line 144 def member_of?(project) project.is_a?(Project) && project_ids.include?(project.id) end |
#name(formatter = nil) ⇒ Object
127 128 129 |
# File 'app/models/principal.rb', line 127 def name(formatter = nil) to_s end |
#nullify_projects_default_assigned_to ⇒ Object
197 198 199 |
# File 'app/models/principal.rb', line 197 def nullify_projects_default_assigned_to Project.where(default_assigned_to: self).update_all(default_assigned_to_id: nil) end |
#project_ids ⇒ Object
Returns an array of the project ids that the principal is a member of
149 150 151 |
# File 'app/models/principal.rb', line 149 def project_ids @project_ids ||= super.freeze end |
#reload(*args) ⇒ Object
122 123 124 125 |
# File 'app/models/principal.rb', line 122 def reload(*args) @project_ids = nil super end |
#visible?(user = User.current) ⇒ Boolean
139 140 141 |
# File 'app/models/principal.rb', line 139 def visible?(user=User.current) Principal.visible(user).find_by(:id => id) == self end |