@@ -7,6 +7,10 @@ class Projects_Controller extends Template_Controller{
7
7
8
8
public function index (){
9
9
10
+ $ projects = ORM ::factory ( 'project ' )->find_all ();
11
+ $ this ->template ->content = View::factory ( 'projects/list ' )
12
+ ->bind ( 'projects ' , $ projects )
13
+ ->bind ( 'user ' , Auth::instance ()->get_user () );
10
14
11
15
}
12
16
@@ -16,7 +20,7 @@ public function project( $id ){
16
20
$ data = array ();
17
21
18
22
$ data [ 'project ' ] = ORM ::factory ( 'project ' , $ id );
19
-
23
+ $ data [ ' user ' ] = Auth:: instance ()-> get_user ();
20
24
$ this ->template ->content = View::factory ( 'projects/view ' , $ data );
21
25
}
22
26
@@ -29,16 +33,57 @@ public function __call( $method, $arguments ){
29
33
30
34
public function add (){
31
35
36
+ $ user = Auth::instance ()->get_user ();
37
+
32
38
if ( $ post = $ this ->input ->post ( 'project ' ) ){
39
+ if ( ! $ user )
40
+ return $ this ->template ->content = 'You need to be logged in ' ;
41
+
42
+ $ project = ORM ::factory ( 'project ' );
43
+
44
+ $ validation = Projects_utils::projects_add_validation ( $ post );
45
+
46
+ if ( !$ project ->validate ( $ validation , true ) )
47
+ return $ this ->template ->content = Kohana::debug ( $ validation ->errors () );
48
+
49
+ $ post_user_data = $ this ->input ->post ( 'user ' );
50
+
51
+ if ( ! empty ( $ post_user_data [ 'role ' ] ) )
52
+ $ project ->set_user_roles ( array ( $ user ->id => $ post_user_data [ 'role ' ] ) );
53
+
54
+ return url::redirect ( $ project ->url );
33
55
34
- $ project = projects_utils::create_project ( $ post );
35
- url::redirect ( $ project ->url );
36
- exit ;
37
56
} else {
38
57
39
58
$ this ->template ->content = new View ( 'projects/add ' );
40
- $ this ->template ->content ->project_types = Projects_utils::get_poject_types_dropdown_array ();
59
+ $ this ->template ->content ->project_types = Projects_utils::get_project_types_dropdown_array ();
60
+ $ this ->template ->content ->user = $ user ;
41
61
}
42
62
}
43
63
64
+
65
+ public function edit ( $ id ){
66
+
67
+ $ user = Auth::instance ()->get_user ();
68
+
69
+ $ project = ORM ::factory ( 'project ' , $ id );
70
+ if ( ! $ project ->user_can ( $ user , 'edit ' ) )
71
+ return $ this ->template ->content = 'oh, come on! ' ;
72
+
73
+ if ( $ post = $ this ->input ->post ( 'project ' ) ){
74
+
75
+ $ validation = Projects_utils::projects_edit_validation ( $ post );
76
+
77
+ $ project ->validate ( $ validation , true );
78
+
79
+ url::redirect ( $ project ->url );
80
+ } else {
81
+ $ this ->template ->content = View::factory ( 'projects/edit ' )
82
+ ->bind ( 'project_types ' , Projects_utils::get_project_types_dropdown_array () )
83
+ ->bind ( 'project ' , $ project )
84
+ ->bind ( 'user ' , $ user );
85
+ }
86
+ }
87
+
88
+
44
89
}
0 commit comments