import org.codehaus.groovy.grails.plugins.springsecurity.Secured class EntryDetailedController extends BaseController { def personService def taskService def index = { redirect(action:list,params:params) } // the delete, save and update actions only accept POST requests static allowedMethods = [delete:'POST', save:'POST', update:'POST'] def list = { if(!params.max) params.max = 10 [ entryInstanceList: Entry.list( params ) ] } def show = { def entryInstance = Entry.get( params.id ) if(!entryInstance) { flash.message = "Entry not found with id ${params.id}" redirect(controller: 'taskDetailed', action: 'search') } else { return [ entryInstance : entryInstance ] } } def delete = { def entryInstance = Entry.get( params.id ) if(entryInstance) { if(entryInstance.enteredBy.loginName == personService.currentUser.loginName) { def taskID = entryInstance.task.id entryInstance.delete(flush:true) flash.message = "Entry ${params.id} deleted" redirect(controller: 'taskDetailed', action: 'show', id: taskID) } else { flash.message = "You may only delete your own entries." redirect(action:show,id:entryInstance.id) } } else { flash.message = "Entry not found with id ${params.id}" redirect(controller: "taskDetailed", action:"search") } } def edit = { def entryInstance = Entry.get( params.id ) if(!entryInstance) { flash.message = "Entry not found with id ${params.id}" redirect(controller: "taskDetailed", action:"search") } else { if(entryInstance.enteredBy.loginName == personService.currentUser.loginName) { return [ entryInstance : entryInstance ] } else { flash.message = "You may only edit your own entries." redirect(action:show,id:entryInstance.id) } } } def update = { def entryInstance = Entry.get( params.id ) if(entryInstance) { // The update method only accepts post requests, so this is just in case. if(entryInstance.enteredBy.loginName == personService.currentUser.loginName) { entryInstance.properties = params if(!entryInstance.hasErrors() && entryInstance.save(flush: true)) { flash.message = "Entry ${params.id} updated" redirect(action:show,id:entryInstance.id) } else { render(view:'edit',model:[entryInstance:entryInstance]) } } else { flash.message = "You may only edit your own entries." redirect(action:show,id:entryInstance.id) } } else { flash.message = "Entry not found with id ${params.id}" redirect(controller: "taskDetailed", action:"search") } } def create = { try { def taskInstance = Task.get(params.taskInstance.id) def entryInstance = new Entry() entryInstance.task = taskInstance entryInstance.entryType = EntryType.get(params.entryType.id) return ['entryInstance':entryInstance] } catch(Exception e) { flash.message = "Please select a task, then 'Add Entry'." redirect(controller:"taskDetailed", action:"search") } } def save = { def result = taskService.createEntry(params) if(!result.error) { flash.message = "Entry created." redirect(controller: "taskDetailed", action: "show", id: result.taskId) } else { if(result.entryInstance) { render(view:'create',model:[entryInstance: result.entryInstance]) } else { flash.message = "Could not create entry." redirect(controller: "taskDetailed", action:"search") } } } }