aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/action_orm.rb
blob: 69cf227fd75ac30e9d8bc4b61995ad1bccf7b328 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
module Rails
  module Generators
    # ActionORM is a class to be implemented by each ORM to allow Rails to
    # generate customized controller code.
    #
    # The API has the same methods as ActiveRecord, but each method returns a
    # string that matches the ORM API.
    #
    # For example:
    #
    #   ActiveRecord::Generators::ActionORM.find(Foo, "params[:id]")
    #   #=> "Foo.find(params[:id])"
    #
    #   Datamapper::Generators::ActionORM.find(Foo, "params[:id]")
    #   #=> "Foo.get(params[:id])"
    #
    # On initialization, the ActionORM accepts the instance name that will
    # receive the calls:
    #
    #   builder = ActiveRecord::Generators::ActionORM.new "@foo"
    #   builder.save #=> "@foo.save"
    #
    # The only exception in ActionORM for ActiveRecord is the use of self.build
    # instead of self.new.
    #
    class ActionORM
      attr_reader :name

      def initialize(name)
        @name = name
      end

      # GET index
      def self.all(klass)
        raise NotImplementedError
      end

      # GET show
      # GET edit
      # PUT update
      # DELETE destroy
      def self.find(klass, params=nil)
        raise NotImplementedError
      end

      # GET new
      # POST create
      def self.build(klass, params=nil)
        raise NotImplementedError
      end

      # POST create
      def save
        raise NotImplementedError
      end

      # PUT update
      def update_attributes(params=nil)
        raise NotImplementedError
      end

      # POST create
      # PUT update
      def errors
        raise NotImplementedError
      end

      # DELETE destroy
      def destroy
        raise NotImplementedError
      end
    end
  end
end