2019-01-16 15:00:01 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module ModelExporters
|
|
|
|
class TeamExporter < ModelExporter
|
|
|
|
def initialize(team_id)
|
2019-02-12 17:56:15 +08:00
|
|
|
super()
|
|
|
|
@team = Team.includes(:user_teams).find(team_id)
|
2019-01-16 15:00:01 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def export_to_dir
|
|
|
|
@asset_counter = 0
|
|
|
|
@team.transaction(isolation: :serializable) do
|
|
|
|
@dir_to_export = FileUtils.mkdir_p(
|
|
|
|
File.join("tmp/team_#{@team.id}_export_#{Time.now.to_i}")
|
|
|
|
).first
|
|
|
|
|
|
|
|
# Writing JSON file with team structure
|
|
|
|
File.write(
|
|
|
|
File.join(@dir_to_export, 'team_export.json'),
|
|
|
|
team(@team).to_json
|
|
|
|
)
|
|
|
|
# Copying assets
|
|
|
|
copy_files(@assets_to_copy, :file, File.join(@dir_to_export, 'assets')) do
|
|
|
|
@asset_counter += 1
|
|
|
|
end
|
|
|
|
# Copying tiny_mce_assets
|
|
|
|
copy_files(@tiny_mce_assets_to_copy,
|
2019-01-16 23:11:38 +08:00
|
|
|
:image,
|
|
|
|
File.join(@dir_to_export, 'tiny_mce_assets'))
|
2019-01-16 15:00:01 +08:00
|
|
|
puts "Exported assets: #{@asset_counter}"
|
|
|
|
puts "Exported tinyMCE assets: #{@team.tiny_mce_assets.count}"
|
|
|
|
puts "Exported users: #{@team.users.count}"
|
|
|
|
puts "Exported repositories: #{@team.repositories.count}"
|
|
|
|
puts "Exported projects: #{@team.projects.count}"
|
|
|
|
puts 'Done!'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def team(team)
|
|
|
|
if team.tiny_mce_assets.present?
|
|
|
|
@tiny_mce_assets_to_copy.push(team.tiny_mce_assets)
|
|
|
|
end
|
|
|
|
{
|
|
|
|
team: team,
|
|
|
|
default_admin_id: team.user_teams.where(role: 2).first.user.id,
|
|
|
|
users: team.users.map { |u| user(u) },
|
|
|
|
user_teams: team.user_teams,
|
|
|
|
notifications: Notification
|
|
|
|
.includes(:user_notifications)
|
|
|
|
.where('user_notifications.user_id': team.users)
|
|
|
|
.map { |n| notification(n) },
|
|
|
|
custom_fields: team.custom_fields,
|
|
|
|
repositories: team.repositories.map { |r| repository(r) },
|
|
|
|
tiny_mce_assets: team.tiny_mce_assets,
|
2019-02-12 17:56:15 +08:00
|
|
|
protocols: team.protocols.where(my_module: nil).map do |pr|
|
2019-02-12 20:38:59 +08:00
|
|
|
protocol(pr)
|
2019-02-12 17:56:15 +08:00
|
|
|
end,
|
2019-01-16 15:00:01 +08:00
|
|
|
protocol_keywords: team.protocol_keywords,
|
|
|
|
projects: team.projects.map { |p| project(p) }
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def notification(notification)
|
|
|
|
notification_json = notification.as_json
|
|
|
|
notification_json['type_of'] = Extends::NOTIFICATIONS_TYPES
|
2019-01-16 23:11:38 +08:00
|
|
|
.key(notification
|
|
|
|
.read_attribute('type_of'))
|
|
|
|
.to_s
|
2019-01-16 15:00:01 +08:00
|
|
|
notification_json
|
|
|
|
end
|
|
|
|
|
|
|
|
def user(user)
|
|
|
|
user_json = user.as_json
|
|
|
|
# Looks like Devise doesn't export some fields to JSON, so add it manually
|
|
|
|
user_json['encrypted_password'] = user.encrypted_password
|
|
|
|
user_json['confirmed_at'] = user.confirmed_at
|
|
|
|
user_json['sign_in_count'] = user.sign_in_count
|
|
|
|
user_json['last_sign_in_at'] = user.last_sign_in_at
|
|
|
|
user_json['last_sign_in_ip'] = user.last_sign_in_ip
|
|
|
|
copy_files([user], :avatar, File.join(@dir_to_export, 'avatars'))
|
|
|
|
{
|
|
|
|
user: user_json,
|
|
|
|
user_notifications: user.user_notifications,
|
|
|
|
user_identities: user.user_identities,
|
|
|
|
repository_table_states:
|
|
|
|
user.repository_table_states.where(repository: @team.repositories)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def project(project)
|
|
|
|
experiments = project.experiments.map do |e|
|
2019-01-16 15:37:05 +08:00
|
|
|
experiment, assets = ExperimentExporter.new(e.id).experiment
|
2019-01-16 15:00:01 +08:00
|
|
|
@assets_to_copy << assets
|
|
|
|
experiment
|
|
|
|
end
|
|
|
|
|
|
|
|
{
|
|
|
|
project: project,
|
|
|
|
user_projects: project.user_projects,
|
|
|
|
activities: project.activities,
|
|
|
|
project_comments: project.project_comments,
|
|
|
|
reports: project.reports.map { |r| report(r) },
|
|
|
|
experiments: experiments,
|
|
|
|
tags: project.tags
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def report(report)
|
|
|
|
{
|
|
|
|
report: report,
|
|
|
|
report_elements: report.report_elements
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def repository(repository)
|
|
|
|
{
|
|
|
|
repository: repository,
|
|
|
|
repository_columns: repository.repository_columns.map do |c|
|
|
|
|
repository_column(c)
|
|
|
|
end,
|
|
|
|
repository_rows: repository.repository_rows.map do |r|
|
|
|
|
repository_row(r)
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def repository_row(repository_row)
|
|
|
|
{
|
|
|
|
repository_row: repository_row,
|
|
|
|
my_module_repository_rows: repository_row.my_module_repository_rows,
|
|
|
|
repository_cells: repository_row.repository_cells.map do |c|
|
|
|
|
repository_cell(c)
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def repository_cell(cell)
|
|
|
|
{
|
|
|
|
repository_cell: cell,
|
|
|
|
repository_value: cell.value,
|
|
|
|
repository_value_asset: get_cell_value_asset(cell)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def repository_column(column)
|
|
|
|
{
|
|
|
|
repository_column: column,
|
|
|
|
repository_list_items: column.repository_list_items
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_cell_value_asset(cell)
|
|
|
|
return unless cell.value_type == 'RepositoryAssetValue'
|
|
|
|
|
|
|
|
@assets_to_copy.push(cell.value.asset)
|
|
|
|
cell.value.asset
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|