scinote-web/app/controllers/repositories_controller.rb

364 lines
10 KiB
Ruby
Raw Normal View History

class RepositoriesController < ApplicationController
2017-06-19 20:05:37 +08:00
before_action :load_vars,
except: %i(index create create_modal parse_sheet)
before_action :load_parent_vars, except:
%i(repository_table_index parse_sheet)
2017-06-19 20:05:37 +08:00
before_action :check_team, only: %i(parse_sheet import_records)
before_action :check_view_all_permissions, only: :index
before_action :check_view_permissions, only: %i(export_repository show)
before_action :check_manage_permissions, only:
%i(destroy destroy_modal rename_modal update)
2017-06-06 17:10:55 +08:00
before_action :check_create_permissions, only:
%i(create_modal create copy_modal copy)
layout 'fluid'
def index
unless @repositories.length.zero? && current_team
redirect_to repository_path(@repositories.first) and return
end
render 'repositories/index'
end
def show
2017-06-08 17:44:24 +08:00
end
2017-06-06 21:50:43 +08:00
def create_modal
@repository = Repository.new
2017-05-24 15:29:44 +08:00
respond_to do |format|
2017-06-06 19:33:57 +08:00
format.json do
2017-05-24 15:29:44 +08:00
render json: {
2017-06-06 19:33:57 +08:00
html: render_to_string(
2017-06-06 21:50:43 +08:00
partial: 'create_repository_modal.html.erb'
2017-06-06 19:33:57 +08:00
)
2017-05-24 15:29:44 +08:00
}
2017-06-06 19:33:57 +08:00
end
2017-05-24 15:29:44 +08:00
end
end
def create
@repository = Repository.new(
team: @team,
created_by: current_user
)
@repository.assign_attributes(repository_params)
respond_to do |format|
2017-06-06 19:33:57 +08:00
format.json do
if @repository.save
2019-03-07 02:27:40 +08:00
log_activity(:create_inventory)
2017-06-06 19:33:57 +08:00
flash[:success] = t('repositories.index.modal_create.success_flash',
name: @repository.name)
render json: { url: repository_path(@repository) },
2017-05-24 15:29:44 +08:00
status: :ok
2017-06-06 19:33:57 +08:00
else
2017-05-24 15:29:44 +08:00
render json: @repository.errors,
status: :unprocessable_entity
2017-06-06 19:33:57 +08:00
end
2017-05-24 15:29:44 +08:00
end
end
end
def destroy_modal
respond_to do |format|
format.json do
render json: {
html: render_to_string(
partial: 'delete_repository_modal.html.erb'
)
}
end
end
end
def destroy
flash[:success] = t('repositories.index.delete_flash',
name: @repository.name)
2019-03-07 02:27:40 +08:00
log_activity(:delete_inventory) # Log before delete id
@repository.discard
@repository.destroy_discarded(current_user.id)
redirect_to team_repositories_path
end
def rename_modal
respond_to do |format|
format.json do
render json: {
html: render_to_string(
partial: 'rename_repository_modal.html.erb'
)
}
end
end
end
def update
old_name = @repository.name
@repository.update_attributes(repository_params)
respond_to do |format|
format.json do
if @repository.save
flash[:success] = t('repositories.index.rename_flash',
old_name: old_name, new_name: @repository.name)
2019-03-07 02:27:40 +08:00
log_activity(:rename_inventory) # Acton only for renaming
render json: {
url: team_repositories_path(repository: @repository)
}, status: :ok
else
render json: @repository.errors, status: :unprocessable_entity
end
end
end
end
def copy_modal
@tmp_repository = Repository.new(
team: @team,
created_by: current_user,
name: @repository.name
)
respond_to do |format|
format.json do
render json: {
html: render_to_string(
partial: 'copy_repository_modal.html.erb'
)
}
end
end
end
def copy
@tmp_repository = Repository.new(
team: @team,
created_by: current_user
)
@tmp_repository.assign_attributes(repository_params)
respond_to do |format|
format.json do
if !@tmp_repository.valid?
render json: @tmp_repository.errors, status: :unprocessable_entity
else
copied_repository =
@repository.copy(current_user, @tmp_repository.name)
if !copied_repository
render json: { 'name': ['Server error'] },
status: :unprocessable_entity
else
flash[:success] = t(
'repositories.index.copy_flash',
old: @repository.name,
new: copied_repository.name
)
render json: {
url: team_repositories_path(repository: copied_repository)
}, status: :ok
end
end
end
end
end
2017-06-06 23:35:29 +08:00
# AJAX actions
def repository_table_index
2017-12-12 21:56:07 +08:00
if @repository.nil? || !can_read_team?(@repository.team)
2017-06-06 23:35:29 +08:00
render_403
else
respond_to do |format|
format.html
format.json do
render json: ::RepositoryDatatable.new(view_context,
@repository,
nil,
current_user)
end
end
end
end
2017-06-13 14:10:10 +08:00
def parse_sheet
repository = current_team.repositories.find_by_id(import_params[:id])
2017-06-14 15:11:20 +08:00
unless import_params[:file]
repository_response(t('teams.parse_sheet.errors.no_file_selected'))
return
end
begin
parsed_file = ImportRepository::ParseRepository.new(
file: import_params[:file],
repository: repository,
session: session
)
if parsed_file.too_large?
repository_response(t('general.file.size_exceeded',
file_size: Rails.configuration.x.file_max_size_mb))
elsif parsed_file.has_too_many_rows?
repository_response(
t('repositories.import_records.error_message.items_limit',
items_size: Constants::IMPORT_REPOSITORY_ITEMS_LIMIT)
)
else
@import_data = parsed_file.data
2017-10-17 21:23:54 +08:00
if @import_data.header.empty? || @import_data.columns.empty?
return repository_response(t('teams.parse_sheet.errors.empty_file'))
end
if (@temp_file = parsed_file.generate_temp_file)
respond_to do |format|
2017-06-14 15:11:20 +08:00
format.json do
render json: {
html: render_to_string(
partial: 'repositories/parse_records_modal.html.erb'
)
}
end
end
else
repository_response(t('teams.parse_sheet.errors.temp_file_failure'))
2017-06-14 15:11:20 +08:00
end
end
rescue ArgumentError, CSV::MalformedCSVError
repository_response(t('teams.parse_sheet.errors.invalid_file',
encoding: ''.encoding))
rescue TypeError
repository_response(t('teams.parse_sheet.errors.invalid_extension'))
2017-06-14 15:11:20 +08:00
end
2017-06-13 14:10:10 +08:00
end
2017-06-19 20:05:37 +08:00
def import_records
respond_to do |format|
format.json do
# Check if there exist mapping for repository record (it's mandatory)
if import_params[:mappings].value?('-1')
import_records = repostiory_import_actions
status = import_records.import!
log_activity(:import_inventory_items,
num_of_items: status[:nr_of_added])
if status[:status] == :ok
flash[:success] = t('repositories.import_records.success_flash',
number_of_rows: status[:nr_of_added],
total_nr: status[:total_nr])
render json: {}, status: :ok
else
flash[:alert] =
t('repositories.import_records.partial_success_flash',
nr: status[:nr_of_added], total_nr: status[:total_nr])
render json: {}, status: :unprocessable_entity
end
else
render json: {
html: render_to_string(
partial: 'shared/flash_errors.html.erb',
locals: { error_title: t('repositories.import_records'\
'.error_message.errors_list_title'),
error: t('repositories.import_records.error_message'\
'.no_repository_name') }
)
},
status: :unprocessable_entity
end
end
2017-06-21 15:31:39 +08:00
end
end
2017-06-06 22:12:34 +08:00
def export_repository
if params[:row_ids] && params[:header_ids]
RepositoryZipExport.generate_zip(params, @repository, current_user)
log_activity(:export_inventory_items)
2017-06-06 22:12:34 +08:00
else
flash[:alert] = t('zip_export.export_error')
end
2017-12-08 00:59:23 +08:00
redirect_back(fallback_location: root_path)
2017-06-06 22:12:34 +08:00
end
2017-06-21 15:31:39 +08:00
private
def repostiory_import_actions
ImportRepository::ImportRecords.new(
temp_file: TempFile.find_by_id(import_params[:file_id]),
repository: current_team.repositories.find_by_id(import_params[:id]),
mappings: import_params[:mappings],
2017-06-19 20:05:37 +08:00
session: session,
user: current_user
)
2017-06-13 14:10:10 +08:00
end
2017-06-14 15:11:20 +08:00
def load_vars
repository_id = params[:id] || params[:repository_id]
@repository = Repository.find_by_id(repository_id)
render_404 unless @repository
end
def load_parent_vars
@team = current_team
render_404 unless @team
2017-05-25 16:06:48 +08:00
@repositories = @team.repositories.order(created_at: :asc)
end
2017-06-19 20:05:37 +08:00
def check_team
render_404 unless params[:team_id].to_i == current_team.id
end
def check_view_all_permissions
2017-12-12 18:45:19 +08:00
render_403 unless can_read_team?(@team)
end
def check_view_permissions
2017-12-12 21:56:07 +08:00
render_403 unless can_read_team?(@repository.team)
end
2017-05-24 15:29:44 +08:00
def check_create_permissions
unless can_create_repositories?(@team) ||
@team.repositories.count < Rails.configuration.x.repositories_limit
render_403
end
2017-05-24 15:29:44 +08:00
end
def check_manage_permissions
render_403 unless can_manage_repository?(@repository)
end
def repository_params
params.require(:repository).permit(:name)
end
2017-06-14 15:11:20 +08:00
def import_params
params.permit(:id, :file, :file_id, mappings: {}).to_h
end
2017-06-14 15:11:20 +08:00
def repository_response(message)
respond_to do |format|
format.html do
flash[:alert] = message
2017-12-08 00:59:23 +08:00
redirect_back(fallback_location: root_path)
end
format.json do
render json: { message: message },
status: :unprocessable_entity
end
2017-06-14 15:11:20 +08:00
end
end
2019-03-07 02:27:40 +08:00
def log_activity(type_of, message_items = {})
message_items = { repository: @repository.id }.merge(message_items)
2019-03-07 02:27:40 +08:00
Activities::CreateActivityService
.call(activity_type: type_of,
owner: current_user,
subject: @repository,
team: @team,
message_items: message_items)
2019-03-07 02:27:40 +08:00
end
end