Create symbolic link using REST API #852

This commit is contained in:
Karel Picman 2018-04-27 10:26:43 +02:00
parent 49875a863d
commit f3dda76879
4 changed files with 95 additions and 5 deletions

View File

@ -21,12 +21,18 @@
class DmsfLinksController < ApplicationController
model_object DmsfLink
before_action :find_model_object, :only => [:destroy, :restore]
before_action :find_link_project
before_action :authorize
before_action :permissions
protect_from_forgery except: :new
accept_api_auth :create
skip_before_action :verify_authenticity_token, if: -> { request.headers['HTTP_X_REDMINE_API_KEY'].present? }
def permissions
if @dmsf_link
render_403 unless DmsfFolder.permissions?(@dmsf_link.dmsf_folder)
@ -103,7 +109,8 @@ class DmsfLinksController < ApplicationController
@dmsf_link.target_type = DmsfFolder.model_name.to_s
end
@dmsf_link.name = params[:dmsf_link][:name]
if @dmsf_link.save
result = @dmsf_link.save
if result
flash[:notice] = l(:notice_successful_create)
else
flash[:error] = @dmsf_link.errors.full_messages.to_sentence
@ -122,7 +129,8 @@ class DmsfLinksController < ApplicationController
@dmsf_link.target_type = DmsfFolder.model_name.to_s
end
@dmsf_link.name = params[:dmsf_link][:name]
if @dmsf_link.save
result = @dmsf_link.save
if result
flash[:notice] = l(:notice_successful_create)
else
flash[:error] = @dmsf_link.errors.full_messages.to_sentence
@ -140,6 +148,7 @@ class DmsfLinksController < ApplicationController
end
end
}
format.api { result ? render_api_ok : render_validation_errors(@dmsf_link) }
format.js
end
end
@ -191,7 +200,6 @@ class DmsfLinksController < ApplicationController
else
pid = params[:project_id]
end
Rails.logger.error("pid #{pid}")
@project = Project.find(pid)
end
rescue ActiveRecord::RecordNotFound

View File

@ -86,8 +86,11 @@
# b) Delete permanently
# curl -v -H "Content-Type: application/xml" -X DELETE -u ${1}:${2} "http://localhost:3000/projects/2387/dmsf/delete.xml?folder_id=#{folder_id}&commit=yes"
# 8. Delete a file
# 9. Delete a file
# a) Move to trash only
# curl -v -H "Content-Type: application/xml" -X DELETE -u ${1}:${2} http://localhost:3000/dmsf/files/196118.xml
# b) Delete permanently
# curl -v -H "Content-Type: application/xml" -X DELETE -u ${1}:${2} http://localhost:3000/dmsf/files/196118.xml?commit=yes"
# 10. Create a symbolic link
# curl -v -H "Content-Type: application/xml" -X POST --data "@link.xml" -H "X-Redmine-API-Key: USERS_API_KEY" http://localhost:3000/dmsf_links.xml

11
extra/api/link.xml Normal file
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8" ?>
<dmsf_link>
<project_id>2387</project_id>
<type>link_from</type>
<dmsf_file_id></dmsf_file_id>
<target_project_id>2387</target_project_id>
<target_folder_id>Documents</target_folder_id>
<target_file_id>196119</target_file_id>
<external_url></external_url>
<name>test</name>
</dmsf_link>

View File

@ -0,0 +1,68 @@
# encoding: utf-8
#
# Redmine plugin for Document Management System "Features"
#
# Copyright © 2011-18 Karel Pičman <karel.picman@kontron.com>
#
# 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.
require File.expand_path('../../../test_helper', __FILE__)
class DmsfLinkApiTest < RedmineDmsf::Test::IntegrationTest
include Redmine::I18n
fixtures :projects, :users, :dmsf_files, :dmsf_file_revisions, :members, :roles, :member_roles
def setup
@admin = User.find_by_id 1
@jsmith = User.find_by_id 2
@file1 = DmsfFile.find_by_id 1
Setting.rest_api_enabled = '1'
@role = Role.find_by_id 1
@project1 = Project.find_by_id 1
@project1.enable_module! :dmsf
end
def test_truth
assert_kind_of User, @admin
assert_kind_of User, @jsmith
assert_kind_of DmsfFile, @file1
assert_kind_of Role, @role
assert_kind_of Project, @project1
end
def test_create_link
@role.add_permission! :file_manipulation
token = Token.create!(:user => @jsmith, :action => 'api')
name = 'REST API link test'
# curl -v -H "Content-Type: application/xml" -X POST --data "@link.xml" -H "X-Redmine-API-Key: USERS_API_KEY" http://localhost:3000/dmsf_links.xml
payload = %{
<?xml version="1.0" encoding="utf-8" ?>
<dmsf_link>
<project_id>#{@project1.id}</project_id>
<type>link_from</type>
<dmsf_file_id></dmsf_file_id>
<target_project_id>#{@project1.id}</target_project_id>
<target_folder_id>Documents</target_folder_id>
<target_file_id>#{@file1.id}</target_file_id>
<external_url></external_url>
<name>#{name}</name>
</dmsf_link>
}
post "/dmsf_links.xml?key=#{token.value}", payload, {'CONTENT_TYPE' => 'application/xml'}
assert_response :success
assert_equal 1, DmsfLink.where(:name => name, :project_id => @project1.id).count
end
end