103 lines
2.7 KiB
Ruby
103 lines
2.7 KiB
Ruby
# encoding: utf-8
|
|
class TasksController < ApplicationController
|
|
#auto_complete_for :user, :nick
|
|
|
|
def index
|
|
@non_group_tasks = Task.non_group
|
|
@groups = Workgroup.all
|
|
end
|
|
|
|
def user
|
|
@unaccepted_tasks = @current_user.unaccepted_tasks
|
|
@accepted_tasks = @current_user.accepted_tasks
|
|
end
|
|
|
|
def new
|
|
@task = Task.new
|
|
end
|
|
|
|
def create
|
|
@task = Task.new(params[:task])
|
|
if @task.save
|
|
redirect_to tasks_url, :notice => "Aufgabe wurde erstellt"
|
|
else
|
|
render :template => "tasks/new"
|
|
end
|
|
end
|
|
|
|
def show
|
|
@task = Task.find(params[:id])
|
|
end
|
|
|
|
def edit
|
|
@task = Task.find(params[:id])
|
|
end
|
|
|
|
def update
|
|
@task = Task.find(params[:id])
|
|
@task.attributes=(params[:task])
|
|
if @task.errors.empty?
|
|
@task.save
|
|
flash[:notice] = "Aufgabe wurde aktualisiert"
|
|
if @task.workgroup
|
|
redirect_to :action => "workgroup", :id => @task.workgroup
|
|
else
|
|
redirect_to :action => "index"
|
|
end
|
|
else
|
|
render :template => "tasks/edit"
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
Task.find(params[:id]).destroy
|
|
redirect_to tasks_url, :notice => "Aufgabe wurde gelöscht"
|
|
end
|
|
|
|
# assign current_user to the task and set the assignment to "accepted"
|
|
# if there is already an assignment, only accepted will be set to true
|
|
def accept
|
|
task = Task.find(params[:id])
|
|
if ass = task.is_assigned?(current_user)
|
|
ass.update_attribute(:accepted, true)
|
|
else
|
|
task.assignments.create(:user => current_user, :accepted => true)
|
|
end
|
|
redirect_to user_tasks_path, :notice => "Du hast die Aufgabe übernommen"
|
|
end
|
|
|
|
# deletes assignment between current_user and given task
|
|
def reject
|
|
Task.find(params[:id]).users.delete(current_user)
|
|
redirect_to :action => "index"
|
|
end
|
|
|
|
def update_status
|
|
Task.find(params[:id]).update_attribute("done", params[:task][:done])
|
|
redirect_to tasks_url, :notice => "Aufgabenstatus wurde aktualisiert"
|
|
end
|
|
|
|
# Shows all tasks, which are already done
|
|
def archive
|
|
@tasks = Task.done.paginate :page => params[:page], :per_page => 30
|
|
end
|
|
|
|
# shows workgroup (normal group) to edit weekly_tasks_template
|
|
def workgroup
|
|
@group = Group.find(params[:id])
|
|
if @group.is_a? Ordergroup
|
|
redirect_to tasks_url, :alert => "Keine Arbeitsgruppe gefunden"
|
|
end
|
|
end
|
|
|
|
# this method is uses for the auto_complete-function from script.aculo.us
|
|
def auto_complete_for_task_user_list
|
|
@users = User.find(
|
|
:all,
|
|
:conditions => [ 'LOWER(nick) LIKE ?', '%' + params[:task][:user_list].downcase + '%' ],
|
|
:order => 'nick ASC',
|
|
:limit => 8
|
|
)
|
|
render :partial => '/shared/auto_complete_users'
|
|
end
|
|
end
|