2013-08-01 10:33:49 +08:00
# encoding: utf-8
#
# Redmine - project management software
# Copyright (C) 2006-2013 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.
module AttachmentsHelper
# Displays view/delete links to the attachments of the given object
# Options:
# :author -- author names are not displayed if set to false
# :thumbails -- display thumbnails if enabled in settings
2014-09-10 11:36:50 +08:00
include Redmine :: Pagination
2013-08-01 10:33:49 +08:00
def link_to_attachments ( container , options = { } )
options . assert_valid_keys ( :author , :thumbnails )
if container . attachments . any?
options = { :deletable = > container . attachments_deletable? , :author = > true } . merge ( options )
render :partial = > 'attachments/links' ,
:locals = > { :attachments = > container . attachments , :options = > options , :thumbnails = > ( options [ :thumbnails ] && Setting . thumbnails_enabled? ) }
end
end
2013-09-18 22:56:01 +08:00
def attach_delete ( project )
if User . current . logged? && ( User . current . admin? || ( ! Member . where ( 'user_id = ? and project_id = ?' , User . current . id , project . bid . courses . first . id ) . first . nil? && ( Member . where ( 'user_id = ? and project_id = ?' , User . current . id , project . bid . courses . first . id ) . first . roles & Role . where ( 'id = ? or id = ?' , 3 , 7 ) ) . size > 0 ) || project . user_id == User . current . id )
true
else
false
end
2014-05-12 18:46:39 +08:00
2013-09-18 22:56:01 +08:00
end
2013-08-01 10:33:49 +08:00
def render_api_attachment ( attachment , api )
api . attachment do
api . id attachment . id
api . filename attachment . filename
api . filesize attachment . filesize
api . content_type attachment . content_type
api . description attachment . description
api . content_url url_for ( :controller = > 'attachments' , :action = > 'download' , :id = > attachment , :filename = > attachment . filename , :only_path = > false )
api . author ( :id = > attachment . author . id , :name = > attachment . author . name ) if attachment . author
api . created_on attachment . created_on
end
end
2013-12-03 10:37:19 +08:00
def link_to_memo_attachments ( container , options = { } )
options . assert_valid_keys ( :author , :thumbnails )
if container . attachments . any?
options = { :deletable = > deletable? ( container ) , :author = > true } . merge ( options )
render :partial = > 'attachments/links' ,
:locals = > { :attachments = > container . attachments , :options = > options , :thumbnails = > ( options [ :thumbnails ] && Setting . thumbnails_enabled? ) }
end
end
private
def deletable? container , user = User . current
User . current . logged? && ( container . author == user || user . admin? )
end
2014-01-17 16:42:31 +08:00
2014-03-01 10:14:01 +08:00
# this method is used to get all projects that tagged one tag
# added by william
def get_attachments_by_tag ( tag_name )
Attachment . tagged_with ( tag_name ) . order ( 'created_on desc' )
end
2014-04-12 19:01:48 +08:00
# this method is used to get all attachments that from one project and tagged one tag
# added by Long Jun
def get_attachments_by_project_tag ( tag_name , obj )
@project_id = nil
if obj . container_type == 'Version'
@project_id = Version . find ( obj . container_id ) . project_id
elsif obj . container_type == 'Project'
@project_id = obj . container_id
end
2014-07-31 14:39:18 +08:00
attachments = Attachment . tagged_with ( tag_name ) . order ( 'created_on desc' ) . where ( " (container_id = :project_id and container_type = 'Project') or
2014-04-12 19:01:48 +08:00
( container_id in ( select id from versions where project_id = :project_id ) and container_type = 'Version' ) " , {:project_id => @project_id})
2014-07-31 14:39:18 +08:00
return attachments
2014-04-12 19:01:48 +08:00
end
2014-03-06 16:47:28 +08:00
def render_attachments_for_new_project ( project , limit = nil )
2014-03-05 11:17:16 +08:00
# 查询条件
2014-03-06 16:47:28 +08:00
params [ :q ] || = " "
2014-03-07 08:53:05 +08:00
filename_condition = params [ :q ] . strip
2014-03-06 16:47:28 +08:00
attachAll = Attachment . scoped
2014-03-05 11:17:16 +08:00
# 当前项目所有资源
# attachments = Attachment.find_all_by_container_type_and_container_id(project.class, project.id)
2014-03-06 16:47:28 +08:00
# attachments = Attachment.where("container_type = '#{project.class}' and container_id = #{project.id}")
2014-03-05 11:17:16 +08:00
# 除去当前项目的所有资源
2014-03-07 08:53:05 +08:00
nobelong_attach = Attachment . where ( " !(container_type = ' #{ project . class } ' and container_id = #{ project . id } ) " ) unless project . blank?
2014-03-06 16:47:28 +08:00
# 搜索域确定
domain = project . nil? ? attachAll : nobelong_attach
2014-03-05 11:17:16 +08:00
# 搜索到的资源
2014-07-11 09:07:09 +08:00
searched_attach = domain . where ( " is_public=1 and filename LIKE :like " , like : " % #{ filename_condition } % " ) . limit ( limit ) . order ( 'created_on desc' )
2014-07-07 16:52:39 +08:00
#searched_attach = private_filter searched_attach
2014-03-06 16:47:28 +08:00
searched_attach = paginateHelper ( searched_attach , 10 )
s = content_tag ( 'div' , attachments_check_box_tags ( 'attachment[attach][]' , searched_attach ) , :id = > 'attachments' )
links = pagination_links_full ( @obj_pages , @obj_count , :per_page_links = > false ) { | text , parameters , options |
2014-07-02 14:58:52 +08:00
link_to text , attachments_autocomplete_path ( parameters . merge ( :project_id = > project . id , :q = > params [ :q ] , :format = > 'js' ) ) , :remote = > true }
2014-03-06 16:47:28 +08:00
return s + content_tag ( 'div' , content_tag ( 'ul' , links ) , :class = > 'pagination' )
# ================================================================================================
# attach_count = searched_attach.count
# attach_pages = Redmine::Pagination::Paginator.new attach_count, 10, params['page'] #by young
# attachs = searched_attach.offset(attach_pages.offset).limit(attach_pages.per_page).all
# s = content_tag('div', attachments_check_box_tags('attachment[attach][]', attachs), :id => 'attachments')
# links = pagination_links_full(attach_pages, attach_count, :per_page_links => false) {|text, parameters, options|
# link_to text, attachments_autocomplete_path( parameters.merge(:q => params[:q], :format => 'js')), :remote => true }
# return s + content_tag('div', content_tag('ul', links), :class => 'pagination')
# return searched_attach.to_json
end
2014-07-02 14:58:52 +08:00
# add by nwb
def render_attachments_for_new_course ( course , limit = nil )
# 查询条件
params [ :q ] || = " "
filename_condition = params [ :q ] . strip
attachAll = Attachment . scoped
# 除去当前课程的所有资源
nobelong_attach = Attachment . where ( " !(container_type = ' #{ course . class } ' and container_id = #{ course . id } ) " ) unless course . blank?
# 搜索域确定
domain = course . nil? ? attachAll : nobelong_attach
# 搜索到的资源
2014-07-11 09:07:09 +08:00
searched_attach = domain . where ( " is_public=1 and filename LIKE :like " , like : " % #{ filename_condition } % " ) . limit ( limit ) . order ( 'created_on desc' )
2014-07-07 16:52:39 +08:00
#searched_attach = private_filter searched_attach
2014-07-02 14:58:52 +08:00
searched_attach = paginateHelper ( searched_attach , 10 )
#testattach = Attachment.public_attachments
s = content_tag ( 'div' , attachments_check_box_tags ( 'attachment[attach][]' , searched_attach ) , :id = > 'attachments' )
links = pagination_links_full ( @obj_pages , @obj_count , :per_page_links = > false ) { | text , parameters , options |
link_to text , attachments_autocomplete_path ( parameters . merge ( :course_id = > course . id , :q = > params [ :q ] , :format = > 'js' ) ) , :remote = > true }
return s + content_tag ( 'div' , content_tag ( 'ul' , links ) , :class = > 'pagination' )
end
2014-03-06 16:47:28 +08:00
def attachments_check_box_tags ( name , attachs )
s = ''
attachs . each do | attach |
s << " <label> #{ check_box_tag name , attach . id , false , :id = > nil } #{ h attach . filename } </label><br/> "
end
s . html_safe
end
2014-09-10 11:36:50 +08:00
# Modified by Longjun
# 有参数的方法要加()
def private_filter ( resultSet )
2014-03-06 16:47:28 +08:00
result = resultSet . to_a . dup
2014-03-05 11:17:16 +08:00
2014-07-02 14:58:52 +08:00
# modify by nwb
#添加对课程资源文件的判断
2014-03-06 16:47:28 +08:00
resultSet . map { | res |
if ( res . container . nil? ||
( res . container . class . to_s == " Project " && res . container . is_public == false ) ||
2014-07-02 14:58:52 +08:00
( res . container . has_attribute? ( :project ) && res . container . project && res . container . project . is_public == false ) ||
2014-03-06 16:47:28 +08:00
( res . container . class . to_s == " HomeworkAttach " && res . container . bid . reward_type == 3 ) ||
2014-07-02 14:58:52 +08:00
( res . container . class . to_s == " Course " && res . container . is_public == false ) ||
( res . container . has_attribute? ( :course ) && res . container . course && res . container . course . is_public == false )
2014-03-06 16:47:28 +08:00
)
result . delete ( res )
end
}
result
2014-03-05 11:17:16 +08:00
end
2014-07-02 14:58:52 +08:00
2014-09-10 11:36:50 +08:00
# Modified by Longjun
# include 应放在class/model 的开始处
# include Redmine::Pagination
# end
def paginateHelper ( obj , pre_size = 10 )
2014-03-06 16:47:28 +08:00
@obj_count = obj . count
@obj_pages = Paginator . new @obj_count , pre_size , params [ 'page' ]
if obj . kind_of? ActiveRecord :: Base or obj . kind_of? ActiveRecord :: Relation
obj . limit ( @obj_pages . per_page ) . offset ( @obj_pages . offset )
elsif obj . kind_of? Array
obj [ @obj_pages . offset , @obj_pages . per_page ]
else
logger . error " [ApplicationController] Error : application_controller # paginateHelper ===> unknow category: #{ obj . class } "
raise RuntimeError , 'unknow type, Please input you type into this helper.'
end
end
2013-08-01 10:33:49 +08:00
end