X-Git-Url: https://irasnyder.com/gitweb/?a=blobdiff_plain;f=app%2Fcontrollers%2Fvideo_controller.rb;h=24517042a3eb84f289087f7f6e0c434b40a4cc09;hb=32e35e775c982b99b462c43430fa6701654792a8;hp=a5508aeb8f7e58facda15a98560449316714f7b5;hpb=3650c5f411112965a12718b75ccbedde3186fa15;p=cs356-p2-videostore.git diff --git a/app/controllers/video_controller.rb b/app/controllers/video_controller.rb index a5508ae..2451704 100644 --- a/app/controllers/video_controller.rb +++ b/app/controllers/video_controller.rb @@ -1,7 +1,11 @@ class VideoController < ApplicationController + layout "admin" + + # Make sure that a user logs in before doing any action here + before_filter :authorize, :except => :login + def index - list - render :action => 'list' + render :action => 'index' end # GETs should be safe (see http://www.w3.org/2001/tag/doc/whenToUseGet.html) @@ -48,4 +52,14 @@ class VideoController < ApplicationController Video.find(params[:id]).destroy redirect_to :action => 'list' end + + def search + if request.post? + @query = params[:q] + @videos = Video.find(:all, :conditions => ["title like ?", @query[0]+"%"]) + render :action => 'searchresults' + else + render :action => 'search' + end + end end