MorningPeak/app/controllers/client_tickets_controller.rb
Arthur Poulet b865a60bea Ticket is ready
- Ticket in user/admin sides ok (respond tested)
- Fix seeds
- Fix models
- Fix all migrations
- Add client_... controllers (bills/tickets)
2015-06-18 00:56:01 +02:00

128 lines
3.7 KiB
Ruby

class ClientTicketsController < ApplicationController
before_action :set_ticket, only: [:show, :edit, :update, :destroy]
before_action :set_ticket_custom_route, only: [:close, :open, :respond]
before_action :authenticate_user!
# GET /tickets
# GET /tickets.json
def index
@tickets = current_user.tickets.heads.order('state DESC')
end
def close
respond_to do |format|
if @ticket.close
format.html { redirect_to tickets_url, notice: 'Ticket was successfully closed.' }
format.json { render :show, status: :ok, location: client_tickets_url(@ticket) }
else
format.html { render :index }
format.json { render json: @ticket.errors, status: :unprocessable_entity }
end
end
end
def open
respond_to do |format|
if @ticket.open
format.html { redirect_to tickets_url, notice: 'Ticket was successfully reopened.' }
format.json { render :show, status: :ok, location: client_tickets_url(@ticket) }
else
format.html { render :index }
format.json { render json: @ticket.errors, status: :unprocessable_entity }
end
end
end
def respond
session[:user_ticket_respond_parent_id] = @ticket.id
@ticket = Ticket.new(ticket_id: @ticket.head.id,
creator: current_user,
title: @ticket.title)
if @ticket.close? or @ticket.head.close?
respond_to do |format|
format.html { redirect_to tickets_url }
format.json { render json: {ticket: 'the ticket is closed'}, status: :unprocessable_entity }
end
else
render :new
end
end
# GET /tickets/1
# GET /tickets/1.json
def show
end
# GET /tickets/new
def new
@ticket = Ticket.new
end
# GET /tickets/1/edit
def edit
end
# POST /tickets
# POST /tickets.json
def create
@ticket = Ticket.new(ticket_params)
@ticket.ticket_id = session[:user_ticket_respond_parent_id]
@ticket.creator = current_user
respond_to do |format|
if @ticket.save
@ticket.close_head if @ticket.close?
format.html { redirect_to @ticket, notice: 'Ticket was successfully created.' }
format.json { render :show, status: :created, location: client_tickets_url(@ticket) }
else
format.html { render :new }
format.json { render json: @ticket.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /tickets/1
# PATCH/PUT /tickets/1.json
def update
respond_to do |format|
if @ticket.update(ticket_params)
@ticket.close_head if @ticket.close?
format.html { redirect_to @ticket, notice: 'Ticket was successfully updated.' }
format.json { render :show, status: :ok, location: client_tickets_url(@ticket) }
else
format.html { render :edit }
format.json { render json: @ticket.errors, status: :unprocessable_entity }
end
end
end
# # DELETE /tickets/1
# # DELETE /tickets/1.json
# def destroy
# @ticket.destroy
# respond_to do |format|
# format.html { redirect_to tickets_url, notice: 'Ticket was successfully destroyed.' }
# format.json { head :no_content }
# end
# end
private
# Use callbacks to share common setup or constraints between actions.
def set_ticket
@ticket = Ticket.find(params[:id])
@ticket = nil if not @ticket.creator == current_user and not @ticket.head.creator == current_user
@ticket
end
def set_ticket_custom_route
params[:id] = params[:client_ticket_id]
set_ticket
end
# Never trust parameters from the scary internet, only allow the white list through.
def ticket_params
params.require(:ticket).permit(:title, :description, :state)
end
end