enterprise_controller.rb
3.46 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
# Manage enterprises by providing an interface to register, activate and manage them
class EnterpriseController < ApplicationController
before_filter :logon, :my_enterprises
# Redirects to show if there is only one action and to list otherwise
def index
if @my_enterprises.size == 1
redirect_to :action => 'show', :id => @my_enterprises[0]
else
redirect_to :action => 'list'
end
end
# Lists all enterprises
def list
@enterprises = Enterprise.find(:all) - @my_enterprises
end
# Show details about an enterprise
def show
@enterprise = @my_enterprises.find(params[:id])
end
# Make a form to the creation of an eterprise
def register_form
@enterprise = Enterprise.new()
@vitual_communities = VirtualCommunity.find(:all)
@validation_entities = Organization.find(:all)
end
# Saves the new created enterprise
def register
@enterprise = Enterprise.new(params[:enterprise])
@enterprise.organization_info = OrganizationInfo.new(params[:organization])
if @enterprise.save
@enterprise.people << @person
flash[:notice] = _('The enterprise was succesfully created, the validation entity will cotact you as soon as your enterprise is approved')
redirect_to :action => 'index'
else
flash[:notice] = _('Enterprise was not created')
@vitual_communities = VirtualCommunity.find(:all)
@validation_entities = Organization.find(:all)
render :action => 'register_form'
end
end
# Provides an interface to editing the enterprise details
def edit
@enterprise = @my_enterprises.find(params[:id])
@validation_entities = Organization.find(:all) - [@enterprise]
end
# Saves the changes made in an enterprise
def update
@enterprise = @my_enterprises.find(params[:id])
if @enterprise.update_attributes(params[:enterprise]) && @enterprise.organization_info.update_attributes(params[:organization_info])
redirect_to :action => 'index'
else
flash[:notice] = _('Could not update the enterprise')
@validation_entities = Organization.find(:all) - [@enterprise]
render :action => 'edit'
end
end
# Make the current user a new member of the enterprise
def affiliate
@enterprise = Enterprise.find(params[:id])
@enterprise.people << @person
redirect_to :action => 'index'
end
# Elimitates the enterprise of the system
def destroy
@enterprise = @my_enterprises.find(params[:id])
@enterprise.destroy
redirect_to :action => 'index'
end
# Search enterprises by name or tags
def search
@tagged_enterprises = Enterprise.search(params[:query])
end
# Activate a validated enterprise
def activate
@enterprise = Enterprise.find(params[:id])
if @enterprise.update_attribute('active', true)
flash[:notice] = _('Enterprise successfuly activacted')
else
flash[:notice] = _('Failed to activate the enterprise')
end
redirect_to :action => 'index'
end
protected
# Make sure that the user is logged before access this controller
def logon
if logged_in?
@user = current_user
@person = @user.person
else
redirect_to :controller => 'account' unless logged_in?
end
end
# Initializes some variables to contain the enterprises of the current user
def my_enterprises
if logged_in?
@my_active_enterprises = @person.active_enterprises
@my_pending_enterprises = @person.pending_enterprises
@my_enterprises = @person.enterprises
end
end
end