public
Description: The web app builder for Rails
Homepage: http://hobocentral.net
Clone URL: git://github.com/tablatom/hobo.git
hobo / hobo / lib / hobo / model_controller.rb
100644 695 lines (523 sloc) 20.101 kb
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
module Hobo
 
  module ModelController
 
    include Hobo::Controller
 
    VIEWLIB_DIR = "taglibs"
 
    DONT_PAGINATE_FORMATS = [ Mime::CSV, Mime::YAML, Mime::JSON, Mime::XML, Mime::ATOM, Mime::RSS ]
 
    READ_ONLY_ACTIONS = [:index, :show]
    WRITE_ONLY_ACTIONS = [:create, :update, :destroy]
    FORM_ACTIONS = [:new, :edit]
 
    class << self
 
      def included(base)
        base.class_eval do
          @auto_actions ||= {}
 
          inheriting_cattr_reader :web_methods => [], :show_actions => [], :index_actions => []
 
          extend ClassMethods
 
 
          helper_method :model, :current_user
          before_filter :set_no_cache_headers
 
          rescue_from ActiveRecord::RecordNotFound, :with => :not_found
 
          rescue_from Hobo::Model::PermissionDeniedError, :with => :permission_denied
          rescue_from Hobo::Lifecycles::LifecycleKeyError, :with => :permission_denied
 
          alias_method_chain :render, :hobo_model
 
        end
 
        Hobo::Controller.included_in_class(base)
      end
 
    end
 
 
    module ClassMethods
 
      attr_writer :model
 
      def collections
        # FIXME The behaviour here is weird if the superclass does
        # define collections *and* this class adds some more. The
        # added ones won't be published
 
        # by default By default, all has_many associations are published
        @collections ||= if superclass.respond_to?(:collections)
                           superclass.collections
                         else
                           model.reflections.values.map {|r| r.name if r.macro == :has_many}.compact
                         end
      end
 
 
      def model
        @model ||= name.sub(/Controller$/, "").singularize.constantize
      end
 
 
      def autocomplete(name, options={}, &block)
        options = options.dup
        field = options.delete(:field) || name
        if block
          index_action "complete_#{name}", &block
        else
          index_action "complete_#{name}" do
            hobo_completions name, model, options
          end
        end
      end
 
 
      def web_method(web_name, options={}, &block)
        web_methods << web_name.to_sym
        method = options.delete(:method) || web_name
        got_block = block_given?
        define_method web_name do
          # Make sure we have a copy of the options - it is being mutated somewhere
          opts = {}.merge(options)
          @this = find_instance(opts) unless opts[:no_find]
          raise Hobo::Model::PermissionDeniedError unless Hobo.can_call?(current_user, @this, method)
          if got_block
            instance_eval(&block)
          else
            @this.send(method)
          end
 
          hobo_ajax_response || render(:nothing => true) unless performed?
        end
      end
 
 
      def auto_actions(*args)
        options = args.extract_options!
 
        @auto_actions = case args.first
                          when :all then available_auto_actions
                          when :write_only then available_auto_write_actions + args.rest
                          when :read_only then available_auto_read_actions + args.rest
                          when :lifecycle then available_auto_lifecycle_actions + args.rest
                          else args
                        end
 
        except = Array(options[:except])
        except_actions = except.map do |arg|
          case arg
            when :collections then available_auto_collection_actions
            when :lifecycle then available_auto_lifecycle_actions
            else arg
          end
        end
 
        @auto_actions -= except_actions.flatten
 
        def_auto_actions
      end
 
 
      def def_auto_actions
        self.class_eval do
          def index; hobo_index end if include_action?(:index)
          def show; hobo_show end if include_action?(:show)
          def new; hobo_new end if include_action?(:new)
          def create; hobo_create end if include_action?(:create)
          def edit; hobo_show end if include_action?(:edit)
          def update; hobo_update end if include_action?(:update)
          def destroy; hobo_destroy end if include_action?(:destroy)
 
          def completions; hobo_completions end if include_action?(:completions)
 
          def reorder; hobo_reorder end if include_action?(:reorder)
        end
 
        collections.each { |c| def_collection_actions(c.to_sym) }
        def_lifecycle_actions
      end
 
 
      def def_auto_action(name, &block)
        define_method name, &block if name.not_in?(instance_methods) && include_action?(name)
      end
 
 
      def def_collection_actions(name)
        def_auto_action name do
          hobo_show_collection(name)
        end
 
        if Hobo.simple_has_many_association?(model.reflections[name])
          def_auto_action "new_#{name.to_s.singularize}" do
            hobo_new_in_collection(name)
          end
 
          def_auto_action "create_#{name.to_s.singularize}" do
            hobo_create_in_collection(name)
          end
        end
      end
 
 
      def def_lifecycle_actions
        if model.has_lifecycle?
          model::Lifecycle.creator_names.each do |creator|
            def_auto_action "#{creator}_page" do
              creator_page_action creator
            end
            def_auto_action creator do
              creator_action creator
            end
          end
 
          model::Lifecycle.transition_names.each do |transition|
            def_auto_action "#{transition}_page" do
              transition_page_action transition
            end
            def_auto_action transition do
              transition_action transition
            end
          end
        end
      end
 
 
      def show_action(*names, &block)
        options = names.extract_options!
        show_actions.concat(names)
        for name in names
          if block
            define_method(name, &block)
          else
            define_method(name) { hobo_show options.dup }
          end
        end
      end
 
 
      def index_action(*names, &block)
        options = names.extract_options!
        index_actions.concat(names)
        for name in names
          if block
            define_method(name, &block)
          else
            if scope = options.delete(:scope)
              define_method(name) { hobo_index scope, options.dup }
            else
              define_method(name) { hobo_index options.dup }
            end
          end
        end
      end
 
 
      def publish_collection(*names)
        collections.concat(names)
        names.each {|n| def_collection_actions(n)}
      end
 
 
      def include_action?(name)
        name.to_sym.in?(@auto_actions)
      end
 
 
      def available_auto_actions
        (available_auto_read_actions +
         available_auto_write_actions +
         FORM_ACTIONS +
         available_auto_collection_actions +
         available_auto_lifecycle_actions).uniq
      end
 
 
      def available_auto_read_actions
        READ_ONLY_ACTIONS + collections
      end
 
 
      def available_auto_write_actions
        if "position_column".in?(model.instance_methods)
          WRITE_ONLY_ACTIONS + [:reorder]
        else
          WRITE_ONLY_ACTIONS
        end
      end
 
 
      def available_auto_collection_actions
        collections.map do |c|
          [c, "new_#{c.to_s.singularize}".to_sym, "create_#{c.to_s.singularize}".to_sym]
        end.flatten
      end
 
 
      def available_auto_lifecycle_actions
        # For each creator/transition there are two possible
        # actions. e.g. for signup, 'signup_page' would be routed to
        # GET users/signup, and would show the form, while 'signup'
        # would be routed to POST /users/signup)
        if model.has_lifecycle?
          (model::Lifecycle.creator_names.map { |c| [c, "#{c}_page"] } +
           model::Lifecycle.transition_names.map { |t| [t, "#{t}_page"] }).flatten.*.to_sym
        else
          []
        end
      end
 
    end # of ClassMethods
 
 
    protected
 
 
    def parse_sort_param(*sort_fields)
      _, desc, field = *params[:sort]._?.match(/^(-)?([a-z_]+(?:\.[a-z_]+)?)$/)
 
      if field
        if field.in?(sort_fields.*.to_s)
          @sort_field = field
          @sort_direction = desc ? "desc" : "asc"
 
          [@sort_field, @sort_direction]
        end
      end
    end
 
 
    # --- Action implementation helpers --- #
 
 
    def find_instance(options={})
      model.user_find(current_user, params[:id], options)
    end
 
 
    def invalid?; !valid?; end
 
 
    def valid?; this.errors.empty?; end
 
 
    def re_render_form(default_action)
      if params[:page_path]
        controller, view = Controller.controller_and_view_for(params[:page_path])
        view = default_action if view == Dryml::EMPTY_PAGE
        render :template => "#{controller}/#{view}"
      else
        render :action => default_action
      end
    end
 
 
    def destination_after_submit(record=nil, destroyed=false)
      record ||= this
 
      after_submit = params[:after_submit]
 
      # The after_submit post parameter takes priority
      (after_submit == "stay-here" ? :back : after_submit) ||
 
        # Then try the record's show page
        (!destroyed && object_url(@this)) ||
 
        # Then the show page of the 'owning' object if there is one
        (@this.class.default_dependent_on && object_url(@this.send(@this.class.default_dependent_on))) ||
 
        # Last try - the index page for this model
        object_url(@this.class) ||
 
        # Give up
        home_page
    end
 
 
    def response_block(&b)
      if b
        if b.arity == 1
          respond_to {|wants| yield(wants) }
        else
          yield
        end
        performed?
      end
    end
 
 
    def request_requires_pagination?
      request.format.not_in?(DONT_PAGINATE_FORMATS)
    end
 
 
    def find_or_paginate(finder, options)
      options = options.reverse_merge(:paginate => request_requires_pagination?)
      do_pagination = options.delete(:paginate) && finder.respond_to?(:paginate)
      options[:order] = :default unless options[:order] || finder.send(:scope, :find)[:order]
 
      if do_pagination
        options.reverse_merge!(:page => params[:page] || 1)
        finder.paginate(options)
      else
        finder.all(options)
      end
    end
 
 
    # --- Action implementations --- #
 
    def hobo_index(*args, &b)
      options = args.extract_options!
      finder = args.first || model
      self.this = find_or_paginate(finder, options)
      response_block(&b)
    end
 
 
    def hobo_show(*args, &b)
      options = args.extract_options!
      self.this = find_instance(options)
      response_block(&b)
    end
 
 
    def hobo_new(new_record=nil, &b)
      self.this = new_record || model.user_new!(current_user)
      response_block(&b)
    end
 
 
    def hobo_create(*args, &b)
      options = args.extract_options!
      self.this = args.first || new_for_create
      this.user_save_changes(current_user, options[:attributes] || attribute_parameters || {})
      create_response(:new, &b)
    end
 
 
    def attribute_parameters
      params[(this ? this.class : model).name.underscore]
    end
 
 
    def new_for_create
      if model.has_inheritance_column? && (type_attr = params['type']) && type_attr.in?(model.send(:subclasses).*.name)
        type_attr.constantize
      else
        model
      end.new
    end
 
 
    def create_response(new_action, &b)
      flash[:notice] = "The #{@this.class.name.titleize.downcase} was created successfully" if !request.xhr? && valid?
 
      response_block(&b) or
        if valid?
          respond_to do |wants|
            wants.html { redirect_to destination_after_submit }
            wants.js { hobo_ajax_response || render(:nothing => true) }
          end
        else
          respond_to do |wants|
            wants.html { re_render_form(new_action) }
            wants.js { render(:status => 500,
                                :text => ("Couldn't create the #{this.class.name.titleize.downcase}.\n" +
                                          this.errors.full_messages.join("\n"))) }
          end
        end
    end
 
 
    def hobo_update(*args, &b)
      options = args.extract_options!
 
      self.this = args.first || find_instance
      changes = options[:attributes] || attribute_parameters or raise RuntimeError, "No update specified in params"
      this.user_save_changes(current_user, changes)
 
      # Ensure current_user isn't out of date
      @current_user = @this if @this == current_user
 
      in_place_edit_field = changes.keys.first if changes.size == 1 && params[:render]
      update_response(in_place_edit_field, &b)
    end
 
 
    def update_response(in_place_edit_field=nil, &b)
      flash[:notice] = "Changes to the #{@this.class.name.titleize.downcase} were saved" if !request.xhr? && valid?
 
      response_block(&b) or
        if valid?
          respond_to do |wants|
            wants.html do
              redirect_to destination_after_submit
            end
            wants.js do
              if in_place_edit_field
                # Decreasingly hacky support for the scriptaculous in-place-editor
                new_val = call_dryml_tag("view", :field => in_place_edit_field, :no_wrapper => true)
                hobo_ajax_response(this, :new_field_value => new_val)
              else
                hobo_ajax_response(this)
              end
 
              # Maybe no ajax requests were made
              render :nothing => true unless performed?
            end
          end
        else
          respond_to do |wants|
            wants.html { re_render_form(:edit) }
            wants.js { render(:status => 500,
                              :text => ("There was a problem with that change.\n" +
                                        @this.errors.full_messages.join("\n"))) }
          end
        end
    end
 
 
    def hobo_destroy(*args, &b)
      options = args.extract_options!
      self.this = args.first || find_instance
      this.user_destroy(current_user)
    &nb