2019-05-08 21:28:07 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-23 21:19:08 +08:00
|
|
|
class User < ApplicationRecord
|
2018-10-12 06:48:12 +08:00
|
|
|
include SearchableModel
|
|
|
|
include SettingsModel
|
|
|
|
include VariablesModel
|
|
|
|
include User::TeamRoles
|
|
|
|
include User::ProjectRoles
|
2019-04-09 15:08:27 +08:00
|
|
|
include TeamBySubjectModel
|
2019-05-08 23:38:24 +08:00
|
|
|
include InputSanitizeHelper
|
2019-09-23 22:33:57 +08:00
|
|
|
include ActiveStorageConcerns
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2016-11-30 23:27:12 +08:00
|
|
|
acts_as_token_authenticatable
|
2016-10-13 16:00:36 +08:00
|
|
|
devise :invitable, :confirmable, :database_authenticatable, :registerable,
|
|
|
|
:async, :recoverable, :rememberable, :trackable, :validatable,
|
2018-05-03 20:35:59 +08:00
|
|
|
:timeoutable, :omniauthable,
|
2018-04-26 23:18:03 +08:00
|
|
|
omniauth_providers: Extends::OMNIAUTH_PROVIDERS,
|
2016-10-13 16:00:36 +08:00
|
|
|
stretches: Constants::PASSWORD_STRETCH_FACTOR
|
2019-07-05 22:56:05 +08:00
|
|
|
|
|
|
|
has_one_attached :avatar
|
|
|
|
|
|
|
|
# has_attached_file :avatar,
|
|
|
|
# styles: {
|
|
|
|
# medium: Constants::MEDIUM_PIC_FORMAT,
|
|
|
|
# thumb: Constants::THUMB_PIC_FORMAT,
|
|
|
|
# icon: Constants::ICON_PIC_FORMAT,
|
|
|
|
# icon_small: Constants::ICON_SMALL_PIC_FORMAT
|
|
|
|
# },
|
|
|
|
# default_url: Constants::DEFAULT_AVATAR_URL
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2016-09-21 21:35:23 +08:00
|
|
|
auto_strip_attributes :full_name, :initials, nullify: false
|
2016-10-05 23:45:20 +08:00
|
|
|
validates :full_name,
|
|
|
|
presence: true,
|
|
|
|
length: { maximum: Constants::NAME_MAX_LENGTH }
|
2016-09-16 17:39:37 +08:00
|
|
|
validates :initials,
|
2016-09-16 21:41:31 +08:00
|
|
|
presence: true,
|
2016-10-05 23:45:20 +08:00
|
|
|
length: { maximum: Constants::USER_INITIALS_MAX_LENGTH }
|
|
|
|
validates :email,
|
|
|
|
presence: true,
|
|
|
|
length: { maximum: Constants::EMAIL_MAX_LENGTH }
|
2016-09-21 21:54:12 +08:00
|
|
|
|
2019-07-05 22:56:05 +08:00
|
|
|
# validates_attachment :avatar,
|
|
|
|
# :content_type => { :content_type => ["image/jpeg", "image/png"] },
|
|
|
|
# size: { less_than: Constants::AVATAR_MAX_SIZE_MB.megabyte,
|
|
|
|
# message: I18n.t('client_api.user.avatar_too_big') }
|
2016-02-12 23:52:43 +08:00
|
|
|
validate :time_zone_check
|
|
|
|
|
2017-12-07 20:59:33 +08:00
|
|
|
store_accessor :settings, :time_zone, :notifications_settings
|
2017-08-10 20:29:01 +08:00
|
|
|
|
2017-08-10 17:30:57 +08:00
|
|
|
default_settings(
|
|
|
|
time_zone: 'UTC',
|
2018-11-09 22:58:08 +08:00
|
|
|
date_format: Constants::DEFAULT_DATE_FORMAT,
|
2017-12-07 20:59:33 +08:00
|
|
|
notifications_settings: {
|
2017-08-10 17:30:57 +08:00
|
|
|
assignments: true,
|
|
|
|
assignments_email: false,
|
|
|
|
recent: true,
|
|
|
|
recent_email: false,
|
2018-09-05 22:42:15 +08:00
|
|
|
system_message_email: false
|
2018-09-05 22:36:32 +08:00
|
|
|
},
|
|
|
|
tooltips_enabled: true
|
2017-08-10 17:30:57 +08:00
|
|
|
)
|
2017-09-28 21:00:54 +08:00
|
|
|
|
2018-10-12 04:55:35 +08:00
|
|
|
store_accessor :variables, :export_vars
|
|
|
|
|
|
|
|
default_variables(
|
|
|
|
export_vars: {
|
2019-01-24 23:43:24 +08:00
|
|
|
num_of_export_all_last_24_hours: 0,
|
2019-04-04 20:35:16 +08:00
|
|
|
last_export_timestamp: Time.now.utc.beginning_of_day.to_i
|
2018-10-12 04:55:35 +08:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
# Relations
|
2017-08-30 00:49:07 +08:00
|
|
|
has_many :user_identities, inverse_of: :user
|
2017-01-24 23:34:21 +08:00
|
|
|
has_many :user_teams, inverse_of: :user
|
|
|
|
has_many :teams, through: :user_teams
|
2016-02-12 23:52:43 +08:00
|
|
|
has_many :user_projects, inverse_of: :user
|
|
|
|
has_many :projects, through: :user_projects
|
|
|
|
has_many :user_my_modules, inverse_of: :user
|
|
|
|
has_many :my_modules, through: :user_my_modules
|
|
|
|
has_many :comments, inverse_of: :user
|
2019-05-22 21:42:50 +08:00
|
|
|
has_many :activities, inverse_of: :owner, foreign_key: 'owner_id'
|
2016-02-12 23:52:43 +08:00
|
|
|
has_many :results, inverse_of: :user
|
|
|
|
has_many :samples, inverse_of: :user
|
2016-12-05 18:08:33 +08:00
|
|
|
has_many :samples_tables, inverse_of: :user, dependent: :destroy
|
2017-06-06 23:35:29 +08:00
|
|
|
has_many :repositories, inverse_of: :user
|
2017-06-07 19:36:39 +08:00
|
|
|
has_many :repository_table_states, inverse_of: :user, dependent: :destroy
|
2016-02-12 23:52:43 +08:00
|
|
|
has_many :steps, inverse_of: :user
|
|
|
|
has_many :custom_fields, inverse_of: :user
|
|
|
|
has_many :reports, inverse_of: :user
|
|
|
|
has_many :created_assets, class_name: 'Asset', foreign_key: 'created_by_id'
|
2017-01-25 22:00:14 +08:00
|
|
|
has_many :modified_assets,
|
|
|
|
class_name: 'Asset',
|
|
|
|
foreign_key: 'last_modified_by_id'
|
|
|
|
has_many :created_checklists,
|
|
|
|
class_name: 'Checklist',
|
|
|
|
foreign_key: 'created_by_id'
|
|
|
|
has_many :modified_checklists,
|
|
|
|
class_name: 'Checklist',
|
|
|
|
foreign_key: 'last_modified_by_id'
|
|
|
|
has_many :created_checklist_items,
|
|
|
|
class_name: 'ChecklistItem',
|
|
|
|
foreign_key: 'created_by_id'
|
|
|
|
has_many :modified_checklist_items,
|
|
|
|
class_name: 'ChecklistItem',
|
|
|
|
foreign_key: 'last_modified_by_id'
|
|
|
|
has_many :modified_comments,
|
|
|
|
class_name: 'Comment',
|
|
|
|
foreign_key: 'last_modified_by_id'
|
|
|
|
has_many :modified_custom_fields,
|
|
|
|
class_name: 'CustomField',
|
|
|
|
foreign_key: 'last_modified_by_id'
|
|
|
|
has_many :created_my_module_groups,
|
|
|
|
class_name: 'MyModuleGroup',
|
|
|
|
foreign_key: 'created_by_id'
|
|
|
|
has_many :created_my_module_tags,
|
|
|
|
class_name: 'MyModuleTag',
|
|
|
|
foreign_key: 'created_by_id'
|
|
|
|
has_many :created_my_modules,
|
|
|
|
class_name: 'MyModule',
|
|
|
|
foreign_key: 'created_by_id'
|
|
|
|
has_many :modified_my_modules,
|
|
|
|
class_name: 'MyModule',
|
|
|
|
foreign_key: 'last_modified_by_id'
|
|
|
|
has_many :archived_my_modules,
|
|
|
|
class_name: 'MyModule',
|
|
|
|
foreign_key: 'archived_by_id'
|
|
|
|
has_many :restored_my_modules,
|
|
|
|
class_name: 'MyModule',
|
|
|
|
foreign_key: 'restored_by_id'
|
|
|
|
has_many :created_teams,
|
|
|
|
class_name: 'Team',
|
|
|
|
foreign_key: 'created_by_id'
|
|
|
|
has_many :modified_teams,
|
|
|
|
class_name: 'Team',
|
|
|
|
foreign_key: 'last_modified_by_id'
|
|
|
|
has_many :created_projects,
|
|
|
|
class_name: 'Project',
|
|
|
|
foreign_key: 'created_by_id'
|
|
|
|
has_many :modified_projects,
|
|
|
|
class_name: 'Project',
|
|
|
|
foreign_key: 'last_modified_by_id'
|
|
|
|
has_many :archived_projects,
|
|
|
|
class_name: 'Project',
|
|
|
|
foreign_key: 'archived_by_id'
|
|
|
|
has_many :restored_projects,
|
|
|
|
class_name: 'Project',
|
|
|
|
foreign_key: 'restored_by_id'
|
|
|
|
has_many :modified_reports,
|
|
|
|
class_name: 'Report',
|
|
|
|
foreign_key: 'last_modified_by_id'
|
|
|
|
has_many :modified_results,
|
|
|
|
class_name: 'Result',
|
|
|
|
foreign_key: 'modified_by_id'
|
|
|
|
has_many :archived_results,
|
|
|
|
class_name: 'Result',
|
|
|
|
foreign_key: 'archived_by_id'
|
|
|
|
has_many :restored_results,
|
|
|
|
class_name: 'Result',
|
|
|
|
foreign_key: 'restored_by_id'
|
|
|
|
has_many :created_sample_groups,
|
|
|
|
class_name: 'SampleGroup',
|
|
|
|
foreign_key: 'created_by_id'
|
|
|
|
has_many :modified_sample_groups,
|
|
|
|
class_name: 'SampleGroup',
|
|
|
|
foreign_key: 'last_modified_by_id'
|
|
|
|
has_many :assigned_sample_my_modules,
|
|
|
|
class_name: 'SampleMyModule',
|
|
|
|
foreign_key: 'assigned_by_id'
|
|
|
|
has_many :created_sample_types,
|
|
|
|
class_name: 'SampleType',
|
|
|
|
foreign_key: 'created_by_id'
|
|
|
|
has_many :modified_sample_types,
|
|
|
|
class_name: 'SampleType',
|
|
|
|
foreign_key: 'last_modified_by_id'
|
|
|
|
has_many :modified_samples,
|
|
|
|
class_name: 'Sample',
|
|
|
|
foreign_key: 'last_modified_by_id'
|
2016-02-12 23:52:43 +08:00
|
|
|
has_many :modified_steps, class_name: 'Step', foreign_key: 'modified_by_id'
|
|
|
|
has_many :created_tables, class_name: 'Table', foreign_key: 'created_by_id'
|
2017-01-25 22:00:14 +08:00
|
|
|
has_many :modified_tables,
|
|
|
|
class_name: 'Table',
|
|
|
|
foreign_key: 'last_modified_by_id'
|
2016-02-12 23:52:43 +08:00
|
|
|
has_many :created_tags, class_name: 'Tag', foreign_key: 'created_by_id'
|
2017-03-10 23:21:43 +08:00
|
|
|
|
2017-01-03 23:35:25 +08:00
|
|
|
has_many :tokens,
|
|
|
|
class_name: 'Token',
|
|
|
|
foreign_key: 'user_id',
|
|
|
|
inverse_of: :user
|
2017-03-10 23:21:43 +08:00
|
|
|
|
2017-01-25 22:00:14 +08:00
|
|
|
has_many :modified_tags,
|
|
|
|
class_name: 'Tag',
|
|
|
|
foreign_key: 'last_modified_by_id'
|
|
|
|
has_many :assigned_user_my_modules,
|
|
|
|
class_name: 'UserMyModule',
|
|
|
|
foreign_key: 'assigned_by_id'
|
|
|
|
has_many :assigned_user_teams,
|
|
|
|
class_name: 'UserTeam',
|
|
|
|
foreign_key: 'assigned_by_id'
|
|
|
|
has_many :assigned_user_projects,
|
|
|
|
class_name: 'UserProject',
|
|
|
|
foreign_key: 'assigned_by_id'
|
|
|
|
has_many :added_protocols,
|
|
|
|
class_name: 'Protocol',
|
|
|
|
foreign_key: 'added_by_id',
|
|
|
|
inverse_of: :added_by
|
|
|
|
has_many :archived_protocols,
|
|
|
|
class_name: 'Protocol',
|
|
|
|
foreign_key: 'archived_by_id',
|
|
|
|
inverse_of: :archived_by
|
|
|
|
has_many :restored_protocols,
|
|
|
|
class_name: 'Protocol',
|
|
|
|
foreign_key: 'restored_by_id',
|
|
|
|
inverse_of: :restored_by
|
2017-06-08 00:07:49 +08:00
|
|
|
has_many :assigned_my_module_repository_rows,
|
|
|
|
class_name: 'MyModuleRepositoryRow',
|
2017-06-06 23:35:29 +08:00
|
|
|
foreign_key: 'assigned_by_id'
|
2019-10-08 19:38:57 +08:00
|
|
|
has_many :created_repositroy_status_types,
|
|
|
|
class_name: 'RepositoryStatusItem',
|
|
|
|
foreign_key: 'created_by_id',
|
|
|
|
inverse_of: :created_by,
|
|
|
|
dependent: :nullify
|
|
|
|
has_many :modified_repositroy_status_types,
|
|
|
|
class_name: 'RepositoryStatusItem',
|
|
|
|
foreign_key: 'last_modified_by_id',
|
|
|
|
inverse_of: :last_modified_by,
|
|
|
|
dependent: :nullify
|
|
|
|
has_many :created_repositroy_status_value,
|
|
|
|
class_name: 'RepositoryStatusValue',
|
|
|
|
foreign_key: 'created_by_id',
|
|
|
|
inverse_of: :created_by,
|
|
|
|
dependent: :nullify
|
|
|
|
has_many :modified_repositroy_status_value,
|
|
|
|
class_name: 'RepositoryStatusValue',
|
|
|
|
foreign_key: 'last_modified_by_id',
|
|
|
|
inverse_of: :last_modified_by,
|
|
|
|
dependent: :nullify
|
2019-11-18 22:21:57 +08:00
|
|
|
has_many :created_repositroy_date_time_values,
|
|
|
|
class_name: 'RepositoryDateTimeValue',
|
|
|
|
foreign_key: 'created_by_id',
|
|
|
|
inverse_of: :created_by,
|
|
|
|
dependent: :nullify
|
|
|
|
has_many :modified_repositroy_date_time_values,
|
|
|
|
class_name: 'RepositoryDateTimeValue',
|
|
|
|
foreign_key: 'last_modified_by_id',
|
|
|
|
inverse_of: :last_modified_by,
|
|
|
|
dependent: :nullify
|
2017-03-10 23:21:43 +08:00
|
|
|
|
2016-09-28 20:18:52 +08:00
|
|
|
has_many :user_notifications, inverse_of: :user
|
|
|
|
has_many :notifications, through: :user_notifications
|
2019-03-29 18:11:53 +08:00
|
|
|
has_many :user_system_notifications, dependent: :destroy
|
2019-01-25 21:53:06 +08:00
|
|
|
has_many :system_notifications, through: :user_system_notifications
|
2017-03-23 22:45:02 +08:00
|
|
|
has_many :zip_exports, inverse_of: :user, dependent: :destroy
|
2017-11-09 17:06:53 +08:00
|
|
|
has_many :datatables_teams, class_name: '::Views::Datatables::DatatablesTeam'
|
2018-10-12 21:15:43 +08:00
|
|
|
has_many :view_states, dependent: :destroy
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2018-08-17 17:59:47 +08:00
|
|
|
has_many :access_grants, class_name: 'Doorkeeper::AccessGrant',
|
|
|
|
foreign_key: :resource_owner_id,
|
|
|
|
dependent: :delete_all
|
|
|
|
has_many :access_tokens, class_name: 'Doorkeeper::AccessToken',
|
|
|
|
foreign_key: :resource_owner_id,
|
|
|
|
dependent: :delete_all
|
|
|
|
|
2016-11-15 22:56:32 +08:00
|
|
|
before_destroy :destroy_notifications
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
def name
|
|
|
|
full_name
|
|
|
|
end
|
|
|
|
|
|
|
|
def name=(name)
|
2017-07-06 15:07:05 +08:00
|
|
|
self.full_name = name
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|
|
|
|
|
2018-02-26 18:05:05 +08:00
|
|
|
def avatar_remote_url=(url_value)
|
|
|
|
self.avatar = URI.parse(url_value)
|
|
|
|
# Assuming url_value is http://example.com/photos/face.png
|
|
|
|
# avatar_file_name == "face.png"
|
|
|
|
# avatar_content_type == "image/png"
|
|
|
|
@avatar_remote_url = url_value
|
|
|
|
end
|
|
|
|
|
2019-07-05 22:56:05 +08:00
|
|
|
def avatar_variant(style)
|
2019-10-22 18:27:13 +08:00
|
|
|
return Constants::DEFAULT_AVATAR_URL.gsub(':style', style.to_s) unless avatar.attached?
|
2019-07-26 18:40:36 +08:00
|
|
|
|
2019-07-05 22:56:05 +08:00
|
|
|
format = case style.to_sym
|
|
|
|
when :medium
|
|
|
|
Constants::MEDIUM_PIC_FORMAT
|
|
|
|
when :thumb
|
|
|
|
Constants::THUMB_PIC_FORMAT
|
|
|
|
when :icon
|
|
|
|
Constants::ICON_PIC_FORMAT
|
|
|
|
when :icon_small
|
|
|
|
Constants::ICON_SMALL_PIC_FORMAT
|
|
|
|
else
|
|
|
|
Constants::ICON_SMALL_PIC_FORMAT
|
|
|
|
end
|
2019-09-12 23:21:48 +08:00
|
|
|
avatar.variant(resize_to_limit: format)
|
2019-07-05 22:56:05 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def avatar_url(style)
|
|
|
|
Rails.application.routes.url_helpers.url_for(avatar_variant(style))
|
|
|
|
end
|
|
|
|
|
2018-11-09 22:58:08 +08:00
|
|
|
def date_format
|
|
|
|
settings[:date_format] || Constants::DEFAULT_DATE_FORMAT
|
|
|
|
end
|
|
|
|
|
|
|
|
def date_format=(date_format)
|
|
|
|
return if settings[:date_format] == date_format
|
|
|
|
if Constants::SUPPORTED_DATE_FORMATS.include?(date_format)
|
|
|
|
settings[:date_format] = date_format
|
|
|
|
clear_view_cache
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-03 22:03:15 +08:00
|
|
|
def current_team
|
|
|
|
Team.find_by_id(self.current_team_id)
|
|
|
|
end
|
|
|
|
|
2017-08-30 00:49:07 +08:00
|
|
|
def self.from_omniauth(auth)
|
|
|
|
includes(:user_identities)
|
|
|
|
.where(
|
|
|
|
'user_identities.provider=? AND user_identities.uid=?',
|
|
|
|
auth.provider,
|
|
|
|
auth.uid
|
|
|
|
)
|
|
|
|
.references(:user_identities)
|
|
|
|
.take
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
# Search all active users for username & email. Can
|
2017-01-24 23:34:21 +08:00
|
|
|
# also specify which team to ignore.
|
2016-02-12 23:52:43 +08:00
|
|
|
def self.search(
|
|
|
|
active_only,
|
|
|
|
query = nil,
|
2017-01-24 23:34:21 +08:00
|
|
|
team_to_ignore = nil
|
2016-02-12 23:52:43 +08:00
|
|
|
)
|
|
|
|
result = User.all
|
|
|
|
|
|
|
|
if active_only
|
|
|
|
result = result.where.not(confirmed_at: nil)
|
|
|
|
end
|
|
|
|
|
2017-01-24 23:34:21 +08:00
|
|
|
if team_to_ignore.present?
|
2016-02-12 23:52:43 +08:00
|
|
|
ignored_ids =
|
2017-01-25 00:08:48 +08:00
|
|
|
UserTeam
|
2016-02-12 23:52:43 +08:00
|
|
|
.select(:user_id)
|
2017-01-24 23:34:21 +08:00
|
|
|
.where(team_id: team_to_ignore.id)
|
2016-02-12 23:52:43 +08:00
|
|
|
result =
|
|
|
|
result
|
|
|
|
.where("users.id NOT IN (?)", ignored_ids)
|
|
|
|
end
|
|
|
|
|
|
|
|
result
|
2016-07-21 19:11:15 +08:00
|
|
|
.where_attributes_like([:full_name, :email], query)
|
|
|
|
.distinct
|
|
|
|
end
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
def empty_avatar(name, size)
|
|
|
|
file_ext = name.split(".").last
|
|
|
|
self.avatar_file_name = name
|
|
|
|
self.avatar_content_type = Rack::Mime.mime_type(".#{file_ext}")
|
|
|
|
self.avatar_file_size = size.to_i
|
|
|
|
end
|
|
|
|
|
|
|
|
# Whether user is active (= confirmed) or not
|
|
|
|
def active?
|
2017-01-05 22:27:18 +08:00
|
|
|
confirmed_at.present?
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def active_status_str
|
|
|
|
if active?
|
2017-01-25 22:00:14 +08:00
|
|
|
I18n.t('users.enums.status.active')
|
2016-02-12 23:52:43 +08:00
|
|
|
else
|
2017-01-25 22:00:14 +08:00
|
|
|
I18n.t('users.enums.status.pending')
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-01-24 23:34:21 +08:00
|
|
|
def projects_by_teams(team_id = 0, sort_by = nil, archived = false)
|
2016-02-12 23:52:43 +08:00
|
|
|
archived = archived ? true : false
|
2017-01-25 22:00:14 +08:00
|
|
|
query = Project.all.joins(:user_projects)
|
|
|
|
sql = 'projects.team_id IN (SELECT DISTINCT team_id ' \
|
2017-02-13 20:42:53 +08:00
|
|
|
'FROM user_teams WHERE user_teams.user_id = :user_id)'
|
2017-02-13 21:20:44 +08:00
|
|
|
if team_id.zero? || !user_teams.find_by(team_id: team_id).try(:admin?)
|
2017-02-13 20:42:53 +08:00
|
|
|
# Admins see all projects of team
|
|
|
|
sql += ' AND (projects.visibility=1 OR user_projects.user_id=:user_id)'
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|
2017-02-13 20:42:53 +08:00
|
|
|
sql += ' AND projects.archived = :archived '
|
|
|
|
|
|
|
|
sort =
|
|
|
|
case sort_by
|
|
|
|
when 'old'
|
|
|
|
{ created_at: :asc }
|
|
|
|
when 'atoz'
|
|
|
|
{ name: :asc }
|
|
|
|
when 'ztoa'
|
|
|
|
{ name: :desc }
|
|
|
|
else
|
|
|
|
{ created_at: :desc }
|
|
|
|
end
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2017-01-24 23:34:21 +08:00
|
|
|
if team_id > 0
|
2016-02-12 23:52:43 +08:00
|
|
|
result = query
|
2017-01-25 22:00:14 +08:00
|
|
|
.where('projects.team_id = ?', team_id)
|
2017-02-13 21:20:44 +08:00
|
|
|
.where(sql, user_id: id, archived: archived)
|
2017-01-25 22:00:14 +08:00
|
|
|
.order(sort)
|
|
|
|
.distinct
|
|
|
|
.group_by(&:team)
|
2016-02-12 23:52:43 +08:00
|
|
|
else
|
|
|
|
result = query
|
2017-02-13 21:20:44 +08:00
|
|
|
.where(sql, user_id: id, archived: archived)
|
2017-01-25 22:00:14 +08:00
|
|
|
.order(sort)
|
|
|
|
.distinct
|
|
|
|
.group_by(&:team)
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|
|
|
|
result || []
|
|
|
|
end
|
|
|
|
|
2018-06-01 19:49:02 +08:00
|
|
|
def projects_tree(team, sort_by = nil)
|
|
|
|
result = team.projects.includes(active_experiments: :active_my_modules)
|
|
|
|
unless is_admin_of_team?(team)
|
|
|
|
# Only admins see all projects of the team
|
2018-06-01 22:38:49 +08:00
|
|
|
result = result.joins(:user_projects).where(
|
|
|
|
'visibility=1 OR user_projects.user_id=:user_id', user_id: id
|
2018-06-01 19:49:02 +08:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2018-10-24 06:29:30 +08:00
|
|
|
sort = case sort_by
|
|
|
|
when 'old'
|
|
|
|
{ created_at: :asc }
|
|
|
|
when 'atoz'
|
|
|
|
{ name: :asc }
|
|
|
|
when 'ztoa'
|
|
|
|
{ name: :desc }
|
|
|
|
else
|
|
|
|
{ created_at: :desc }
|
|
|
|
end
|
2018-06-05 15:44:03 +08:00
|
|
|
result.where(archived: false).distinct.order(sort)
|
2018-06-01 19:49:02 +08:00
|
|
|
end
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
# Finds all activities of user that is assigned to project. If user
|
|
|
|
# is not an owner of the project, user must be also assigned to
|
|
|
|
# module.
|
2017-12-14 21:02:40 +08:00
|
|
|
def last_activities
|
2016-02-12 23:52:43 +08:00
|
|
|
Activity
|
|
|
|
.joins(project: :user_projects)
|
2017-12-14 21:02:40 +08:00
|
|
|
.joins(
|
|
|
|
'LEFT OUTER JOIN my_modules ON activities.my_module_id = my_modules.id'
|
|
|
|
)
|
|
|
|
.joins(
|
|
|
|
'LEFT OUTER JOIN user_my_modules ON my_modules.id = ' \
|
|
|
|
'user_my_modules.my_module_id'
|
|
|
|
)
|
2016-02-12 23:52:43 +08:00
|
|
|
.where(user_projects: { user_id: self })
|
|
|
|
.where(
|
2017-12-14 21:02:40 +08:00
|
|
|
'activities.my_module_id IS NULL OR ' \
|
|
|
|
'user_projects.role = 0 OR ' \
|
2016-02-12 23:52:43 +08:00
|
|
|
'user_my_modules.user_id = ?',
|
|
|
|
id
|
|
|
|
)
|
|
|
|
.order(created_at: :desc)
|
|
|
|
end
|
|
|
|
|
2016-08-03 21:31:25 +08:00
|
|
|
def self.find_by_valid_wopi_token(token)
|
2016-09-23 17:42:12 +08:00
|
|
|
Rails.logger.warn "WOPI: searching by token #{token}"
|
2016-11-30 23:48:42 +08:00
|
|
|
User
|
2016-12-21 23:52:15 +08:00
|
|
|
.joins('LEFT OUTER JOIN tokens ON user_id = users.id')
|
|
|
|
.where(tokens: { token: token })
|
|
|
|
.where('tokens.ttl = 0 OR tokens.ttl > ?', Time.now.to_i)
|
|
|
|
.first
|
2016-08-03 21:31:25 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_wopi_token
|
2016-12-21 23:52:15 +08:00
|
|
|
# WOPI does not have a good way to request a new token,
|
|
|
|
# so a new token should be provided each time this is called,
|
|
|
|
# while keeping any old tokens as long as they have not yet expired
|
|
|
|
tokens = Token.where(user_id: id).distinct
|
2016-12-01 20:48:11 +08:00
|
|
|
|
2016-12-21 23:52:15 +08:00
|
|
|
tokens.each do |token|
|
|
|
|
token.delete if token.ttl < Time.now.to_i
|
|
|
|
end
|
2016-12-01 20:48:11 +08:00
|
|
|
|
2016-12-21 23:52:15 +08:00
|
|
|
token_string = "#{Devise.friendly_token(20)}-#{id}"
|
|
|
|
# WOPI uses millisecond TTLs
|
2016-12-08 18:12:24 +08:00
|
|
|
ttl = (Time.now + 1.day).to_i
|
2016-11-30 23:48:42 +08:00
|
|
|
wopi_token = Token.create(token: token_string, ttl: ttl, user_id: id)
|
|
|
|
Rails.logger.warn("WOPI: generating new token #{wopi_token.token}")
|
2016-09-23 17:42:12 +08:00
|
|
|
wopi_token
|
2016-08-03 21:31:25 +08:00
|
|
|
end
|
|
|
|
|
2017-01-24 23:34:21 +08:00
|
|
|
def teams_ids
|
|
|
|
teams.pluck(:id)
|
2016-10-25 02:07:20 +08:00
|
|
|
end
|
|
|
|
|
2016-10-27 19:23:14 +08:00
|
|
|
# Returns a hash with user statistics
|
|
|
|
def statistics
|
|
|
|
statistics = {}
|
2017-01-24 23:34:21 +08:00
|
|
|
statistics[:number_of_teams] = teams.count
|
2016-10-27 19:23:14 +08:00
|
|
|
statistics[:number_of_projects] = projects.count
|
|
|
|
number_of_experiments = 0
|
|
|
|
projects.find_each do |pr|
|
|
|
|
number_of_experiments += pr.experiments.count
|
|
|
|
end
|
|
|
|
statistics[:number_of_experiments] = number_of_experiments
|
2016-11-11 19:14:57 +08:00
|
|
|
statistics[:number_of_protocols] =
|
|
|
|
added_protocols.where(
|
|
|
|
protocol_type: Protocol.protocol_types.slice(
|
|
|
|
:in_repository_private,
|
|
|
|
:in_repository_public,
|
|
|
|
:in_repository_archived
|
|
|
|
).values
|
|
|
|
).count
|
2016-10-27 19:23:14 +08:00
|
|
|
statistics
|
|
|
|
end
|
|
|
|
|
2018-07-24 20:21:33 +08:00
|
|
|
def self.from_azure_jwt_token(token_payload)
|
|
|
|
includes(:user_identities)
|
|
|
|
.where(
|
|
|
|
'user_identities.provider=? AND user_identities.uid=?',
|
|
|
|
Api.configuration.azure_ad_apps[token_payload[:aud]][:provider],
|
|
|
|
token_payload[:sub]
|
|
|
|
)
|
|
|
|
.references(:user_identities)
|
|
|
|
.take
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_linked_account?(provider)
|
|
|
|
user_identities.where(provider: provider).exists?
|
|
|
|
end
|
|
|
|
|
2019-02-15 20:07:29 +08:00
|
|
|
# This method must be overwriten for addons that will be installed
|
|
|
|
def show_login_system_notification?
|
2019-02-27 20:55:46 +08:00
|
|
|
user_system_notifications.show_on_login.present? &&
|
|
|
|
(ENV['ENABLE_TUTORIAL'] != 'true' || settings['tutorial_completed'])
|
2019-02-15 20:07:29 +08:00
|
|
|
end
|
|
|
|
|
2017-09-28 22:53:51 +08:00
|
|
|
# json friendly attributes
|
2017-10-05 21:53:05 +08:00
|
|
|
NOTIFICATIONS_TYPES = %w(assignments_notification recent_notification
|
|
|
|
assignments_email_notification
|
|
|
|
recent_email_notification
|
2018-09-05 22:36:32 +08:00
|
|
|
system_message_email_notification)
|
|
|
|
|
2017-09-28 22:53:51 +08:00
|
|
|
# declare notifications getters
|
|
|
|
NOTIFICATIONS_TYPES.each do |name|
|
|
|
|
define_method(name) do
|
2017-10-05 19:56:56 +08:00
|
|
|
attr_name = name.gsub('_notification', '')
|
2017-12-07 20:59:33 +08:00
|
|
|
notifications_settings.fetch(attr_name.to_sym)
|
2017-09-28 22:53:51 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# declare notifications setters
|
|
|
|
NOTIFICATIONS_TYPES.each do |name|
|
|
|
|
define_method("#{name}=") do |value|
|
2017-10-05 19:56:56 +08:00
|
|
|
attr_name = name.gsub('_notification', '').to_sym
|
2017-12-07 20:59:33 +08:00
|
|
|
notifications_settings[attr_name] = value
|
2017-09-28 22:53:51 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-24 23:43:24 +08:00
|
|
|
def increase_daily_exports_counter!
|
2019-04-04 20:35:16 +08:00
|
|
|
range = Time.now.utc.beginning_of_day.to_i..Time.now.utc.end_of_day.to_i
|
|
|
|
last_export = export_vars[:last_export_timestamp] || 0
|
2019-04-15 22:38:19 +08:00
|
|
|
export_vars[:num_of_export_all_last_24_hours] ||= 0
|
2019-04-04 20:35:16 +08:00
|
|
|
|
|
|
|
if range.cover?(last_export)
|
|
|
|
export_vars[:num_of_export_all_last_24_hours] += 1
|
2019-01-24 23:43:24 +08:00
|
|
|
else
|
2019-04-04 20:35:16 +08:00
|
|
|
export_vars[:num_of_export_all_last_24_hours] = 1
|
2019-01-24 23:43:24 +08:00
|
|
|
end
|
2019-04-15 22:38:19 +08:00
|
|
|
export_vars[:last_export_timestamp] = Time.now.utc.to_i
|
2019-01-24 23:43:24 +08:00
|
|
|
save
|
|
|
|
end
|
|
|
|
|
2019-04-04 20:35:16 +08:00
|
|
|
def has_available_exports?
|
2019-04-15 22:38:19 +08:00
|
|
|
last_export_timestamp = export_vars[:last_export_timestamp] || 0
|
2019-04-04 20:35:16 +08:00
|
|
|
|
|
|
|
# limit 0 means unlimited exports
|
2019-04-15 22:38:19 +08:00
|
|
|
return true if TeamZipExport.exports_limit.zero? || last_export_timestamp < Time.now.utc.beginning_of_day.to_i
|
2019-04-04 20:35:16 +08:00
|
|
|
|
2019-04-15 22:38:19 +08:00
|
|
|
exports_left.positive?
|
|
|
|
end
|
|
|
|
|
|
|
|
def exports_left
|
|
|
|
if (export_vars[:last_export_timestamp] || 0) < Time.now.utc.beginning_of_day.to_i
|
|
|
|
return TeamZipExport.exports_limit
|
|
|
|
end
|
|
|
|
|
|
|
|
TeamZipExport.exports_limit - export_vars[:num_of_export_all_last_24_hours]
|
2019-04-04 20:35:16 +08:00
|
|
|
end
|
|
|
|
|
2019-04-09 15:08:27 +08:00
|
|
|
def global_activity_filter(filters, search_query)
|
|
|
|
query_teams = teams.pluck(:id)
|
|
|
|
query_teams &= filters[:teams].map(&:to_i) if filters[:teams]
|
|
|
|
query_teams &= User.team_by_subject(filters[:subjects]) if filters[:subjects]
|
|
|
|
User.where(id: UserTeam.where(team_id: query_teams).select(:user_id))
|
|
|
|
.search(false, search_query)
|
|
|
|
.select(:full_name, :id)
|
2019-08-06 21:25:52 +08:00
|
|
|
.map { |i| { label: escape_input(i[:full_name]), value: i[:id] } }
|
2019-04-09 15:08:27 +08:00
|
|
|
end
|
|
|
|
|
2019-07-26 18:40:36 +08:00
|
|
|
def file_name
|
|
|
|
return '' unless avatar.attached?
|
|
|
|
|
|
|
|
avatar.blob&.filename&.sanitized
|
|
|
|
end
|
|
|
|
|
2019-06-14 22:20:13 +08:00
|
|
|
def avatar_base64(style)
|
2019-09-12 15:02:45 +08:00
|
|
|
unless avatar.attached?
|
2019-06-14 22:20:13 +08:00
|
|
|
missing_link = File.open("#{Rails.root}/app/assets/images/#{style}/missing.png").to_a.join
|
|
|
|
return "data:image/png;base64,#{Base64.strict_encode64(missing_link)}"
|
|
|
|
end
|
|
|
|
|
2019-09-12 15:02:45 +08:00
|
|
|
convert_variant_to_base64(avatar_variant(style))
|
2019-06-14 22:20:13 +08:00
|
|
|
end
|
|
|
|
|
2016-09-23 17:42:12 +08:00
|
|
|
protected
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2016-11-23 16:49:52 +08:00
|
|
|
def confirmation_required?
|
|
|
|
Rails.configuration.x.enable_email_confirmations
|
|
|
|
end
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
def time_zone_check
|
2017-08-10 20:42:58 +08:00
|
|
|
if time_zone.nil? ||
|
|
|
|
ActiveSupport::TimeZone.new(time_zone).nil?
|
2016-02-12 23:52:43 +08:00
|
|
|
errors.add(:time_zone)
|
|
|
|
end
|
|
|
|
end
|
2016-08-03 21:31:25 +08:00
|
|
|
|
2016-11-15 22:56:32 +08:00
|
|
|
private
|
|
|
|
|
|
|
|
def destroy_notifications
|
|
|
|
# Find all notifications where user is the only reference
|
|
|
|
# on the notification, and destroy all such notifications
|
|
|
|
# (user_notifications are destroyed when notification is
|
|
|
|
# destroyed). We try to do this efficiently (hence in_groups_of).
|
|
|
|
nids_all = notifications.pluck(:id)
|
|
|
|
nids_all.in_groups_of(1000, false) do |nids|
|
|
|
|
Notification
|
|
|
|
.where(id: nids)
|
|
|
|
.joins(:user_notifications)
|
|
|
|
.group('notifications.id')
|
|
|
|
.having('count(notification_id) <= 1')
|
|
|
|
.destroy_all
|
|
|
|
end
|
2016-08-03 21:31:25 +08:00
|
|
|
|
2016-11-15 22:56:32 +08:00
|
|
|
# Now, simply destroy all user notification relations left
|
|
|
|
user_notifications.destroy_all
|
|
|
|
end
|
2018-11-09 22:58:08 +08:00
|
|
|
|
|
|
|
def clear_view_cache
|
|
|
|
Rails.cache.delete_matched(%r{^views\/users\/#{id}-})
|
|
|
|
end
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|