Class: Tr8n::ForumController

Inherits:
BaseController show all
Defined in:
app/controllers/tr8n/forum_controller.rb

Overview

– Copyright © 2010-2012 Michael Berkovich, tr8n.net

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ++

Instance Method Summary collapse

Methods inherited from BaseController

#tr8n_current_language, #tr8n_current_translator, #tr8n_current_user, #tr8n_current_user_is_admin?, #tr8n_current_user_is_guest?, #tr8n_current_user_is_manager?, #tr8n_current_user_is_translator?, #tr8n_default_language

Instance Method Details

#delete_messageObject



68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'app/controllers/tr8n/forum_controller.rb', line 68

def delete_message
  message = Tr8n::LanguageForumMessage.find_by_id(params[:message_id])
  
  unless message
    trfe("This message does not exist")
    return redirect_to(:action => :index)
  end  

  if message.translator != tr8n_current_translator
    trfe("You cannot delete messages you didn't post.")
    redirect_to(:action => :topic, :topic_id => message.language_forum_topic.id)
  end
  
  message.destroy
  trfn("The message has been removed")
  redirect_to(:action => :topic, :topic_id => message.language_forum_topic.id)
end

#delete_topicObject



55
56
57
58
59
60
61
62
63
64
65
66
# File 'app/controllers/tr8n/forum_controller.rb', line 55

def delete_topic
  topic = Tr8n::LanguageForumTopic.find_by_id(params[:topic_id])
  
  if topic.translator != tr8n_current_translator
    trfe("You cannot delete topics you didn't create.")
    return redirect_to(:action => :index)
  end
  
  topic.destroy if topic
  trfn("The topic {topic} has been removed", 'Tr8n Forum', :topic => "\"#{topic.topic}\"")
  redirect_to(:action => :index)
end

#indexObject



28
29
30
# File 'app/controllers/tr8n/forum_controller.rb', line 28

def index
  @topics = Tr8n::LanguageForumTopic.where(:language_id => tr8n_current_language.id).order("created_at desc").page(page).per(per_page)
end

#report_messageObject



86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'app/controllers/tr8n/forum_controller.rb', line 86

def report_message
  message = Tr8n::LanguageForumMessage.find_by_id(params[:message_id])
  
  unless message
    trfe("This message does not exist")
    return redirect_to(:action => :index)
  end  

  message.submit_abuse_report(tr8n_current_translator)
  
  trfn("The message has been reported")
  redirect_to(:action => :topic, :topic_id => message.language_forum_topic.id)    
end

#topicObject



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'app/controllers/tr8n/forum_controller.rb', line 32

def topic
  if request.post?
    if params[:topic_id]
      topic = Tr8n::LanguageForumTopic.find_by_id(params[:topic_id])
    else
      topic = Tr8n::LanguageForumTopic.create(:language_id => tr8n_current_language.id, :translator => tr8n_current_translator, :topic => params[:topic])
    end
    
    Tr8n::LanguageForumMessage.create(:language_forum_topic => topic, :language_id => tr8n_current_language.id, :message => params[:message], :translator => tr8n_current_translator)
    return redirect_to(:action => :topic, :topic_id => topic.id, :last_page => true)
  end
  
  unless params[:mode] == "create"
    @topic = Tr8n::LanguageForumTopic.find_by_id(params[:topic_id])
    if params[:last_page]
      params[:page] = (@topic.post_count / per_page.to_i) 
      params[:page] += 1 unless (@topic.post_count % per_page.to_i == 0) 
    end

    @messages = Tr8n::LanguageForumMessage.where(:language_forum_topic_id => @topic.id).order("created_at asc").page(page).per(per_page)
  end
end