2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2012-01-03 23:36:40 +04:00
|
|
|
# Copyright (C) 2010-2012 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +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-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2011-12-29 02:16:38 +04:00
|
|
|
require 'diff'
|
|
|
|
|
2011-05-13 20:55:55 +04:00
|
|
|
class JournalsController < ApplicationController
|
2011-05-21 01:49:18 +04:00
|
|
|
before_filter :find_journal, :only => [:edit, :diff]
|
|
|
|
before_filter :find_issue, :only => [:new]
|
|
|
|
before_filter :find_optional_project, :only => [:index]
|
|
|
|
before_filter :authorize, :only => [:new, :edit, :diff]
|
|
|
|
accept_key_auth :index
|
|
|
|
menu_item :issues
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-05-21 01:49:18 +04:00
|
|
|
include QueriesHelper
|
|
|
|
include SortHelper
|
|
|
|
|
|
|
|
def index
|
|
|
|
retrieve_query
|
|
|
|
sort_init 'id', 'desc'
|
|
|
|
sort_update(@query.sortable_columns)
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-05-21 01:49:18 +04:00
|
|
|
if @query.valid?
|
2011-05-30 22:52:25 +04:00
|
|
|
@journals = @query.issue_journals(:order => "#{Journal.table_name}.created_at DESC",
|
2011-05-21 01:49:18 +04:00
|
|
|
:limit => 25)
|
|
|
|
end
|
|
|
|
@title = (@project ? @project.name : Setting.app_title) + ": " + (@query.new_record? ? l(:label_changes_details) : @query.name)
|
|
|
|
render :layout => false, :content_type => 'application/atom+xml'
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
render_404
|
|
|
|
end
|
2011-05-13 20:55:55 +04:00
|
|
|
|
2011-05-21 01:49:18 +04:00
|
|
|
# Used when replying to an issue or journal
|
|
|
|
def new
|
|
|
|
journal = Journal.find(params[:journal_id]) if params[:journal_id]
|
|
|
|
if journal
|
|
|
|
user = journal.user
|
|
|
|
text = journal.notes
|
|
|
|
else
|
|
|
|
user = @issue.author
|
|
|
|
text = @issue.description
|
|
|
|
end
|
|
|
|
# Replaces pre blocks with [...]
|
|
|
|
text = text.to_s.strip.gsub(%r{<pre>((.|\s)*?)</pre>}m, '[...]')
|
|
|
|
content = "#{ll(Setting.default_language, :text_user_wrote, user)}\n> "
|
|
|
|
content << text.gsub(/(\r?\n|\r\n?)/, "\n> ") + "\n\n"
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-05-21 01:49:18 +04:00
|
|
|
render(:update) { |page|
|
|
|
|
page.<< "$('notes').value = \"#{escape_javascript content}\";"
|
|
|
|
page.show 'update'
|
|
|
|
page << "Form.Element.focus('notes');"
|
|
|
|
page << "Element.scrollTo('update');"
|
|
|
|
page << "$('notes').scrollTop = $('notes').scrollHeight - $('notes').clientHeight;"
|
|
|
|
}
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-05-13 20:55:55 +04:00
|
|
|
def edit
|
2011-05-21 01:49:18 +04:00
|
|
|
(render_403; return false) unless @journal.editable_by?(User.current)
|
2011-05-13 20:55:55 +04:00
|
|
|
if request.post?
|
|
|
|
@journal.update_attribute(:notes, params[:notes]) if params[:notes]
|
|
|
|
@journal.destroy if @journal.details.empty? && @journal.notes.blank?
|
|
|
|
call_hook(:controller_journals_edit_post, { :journal => @journal, :params => params})
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to :controller => @journal.journaled.class.name.pluralize.downcase,
|
2011-05-21 01:49:18 +04:00
|
|
|
:action => 'show', :id => @journal.journaled_id }
|
2011-05-13 20:55:55 +04:00
|
|
|
format.js { render :action => 'update' }
|
|
|
|
end
|
2011-05-21 01:49:18 +04:00
|
|
|
else
|
|
|
|
respond_to do |format|
|
|
|
|
format.html {
|
|
|
|
# TODO: implement non-JS journal update
|
2011-05-30 22:52:25 +04:00
|
|
|
render :nothing => true
|
2011-05-21 01:49:18 +04:00
|
|
|
}
|
|
|
|
format.js
|
|
|
|
end
|
2011-05-13 20:55:55 +04:00
|
|
|
end
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-12-29 02:16:38 +04:00
|
|
|
def diff
|
|
|
|
if valid_field?(params[:field])
|
|
|
|
from = @journal.changes[params[:field]][0]
|
|
|
|
to = @journal.changes[params[:field]][1]
|
|
|
|
|
|
|
|
@diff = Redmine::Helpers::Diff.new(to, from)
|
|
|
|
@issue = @journal.journaled
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { }
|
2011-12-29 04:31:34 +04:00
|
|
|
format.js { render :layout => false }
|
2011-12-29 02:16:38 +04:00
|
|
|
end
|
|
|
|
else
|
|
|
|
render_404
|
|
|
|
end
|
|
|
|
end
|
2012-01-18 22:26:03 +04:00
|
|
|
|
2011-05-21 01:49:18 +04:00
|
|
|
private
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-05-13 20:55:55 +04:00
|
|
|
def find_journal
|
|
|
|
@journal = Journal.find(params[:id])
|
2011-05-21 01:49:18 +04:00
|
|
|
@project = @journal.journalized.project
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
render_404
|
|
|
|
end
|
|
|
|
|
|
|
|
# TODO: duplicated in IssuesController
|
|
|
|
def find_issue
|
|
|
|
@issue = Issue.find(params[:id], :include => [:project, :tracker, :status, :author, :priority, :category])
|
|
|
|
@project = @issue.project
|
2011-05-13 20:55:55 +04:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
render_404
|
|
|
|
end
|
2011-12-29 02:16:38 +04:00
|
|
|
|
|
|
|
# Is this a valid field for diff'ing?
|
|
|
|
def valid_field?(field)
|
|
|
|
field.to_s.strip == "description"
|
|
|
|
end
|
2011-05-13 20:55:55 +04:00
|
|
|
end
|