Skip to content
Extraits de code Groupes Projets
report_controller.rb 1,07 ko
Newer Older
Lukas Matt's avatar
Lukas Matt a validé
#   Copyright (c) 2010-2011, Diaspora Inc.  This file is
#   licensed under the Affero General Public License version 3 or later.  See
#   the COPYRIGHT file.

class ReportController < ApplicationController
  before_filter :authenticate_user!
  before_filter :redirect_unless_admin_or_moderator, :except => [:create]

  def index
    @reports = Report.where(reviewed: false)
  end

  def update
Lukas Matt's avatar
Lukas Matt a validé
    if report = Report.where(id: params[:id]).first
      report.mark_as_reviewed
Lukas Matt's avatar
Lukas Matt a validé
    redirect_to :action => :index
  end

  def destroy
    if (report = Report.where(id: params[:id]).first) && report.destroy_reported_item
      flash[:notice] = I18n.t 'report.status.destroyed'
Lukas Matt's avatar
Lukas Matt a validé
    else
      flash[:error] = I18n.t 'report.status.failed'
Lukas Matt's avatar
Lukas Matt a validé
    redirect_to :action => :index
  end

  def create
    report = current_user.reports.new(report_params)
    if report.save
Lukas Matt's avatar
Lukas Matt a validé
      render :json => true, :status => 200
Lukas Matt's avatar
Lukas Matt a validé
    else
      render :nothing => true, :status => 409
Lukas Matt's avatar
Lukas Matt a validé
    def report_params
      params.require(:report).permit(:item_id, :item_type, :text)