|
| 1 | +class PostsController < ApplicationController |
| 2 | + before_filter :find_post, |
| 3 | + :only => [:show, :edit, :update, :destroy] |
| 4 | + # GET /posts |
| 5 | + # GET /posts.xml |
| 6 | + def index |
| 7 | + @posts = Post.all |
| 8 | + |
| 9 | + respond_to do |format| |
| 10 | + format.html # index.html.erb |
| 11 | + format.xml { render :xml => @posts } |
| 12 | + end |
| 13 | + end |
| 14 | + |
| 15 | + # GET /posts/1 |
| 16 | + # GET /posts/1.xml |
| 17 | + def show |
| 18 | + |
| 19 | + respond_to do |format| |
| 20 | + format.html # show.html.erb |
| 21 | + format.xml { render :xml => @post } |
| 22 | + end |
| 23 | + end |
| 24 | + |
| 25 | + # GET /posts/new |
| 26 | + # GET /posts/new.xml |
| 27 | + def new |
| 28 | + @post = Post.new |
| 29 | + |
| 30 | + respond_to do |format| |
| 31 | + format.html # new.html.erb |
| 32 | + format.xml { render :xml => @post } |
| 33 | + end |
| 34 | + end |
| 35 | + |
| 36 | + # GET /posts/1/edit |
| 37 | + def edit |
| 38 | + end |
| 39 | + |
| 40 | + # POST /posts |
| 41 | + # POST /posts.xml |
| 42 | + def create |
| 43 | + @post = Post.new(params[:post]) |
| 44 | + |
| 45 | + respond_to do |format| |
| 46 | + if @post.save |
| 47 | + format.html { redirect_to(@post, :notice => 'Post was successfully created.') } |
| 48 | + format.xml { render :xml => @post, :status => :created, :location => @post } |
| 49 | + else |
| 50 | + format.html { render :action => "new" } |
| 51 | + format.xml { render :xml => @post.errors, :status => :unprocessable_entity } |
| 52 | + end |
| 53 | + end |
| 54 | + end |
| 55 | + |
| 56 | + # PUT /posts/1 |
| 57 | + # PUT /posts/1.xml |
| 58 | + def update |
| 59 | + respond_to do |format| |
| 60 | + if @post.update_attributes(params[:post]) |
| 61 | + format.html { redirect_to(@post, :notice => 'Post was successfully updated.') } |
| 62 | + format.xml { head :ok } |
| 63 | + else |
| 64 | + format.html { render :action => "edit" } |
| 65 | + format.xml { render :xml => @post.errors, :status => :unprocessable_entity } |
| 66 | + end |
| 67 | + end |
| 68 | + end |
| 69 | + |
| 70 | + # DELETE /posts/1 |
| 71 | + # DELETE /posts/1.xml |
| 72 | + def destroy |
| 73 | + @post.destroy |
| 74 | + |
| 75 | + respond_to do |format| |
| 76 | + format.html { redirect_to(posts_url) } |
| 77 | + format.xml { head :ok } |
| 78 | + end |
| 79 | + end |
| 80 | + |
| 81 | +private |
| 82 | + def find_post |
| 83 | + @post = Post.find(params[:id]) |
| 84 | + end |
| 85 | +end |
0 commit comments