2011-12-14 23:56:23 +04:00
|
|
|
# encoding: utf-8
|
|
|
|
#
|
2011-05-07 09:51:39 +04:00
|
|
|
# Redmine - project management software
|
2013-01-12 13:29:31 +04:00
|
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
2007-05-26 19:42:37 +04:00
|
|
|
#
|
|
|
|
# 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.
|
2011-05-07 09:51:39 +04:00
|
|
|
#
|
2007-05-26 19:42:37 +04:00
|
|
|
# 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.
|
2011-05-07 09:51:39 +04:00
|
|
|
#
|
2007-05-26 19:42:37 +04:00
|
|
|
# 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
|
2008-12-09 19:54:46 +03:00
|
|
|
# Displays view/delete links to the attachments of the given object
|
|
|
|
# Options:
|
|
|
|
# :author -- author names are not displayed if set to false
|
2012-07-07 17:48:07 +04:00
|
|
|
# :thumbails -- display thumbnails if enabled in settings
|
2008-12-09 19:54:46 +03:00
|
|
|
def link_to_attachments(container, options = {})
|
2012-07-07 17:48:07 +04:00
|
|
|
options.assert_valid_keys(:author, :thumbnails)
|
2011-05-07 09:51:39 +04:00
|
|
|
|
2008-12-09 19:54:46 +03:00
|
|
|
if container.attachments.any?
|
|
|
|
options = {:deletable => container.attachments_deletable?, :author => true}.merge(options)
|
2012-07-07 17:48:07 +04:00
|
|
|
render :partial => 'attachments/links',
|
|
|
|
:locals => {:attachments => container.attachments, :options => options, :thumbnails => (options[:thumbnails] && Setting.thumbnails_enabled?)}
|
2007-05-26 19:42:37 +04:00
|
|
|
end
|
|
|
|
end
|
2011-05-07 09:51:39 +04:00
|
|
|
|
2011-07-19 00:53:10 +04: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
|
2007-05-26 19:42:37 +04:00
|
|
|
end
|