Plugin Tutorial
Version 63 (Harry Garrood, 2012-01-05 12:03)
| 1 | 1 | Jean-Philippe Lang | h1. Plugin Tutorial |
|---|---|---|---|
| 2 | 12 | Jean-Philippe Lang | |
| 3 | 20 | Jean-Philippe Lang | Note: To follow this tutorial, you need to run Redmine devel r1786 or higher. |
| 4 | 20 | Jean-Philippe Lang | |
| 5 | 30 | Vinod Singh | {{>toc}} |
| 6 | 1 | Jean-Philippe Lang | |
| 7 | 1 | Jean-Philippe Lang | h2. Creating a new Plugin |
| 8 | 40 | Nick Peelman | |
| 9 | 40 | Nick Peelman | You may need to set the RAILS_ENV variable in order to use the command below: |
| 10 | 32 | Jiří Křivánek | |
| 11 | 32 | Jiří Křivánek | <pre> |
| 12 | 32 | Jiří Křivánek | $ export RAILS_ENV="production" |
| 13 | 32 | Jiří Křivánek | </pre> |
| 14 | 32 | Jiří Křivánek | |
| 15 | 59 | Harry Garrood | On windows: |
| 16 | 59 | Harry Garrood | |
| 17 | 59 | Harry Garrood | <pre> |
| 18 | 59 | Harry Garrood | set rails_env=production |
| 19 | 59 | Harry Garrood | </pre> |
| 20 | 59 | Harry Garrood | |
| 21 | 9 | Jean-Philippe Lang | Creating a new plugin can be done using the Redmine plugin generator. |
| 22 | 9 | Jean-Philippe Lang | Syntax for this generator is: |
| 23 | 1 | Jean-Philippe Lang | |
| 24 | 23 | Jean-Baptiste Barth | <pre>ruby script/generate redmine_plugin <plugin_name></pre> |
| 25 | 9 | Jean-Philippe Lang | |
| 26 | 9 | Jean-Philippe Lang | So open up a command prompt and "cd" to your redmine directory, then execute the following command: |
| 27 | 9 | Jean-Philippe Lang | |
| 28 | 18 | Jean-Philippe Lang | % ruby script/generate redmine_plugin Polls |
| 29 | 1 | Jean-Philippe Lang | |
| 30 | 18 | Jean-Philippe Lang | The plugin structure is created in @vendor/plugins/redmine_polls@: |
| 31 | 1 | Jean-Philippe Lang | |
| 32 | 1 | Jean-Philippe Lang | <pre> |
| 33 | 18 | Jean-Philippe Lang | create vendor/plugins/redmine_polls/app/controllers |
| 34 | 18 | Jean-Philippe Lang | create vendor/plugins/redmine_polls/app/helpers |
| 35 | 18 | Jean-Philippe Lang | create vendor/plugins/redmine_polls/app/models |
| 36 | 18 | Jean-Philippe Lang | create vendor/plugins/redmine_polls/app/views |
| 37 | 18 | Jean-Philippe Lang | create vendor/plugins/redmine_polls/db/migrate |
| 38 | 18 | Jean-Philippe Lang | create vendor/plugins/redmine_polls/lib/tasks |
| 39 | 18 | Jean-Philippe Lang | create vendor/plugins/redmine_polls/assets/images |
| 40 | 18 | Jean-Philippe Lang | create vendor/plugins/redmine_polls/assets/javascripts |
| 41 | 18 | Jean-Philippe Lang | create vendor/plugins/redmine_polls/assets/stylesheets |
| 42 | 18 | Jean-Philippe Lang | create vendor/plugins/redmine_polls/lang |
| 43 | 18 | Jean-Philippe Lang | create vendor/plugins/redmine_polls/README |
| 44 | 18 | Jean-Philippe Lang | create vendor/plugins/redmine_polls/init.rb |
| 45 | 18 | Jean-Philippe Lang | create vendor/plugins/redmine_polls/lang/en.yml |
| 46 | 1 | Jean-Philippe Lang | </pre> |
| 47 | 1 | Jean-Philippe Lang | |
| 48 | 18 | Jean-Philippe Lang | Edit @vendor/plugins/redmine_polls/init.rb@ to adjust plugin information (name, author, description and version): |
| 49 | 1 | Jean-Philippe Lang | |
| 50 | 1 | Jean-Philippe Lang | <pre><code class="ruby"> |
| 51 | 1 | Jean-Philippe Lang | require 'redmine' |
| 52 | 1 | Jean-Philippe Lang | |
| 53 | 18 | Jean-Philippe Lang | Redmine::Plugin.register :redmine_polls do |
| 54 | 18 | Jean-Philippe Lang | name 'Polls plugin' |
| 55 | 1 | Jean-Philippe Lang | author 'John Smith' |
| 56 | 18 | Jean-Philippe Lang | description 'A plugin for managing polls' |
| 57 | 1 | Jean-Philippe Lang | version '0.0.1' |
| 58 | 1 | Jean-Philippe Lang | end |
| 59 | 1 | Jean-Philippe Lang | </code></pre> |
| 60 | 1 | Jean-Philippe Lang | |
| 61 | 27 | Eduardo Yáñez Parareda | Then restart the application and point your browser to http://localhost:3000/admin/plugins. |
| 62 | 1 | Jean-Philippe Lang | After logging in, you should see your new plugin in the plugins list: |
| 63 | 4 | Jean-Philippe Lang | |
| 64 | 29 | Vinod Singh | !plugins_list1.png! |
| 65 | 1 | Jean-Philippe Lang | |
| 66 | 13 | Jean-Philippe Lang | h2. Generating a model |
| 67 | 13 | Jean-Philippe Lang | |
| 68 | 44 | John Yani | For now plugin doesn't store anything. Let's create a simple Poll model for our plugin. Syntax is: |
| 69 | 1 | Jean-Philippe Lang | |
| 70 | 44 | John Yani | <pre> |
| 71 | 44 | John Yani | ruby script/generate redmine_plugin_model <plugin_name> <model_name> [<fields>] |
| 72 | 44 | John Yani | </pre> |
| 73 | 44 | John Yani | |
| 74 | 44 | John Yani | So, go to the command prompt and run: |
| 75 | 44 | John Yani | |
| 76 | 44 | John Yani | <pre> |
| 77 | 1 | Jean-Philippe Lang | ruby script/generate redmine_plugin_model polls poll question:string yes:integer no:integer |
| 78 | 44 | John Yani | </pre> |
| 79 | 14 | Jean-Philippe Lang | |
| 80 | 19 | Jean-Philippe Lang | This creates the Poll model and the corresponding migration file. |
| 81 | 1 | Jean-Philippe Lang | |
| 82 | 28 | John Fisher | *Please note you may have to rename your migration.* Timestamped migrations are not supported by the actual Redmine plugin engine (Engines). If your migrations are named with a timestamp, rename it using "001", "002", etc. instead. |
| 83 | 28 | John Fisher | |
| 84 | 49 | Igor Zubkov | <pre>mv vendor/plugins/redmine_polls/db/migrate/20091009211553_create_polls.rb vendor/plugins/redmine_polls/db/migrate/001_create_polls.rb</pre> |
| 85 | 28 | John Fisher | |
| 86 | 28 | John Fisher | If you have already created a database table record in plugin_schema_info with the timestamp version number, you will have to change it to reflect your new version number, or the migration will hang. |
| 87 | 28 | John Fisher | |
| 88 | 21 | Jean-Baptiste Barth | |
| 89 | 14 | Jean-Philippe Lang | Migrate the database using the following command: |
| 90 | 14 | Jean-Philippe Lang | |
| 91 | 14 | Jean-Philippe Lang | rake db:migrate_plugins |
| 92 | 14 | Jean-Philippe Lang | |
| 93 | 14 | Jean-Philippe Lang | Note that each plugin has its own set of migrations. |
| 94 | 14 | Jean-Philippe Lang | |
| 95 | 55 | Thomas Winkel | Lets add some Polls in the console so we have something to work with. The console is where you can interactively work and examine the Redmine environment and is very informative to play around in. But for now we just need create two Poll objects |
| 96 | 24 | Eric Davis | |
| 97 | 24 | Eric Davis | <pre> |
| 98 | 24 | Eric Davis | script/console |
| 99 | 24 | Eric Davis | >> Poll.create(:question => "Can you see this poll ?") |
| 100 | 24 | Eric Davis | >> Poll.create(:question => "And can you see this other poll ?") |
| 101 | 24 | Eric Davis | >> exit |
| 102 | 24 | Eric Davis | </pre> |
| 103 | 24 | Eric Davis | |
| 104 | 26 | Eric Davis | Edit @vendor/plugins/redmine_polls/app/models/poll.rb@ in your plugin directory to add a #vote method that will be invoked from our controller: |
| 105 | 15 | Jean-Philippe Lang | |
| 106 | 15 | Jean-Philippe Lang | <pre><code class="ruby"> |
| 107 | 19 | Jean-Philippe Lang | class Poll < ActiveRecord::Base |
| 108 | 15 | Jean-Philippe Lang | def vote(answer) |
| 109 | 15 | Jean-Philippe Lang | increment(answer == 'yes' ? :yes : :no) |
| 110 | 15 | Jean-Philippe Lang | end |
| 111 | 15 | Jean-Philippe Lang | end |
| 112 | 15 | Jean-Philippe Lang | </code></pre> |
| 113 | 15 | Jean-Philippe Lang | |
| 114 | 1 | Jean-Philippe Lang | h2. Generating a controller |
| 115 | 1 | Jean-Philippe Lang | |
| 116 | 60 | Mischa The Evil | *Warning*: starting from version#40, Redmine won't provide anymore the default wildcard route (@':controller/:action/:id'@). Plugins will have to declare the routes they need in their proper @config/routes.rb@ file. |
| 117 | 57 | Etienne Massip | |
| 118 | 1 | Jean-Philippe Lang | For now, the plugin doesn't do anything. So let's create a controller for our plugin. |
| 119 | 9 | Jean-Philippe Lang | We can use the plugin controller generator for that. Syntax is: |
| 120 | 9 | Jean-Philippe Lang | |
| 121 | 23 | Jean-Baptiste Barth | <pre>ruby script/generate redmine_plugin_controller <plugin_name> <controller_name> [<actions>]</pre> |
| 122 | 9 | Jean-Philippe Lang | |
| 123 | 9 | Jean-Philippe Lang | So go back to the command prompt and run: |
| 124 | 3 | Jean-Philippe Lang | |
| 125 | 3 | Jean-Philippe Lang | <pre> |
| 126 | 18 | Jean-Philippe Lang | % ruby script/generate redmine_plugin_controller Polls polls index vote |
| 127 | 3 | Jean-Philippe Lang | exists app/controllers/ |
| 128 | 3 | Jean-Philippe Lang | exists app/helpers/ |
| 129 | 18 | Jean-Philippe Lang | create app/views/polls |
| 130 | 3 | Jean-Philippe Lang | create test/functional/ |
| 131 | 18 | Jean-Philippe Lang | create app/controllers/polls_controller.rb |
| 132 | 18 | Jean-Philippe Lang | create test/functional/polls_controller_test.rb |
| 133 | 18 | Jean-Philippe Lang | create app/helpers/polls_helper.rb |
| 134 | 18 | Jean-Philippe Lang | create app/views/polls/index.html.erb |
| 135 | 18 | Jean-Philippe Lang | create app/views/polls/vote.html.erb |
| 136 | 3 | Jean-Philippe Lang | </pre> |
| 137 | 3 | Jean-Philippe Lang | |
| 138 | 18 | Jean-Philippe Lang | A controller @PollsController@ with 2 actions (@#index@ and @#vote@) is created. |
| 139 | 3 | Jean-Philippe Lang | |
| 140 | 26 | Eric Davis | Edit @vendor/plugins/redmine_polls/app/controllers/polls_controller.rb@ in @redmine_polls@ directory to implement these 2 actions. |
| 141 | 3 | Jean-Philippe Lang | |
| 142 | 3 | Jean-Philippe Lang | <pre><code class="ruby"> |
| 143 | 18 | Jean-Philippe Lang | class PollsController < ApplicationController |
| 144 | 1 | Jean-Philippe Lang | unloadable |
| 145 | 1 | Jean-Philippe Lang | |
| 146 | 7 | Jean-Philippe Lang | def index |
| 147 | 19 | Jean-Philippe Lang | @polls = Poll.find(:all) |
| 148 | 3 | Jean-Philippe Lang | end |
| 149 | 7 | Jean-Philippe Lang | |
| 150 | 19 | Jean-Philippe Lang | def vote |
| 151 | 1 | Jean-Philippe Lang | poll = Poll.find(params[:id]) |
| 152 | 21 | Jean-Baptiste Barth | poll.vote(params[:answer]) |
| 153 | 25 | Eric Davis | if poll.save |
| 154 | 25 | Eric Davis | flash[:notice] = 'Vote saved.' |
| 155 | 25 | Eric Davis | redirect_to :action => 'index' |
| 156 | 25 | Eric Davis | end |
| 157 | 3 | Jean-Philippe Lang | end |
| 158 | 3 | Jean-Philippe Lang | end |
| 159 | 1 | Jean-Philippe Lang | </code></pre> |
| 160 | 5 | Jean-Philippe Lang | |
| 161 | 26 | Eric Davis | Then edit @vendor/plugins/redmine_polls/app/views/polls/index.html.erb@ that will display existing polls: |
| 162 | 3 | Jean-Philippe Lang | |
| 163 | 3 | Jean-Philippe Lang | |
| 164 | 3 | Jean-Philippe Lang | <pre> |
| 165 | 18 | Jean-Philippe Lang | <h2>Polls</h2> |
| 166 | 3 | Jean-Philippe Lang | |
| 167 | 19 | Jean-Philippe Lang | <% @polls.each do |poll| %> |
| 168 | 3 | Jean-Philippe Lang | <p> |
| 169 | 19 | Jean-Philippe Lang | <%= poll[:question] %>? |
| 170 | 50 | Igor Zubkov | <%= link_to 'Yes', { :action => 'vote', :id => poll[:id], :answer => 'yes' }, :method => :post %> (<%= poll[:yes] %>) / |
| 171 | 50 | Igor Zubkov | <%= link_to 'No', { :action => 'vote', :id => poll[:id], :answer => 'no' }, :method => :post %> (<%= poll[:no] %>) |
| 172 | 3 | Jean-Philippe Lang | </p> |
| 173 | 3 | Jean-Philippe Lang | <% end %> |
| 174 | 3 | Jean-Philippe Lang | </pre> |
| 175 | 3 | Jean-Philippe Lang | |
| 176 | 26 | Eric Davis | You can remove @vendor/plugins/redmine_polls/app/views/polls/vote.html.erb@ since no rendering is done by the corresponding action. |
| 177 | 3 | Jean-Philippe Lang | |
| 178 | 18 | Jean-Philippe Lang | Now, restart the application and point your browser to http://localhost:3000/polls. |
| 179 | 18 | Jean-Philippe Lang | You should see the 2 polls and you should be able to vote for them: |
| 180 | 4 | Jean-Philippe Lang | |
| 181 | 29 | Vinod Singh | !pools1.png! |
| 182 | 4 | Jean-Philippe Lang | |
| 183 | 19 | Jean-Philippe Lang | Note that poll results are reset on each request if you don't run the application in production mode, since our poll "model" is stored in a class variable in this example. |
| 184 | 4 | Jean-Philippe Lang | |
| 185 | 37 | Randy Syring | h2. Translations |
| 186 | 37 | Randy Syring | |
| 187 | 38 | Randy Syring | The location of *.yml translation files is dependent on the version of Redmine that is being run: |
| 188 | 38 | Randy Syring | |
| 189 | 38 | Randy Syring | |_. Version |_. Path| |
| 190 | 38 | Randy Syring | | < 0.9 | @.../redmine_polls/lang@ | |
| 191 | 38 | Randy Syring | | >= 0.9 | @.../redmine_polls/config/locales@ | |
| 192 | 38 | Randy Syring | |
| 193 | 38 | Randy Syring | If you want your plugin to work in both versions, you will need to have the same translation file in both locations. |
| 194 | 37 | Randy Syring | |
| 195 | 4 | Jean-Philippe Lang | h2. Extending menus |
| 196 | 4 | Jean-Philippe Lang | |
| 197 | 18 | Jean-Philippe Lang | Our controller works fine but users have to know the url to see the polls. Using the Redmine plugin API, you can extend standard menus. |
| 198 | 4 | Jean-Philippe Lang | So let's add a new item to the application menu. |
| 199 | 4 | Jean-Philippe Lang | |
| 200 | 4 | Jean-Philippe Lang | h3. Extending the application menu |
| 201 | 4 | Jean-Philippe Lang | |
| 202 | 26 | Eric Davis | Edit @vendor/plugins/redmine_polls/init.rb@ at the root of your plugin directory to add the following line at the end of the plugin registration block: |
| 203 | 4 | Jean-Philippe Lang | |
| 204 | 4 | Jean-Philippe Lang | <pre><code class="ruby"> |
| 205 | 18 | Jean-Philippe Lang | Redmine::Plugin.register :redmine_polls do |
| 206 | 4 | Jean-Philippe Lang | [...] |
| 207 | 4 | Jean-Philippe Lang | |
| 208 | 18 | Jean-Philippe Lang | menu :application_menu, :polls, { :controller => 'polls', :action => 'index' }, :caption => 'Polls' |
| 209 | 4 | Jean-Philippe Lang | end |
| 210 | 4 | Jean-Philippe Lang | </code></pre> |
| 211 | 4 | Jean-Philippe Lang | |
| 212 | 4 | Jean-Philippe Lang | Syntax is: |
| 213 | 4 | Jean-Philippe Lang | |
| 214 | 4 | Jean-Philippe Lang | menu(menu_name, item_name, url, options={}) |
| 215 | 4 | Jean-Philippe Lang | |
| 216 | 42 | Mischa The Evil | There are five menus that you can extend: |
| 217 | 4 | Jean-Philippe Lang | |
| 218 | 4 | Jean-Philippe Lang | * @:top_menu@ - the top left menu |
| 219 | 4 | Jean-Philippe Lang | * @:account_menu@ - the top right menu with sign in/sign out links |
| 220 | 4 | Jean-Philippe Lang | * @:application_menu@ - the main menu displayed when the user is not inside a project |
| 221 | 4 | Jean-Philippe Lang | * @:project_menu@ - the main menu displayed when the user is inside a project |
| 222 | 41 | Nick Peelman | * @:admin_menu@ - the menu displayed on the Administration page (can only insert after Settings, before Plugins) |
| 223 | 4 | Jean-Philippe Lang | |
| 224 | 4 | Jean-Philippe Lang | Available options are: |
| 225 | 4 | Jean-Philippe Lang | |
| 226 | 4 | Jean-Philippe Lang | * @:param@ - the parameter key that is used for the project id (default is @:id@) |
| 227 | 4 | Jean-Philippe Lang | * @:if@ - a Proc that is called before rendering the item, the item is displayed only if it returns true |
| 228 | 4 | Jean-Philippe Lang | * @:caption@ - the menu caption that can be: |
| 229 | 4 | Jean-Philippe Lang | |
| 230 | 4 | Jean-Philippe Lang | * a localized string Symbol |
| 231 | 4 | Jean-Philippe Lang | * a String |
| 232 | 4 | Jean-Philippe Lang | * a Proc that can take the project as argument |
| 233 | 4 | Jean-Philippe Lang | |
| 234 | 4 | Jean-Philippe Lang | * @:before@, @:after@ - specify where the menu item should be inserted (eg. @:after => :activity@) |
| 235 | 36 | Jérémie Delaitre | * @:first@, @:last@ - if set to true, the item will stay at the beginning/end of the menu (eg. @:last => true@) |
| 236 | 36 | Jérémie Delaitre | * @:html@ - a hash of html options that are passed to @link_to@ when rendering the menu item |
| 237 | 4 | Jean-Philippe Lang | |
| 238 | 4 | Jean-Philippe Lang | In our example, we've added an item to the application menu which is emtpy by default. |
| 239 | 4 | Jean-Philippe Lang | Restart the application and go to http://localhost:3000: |
| 240 | 4 | Jean-Philippe Lang | |
| 241 | 29 | Vinod Singh | !application_menu.png! |
| 242 | 4 | Jean-Philippe Lang | |
| 243 | 18 | Jean-Philippe Lang | Now you can access the polls by clicking the Polls tab from the welcome screen. |
| 244 | 4 | Jean-Philippe Lang | |
| 245 | 4 | Jean-Philippe Lang | h3. Extending the project menu |
| 246 | 4 | Jean-Philippe Lang | |
| 247 | 19 | Jean-Philippe Lang | Now, let's consider that the polls are defined at project level (even if it's not the case in our example poll model). So we would like to add the Polls tab to the project menu instead. |
| 248 | 6 | Jean-Philippe Lang | Open @init.rb@ and replace the line that was added just before with these 2 lines: |
| 249 | 6 | Jean-Philippe Lang | |
| 250 | 6 | Jean-Philippe Lang | <pre><code class="ruby"> |
| 251 | 18 | Jean-Philippe Lang | Redmine::Plugin.register :redmine_polls do |
| 252 | 6 | Jean-Philippe Lang | [...] |
| 253 | 6 | Jean-Philippe Lang | |
| 254 | 51 | Igor Zubkov | permission :polls, { :polls => [:index, :vote] }, :public => true |
| 255 | 18 | Jean-Philippe Lang | menu :project_menu, :polls, { :controller => 'polls', :action => 'index' }, :caption => 'Polls', :after => :activity, :param => :project_id |
| 256 | 6 | Jean-Philippe Lang | end |
| 257 | 6 | Jean-Philippe Lang | </code></pre> |
| 258 | 6 | Jean-Philippe Lang | |
| 259 | 18 | Jean-Philippe Lang | The second line adds our Polls tab to the project menu, just after the activity tab. |
| 260 | 18 | Jean-Philippe Lang | The first line is required and declares that our 2 actions from @PollsController@ are public. We'll come back later to explain this with more details. |
| 261 | 6 | Jean-Philippe Lang | |
| 262 | 6 | Jean-Philippe Lang | Restart the application again and go to one of your projects: |
| 263 | 6 | Jean-Philippe Lang | |
| 264 | 39 | Ric Turley | !http://www.redmine.org/attachments/3773/project_menu.png! |
| 265 | 6 | Jean-Philippe Lang | |
| 266 | 18 | Jean-Philippe Lang | If you click the Polls tab, you should notice that the project menu is no longer displayed. |
| 267 | 6 | Jean-Philippe Lang | To make the project menu visible, you have to initialize the controller's instance variable @@project@. |
| 268 | 6 | Jean-Philippe Lang | |
| 269 | 18 | Jean-Philippe Lang | Edit your PollsController to do so: |
| 270 | 6 | Jean-Philippe Lang | |
| 271 | 6 | Jean-Philippe Lang | <pre><code class="ruby"> |
| 272 | 6 | Jean-Philippe Lang | def index |
| 273 | 63 | Harry Garrood | @project = Project.find(params[:project_id]) |
| 274 | 19 | Jean-Philippe Lang | @polls = Poll.find(:all) # @project.polls |
| 275 | 6 | Jean-Philippe Lang | end |
| 276 | 61 | Harry Garrood | </code></pre> |
| 277 | 61 | Harry Garrood | |
| 278 | 6 | Jean-Philippe Lang | The project id is available in the @:project_id@ param because of the @:param => :project_id@ option in the menu item declaration above. |
| 279 | 6 | Jean-Philippe Lang | |
| 280 | 18 | Jean-Philippe Lang | Now, you should see the project menu when viewing the polls: |
| 281 | 6 | Jean-Philippe Lang | |
| 282 | 39 | Ric Turley | !http://www.redmine.org/attachments/3774/project_menu_pools.png! |
| 283 | 4 | Jean-Philippe Lang | |
| 284 | 4 | Jean-Philippe Lang | h2. Adding new permissions |
| 285 | 4 | Jean-Philippe Lang | |
| 286 | 18 | Jean-Philippe Lang | For now, anyone can vote for polls. Let's make it more configurable by changing the permission declaration. |
| 287 | 18 | Jean-Philippe Lang | We're going to declare 2 project based permissions, one for viewing the polls and an other one for voting. These permissions are no longer public (@:public => true@ option is removed). |
| 288 | 10 | Jean-Philippe Lang | |
| 289 | 26 | Eric Davis | Edit @vendor/plugins/redmine_polls/init.rb@ to replace the previous permission declaration with these 2 lines: |
| 290 | 10 | Jean-Philippe Lang | |
| 291 | 10 | Jean-Philippe Lang | <pre><code class="ruby"> |
| 292 | 20 | Jean-Philippe Lang | |
| 293 | 18 | Jean-Philippe Lang | permission :view_polls, :polls => :index |
| 294 | 18 | Jean-Philippe Lang | permission :vote_polls, :polls => :vote |
| 295 | 1 | Jean-Philippe Lang | </code></pre> |
| 296 | 14 | Jean-Philippe Lang | |
| 297 | 10 | Jean-Philippe Lang | |
| 298 | 10 | Jean-Philippe Lang | Restart the application and go to http://localhost:3000/roles/report: |
| 299 | 10 | Jean-Philippe Lang | |
| 300 | 29 | Vinod Singh | !permissions1.png! |
| 301 | 10 | Jean-Philippe Lang | |
| 302 | 10 | Jean-Philippe Lang | You're now able to give these permissions to your existing roles. |
| 303 | 10 | Jean-Philippe Lang | |
| 304 | 18 | Jean-Philippe Lang | Of course, some code needs to be added to the PollsController so that actions are actually protected according to the permissions of the current user. |
| 305 | 10 | Jean-Philippe Lang | For this, we just need to append the @:authorize@ filter and make sure that the @project instance variable is properly set before calling this filter. |
| 306 | 10 | Jean-Philippe Lang | |
| 307 | 10 | Jean-Philippe Lang | Here is how it would look like for the @#index@ action: |
| 308 | 10 | Jean-Philippe Lang | |
| 309 | 1 | Jean-Philippe Lang | <pre><code class="ruby"> |
| 310 | 18 | Jean-Philippe Lang | class PollsController < ApplicationController |
| 311 | 10 | Jean-Philippe Lang | unloadable |
| 312 | 10 | Jean-Philippe Lang | |
| 313 | 10 | Jean-Philippe Lang | before_filter :find_project, :authorize, :only => :index |
| 314 | 10 | Jean-Philippe Lang | |
| 315 | 10 | Jean-Philippe Lang | [...] |
| 316 | 10 | Jean-Philippe Lang | |
| 317 | 10 | Jean-Philippe Lang | def index |
| 318 | 19 | Jean-Philippe Lang | @polls = Poll.find(:all) # @project.polls |
| 319 | 10 | Jean-Philippe Lang | end |
| 320 | 10 | Jean-Philippe Lang | |
| 321 | 10 | Jean-Philippe Lang | [...] |
| 322 | 10 | Jean-Philippe Lang | |
| 323 | 10 | Jean-Philippe Lang | private |
| 324 | 10 | Jean-Philippe Lang | |
| 325 | 10 | Jean-Philippe Lang | def find_project |
| 326 | 10 | Jean-Philippe Lang | # @project variable must be set before calling the authorize filter |
| 327 | 10 | Jean-Philippe Lang | @project = Project.find(params[:project_id]) |
| 328 | 10 | Jean-Philippe Lang | end |
| 329 | 10 | Jean-Philippe Lang | end |
| 330 | 10 | Jean-Philippe Lang | </code></pre> |
| 331 | 10 | Jean-Philippe Lang | |
| 332 | 18 | Jean-Philippe Lang | Retrieving the current project before the @#vote@ action could be done using a similar way. |
| 333 | 4 | Jean-Philippe Lang | After this, viewing and voting polls will be only available to admin users or users that have the appropriate role on the project. |
| 334 | 31 | Markus Bockman | |
| 335 | 1 | Jean-Philippe Lang | If you want to display the symbols of your permissions in a multilangual way, you need to add the necessary text labels in a language file. |
| 336 | 37 | Randy Syring | Simply create an *.yml file in the correct translation directory for your Redmine version and fill it with labels like this: |
| 337 | 31 | Markus Bockman | |
| 338 | 31 | Markus Bockman | <pre><code class="ruby"> |
| 339 | 31 | Markus Bockman | |
| 340 | 31 | Markus Bockman | permission_view_polls: View Polls |
| 341 | 31 | Markus Bockman | permission_vote_polls: Vote Polls |
| 342 | 31 | Markus Bockman | |
| 343 | 31 | Markus Bockman | </code></pre> |
| 344 | 31 | Markus Bockman | |
| 345 | 31 | Markus Bockman | In this example the created file is known as en.yml, but all other supported language files are also possible too. |
| 346 | 31 | Markus Bockman | As you can see on the example above, the labels consists of the permission symbols @:view_polls@ and @:vote_polls@ with an additional @permission_@ added at the front. |
| 347 | 31 | Markus Bockman | |
| 348 | 31 | Markus Bockman | Restart your application and point the permission section. |
| 349 | 31 | Markus Bockman | |
| 350 | 4 | Jean-Philippe Lang | h2. Creating a project module |
| 351 | 4 | Jean-Philippe Lang | |
| 352 | 56 | Thomas Winkel | For now, the poll functionality is added to all your projects. But you may want to enable polls for some projects only. |
| 353 | 26 | Eric Davis | So, let's create a 'Polls' project module. This is done by wrapping the permissions declaration inside a call to @#project_module@. |
| 354 | 11 | Jean-Philippe Lang | |
| 355 | 11 | Jean-Philippe Lang | Edit @init.rb@ and change the permissions declaration: |
| 356 | 11 | Jean-Philippe Lang | |
| 357 | 11 | Jean-Philippe Lang | <pre><code class="ruby"> |
| 358 | 18 | Jean-Philippe Lang | project_module :polls do |
| 359 | 18 | Jean-Philippe Lang | permission :view_polls, :polls => :index |
| 360 | 18 | Jean-Philippe Lang | permission :vote_polls, :polls => :vote |
| 361 | 11 | Jean-Philippe Lang | end |
| 362 | 11 | Jean-Philippe Lang | </code></pre> |
| 363 | 11 | Jean-Philippe Lang | |
| 364 | 11 | Jean-Philippe Lang | Restart the application and go to one of your project settings. |
| 365 | 18 | Jean-Philippe Lang | Click on the Modules tab. You should see the Polls module at the end of the modules list (disabled by default): |
| 366 | 11 | Jean-Philippe Lang | |
| 367 | 29 | Vinod Singh | !modules.png! |
| 368 | 11 | Jean-Philippe Lang | |
| 369 | 18 | Jean-Philippe Lang | You can now enable/disable polls at project level. |
| 370 | 11 | Jean-Philippe Lang | |
| 371 | 11 | Jean-Philippe Lang | h2. Improving the plugin views |
| 372 | 11 | Jean-Philippe Lang | |
| 373 | 16 | Jean-Philippe Lang | h3. Adding stylesheets |
| 374 | 16 | Jean-Philippe Lang | |
| 375 | 16 | Jean-Philippe Lang | Let's start by adding a stylesheet to our plugin views. |
| 376 | 26 | Eric Davis | Create a file named @voting.css@ in the @vendor/plugins/redmine_polls/assets/stylesheets@ directory: |
| 377 | 16 | Jean-Philippe Lang | |
| 378 | 16 | Jean-Philippe Lang | <pre> |
| 379 | 16 | Jean-Philippe Lang | a.vote { font-size: 120%; } |
| 380 | 16 | Jean-Philippe Lang | a.vote.yes { color: green; } |
| 381 | 16 | Jean-Philippe Lang | a.vote.no { color: red; } |
| 382 | 16 | Jean-Philippe Lang | </pre> |
| 383 | 16 | Jean-Philippe Lang | |
| 384 | 18 | Jean-Philippe Lang | When starting the application, plugin assets are automatically copied to @public/plugin_assets/redmine_polls/@ by Rails Engines to make them available through your web server. So any change to your plugin stylesheets or javascripts needs an application restart. |
| 385 | 16 | Jean-Philippe Lang | |
| 386 | 26 | Eric Davis | Then, append the following lines at the end of @vendor/plugins/redmine_polls/app/views/polls/index.html.erb@ so that your stylesheet get included in the page header by Redmine: |
| 387 | 16 | Jean-Philippe Lang | |
| 388 | 16 | Jean-Philippe Lang | <pre> |
| 389 | 16 | Jean-Philippe Lang | <% content_for :header_tags do %> |
| 390 | 18 | Jean-Philippe Lang | <%= stylesheet_link_tag 'voting', :plugin => 'redmine_polls' %> |
| 391 | 16 | Jean-Philippe Lang | <% end %> |
| 392 | 16 | Jean-Philippe Lang | </pre> |
| 393 | 16 | Jean-Philippe Lang | |
| 394 | 18 | Jean-Philippe Lang | Note that the @:plugin => 'redmine_polls'@ option is required when calling the @stylesheet_link_tag@ helper. |
| 395 | 16 | Jean-Philippe Lang | |
| 396 | 16 | Jean-Philippe Lang | Javascripts can be included in plugin views using the @javascript_include_tag@ helper in the same way. |
| 397 | 16 | Jean-Philippe Lang | |
| 398 | 16 | Jean-Philippe Lang | h3. Setting page title |
| 399 | 16 | Jean-Philippe Lang | |
| 400 | 16 | Jean-Philippe Lang | You can set the HTML title from inside your views by using the @html_title@ helper. |
| 401 | 16 | Jean-Philippe Lang | Example: |
| 402 | 16 | Jean-Philippe Lang | |
| 403 | 53 | Igor Zubkov | <% html_title "Polls" %> |
| 404 | 34 | Tom Bostelmann | |
| 405 | 34 | Tom Bostelmann | |
| 406 | 34 | Tom Bostelmann | h2. Testing your plugin |
| 407 | 34 | Tom Bostelmann | |
| 408 | 34 | Tom Bostelmann | h3. test/test_helper.rb: |
| 409 | 34 | Tom Bostelmann | |
| 410 | 34 | Tom Bostelmann | Here are the contents of my test helper file: |
| 411 | 34 | Tom Bostelmann | |
| 412 | 34 | Tom Bostelmann | <pre> |
| 413 | 34 | Tom Bostelmann | require File.expand_path(File.dirname(__FILE__) + '/../../../../test/test_helper') |
| 414 | 34 | Tom Bostelmann | </pre> |
| 415 | 34 | Tom Bostelmann | |
| 416 | 34 | Tom Bostelmann | h3. Sample test: |
| 417 | 34 | Tom Bostelmann | |
| 418 | 34 | Tom Bostelmann | Contents of requirements_controller_test.rb: |
| 419 | 34 | Tom Bostelmann | |
| 420 | 54 | Igor Zubkov | <pre><code class="ruby"> |
| 421 | 34 | Tom Bostelmann | require File.dirname(__FILE__) + '/../test_helper' |
| 422 | 34 | Tom Bostelmann | require 'requirements_controller' |
| 423 | 34 | Tom Bostelmann | |
| 424 | 34 | Tom Bostelmann | class RequirementsControllerTest < ActionController::TestCase |
| 425 | 34 | Tom Bostelmann | fixtures :projects, :versions, :users, :roles, :members, :member_roles, :issues, :journals, :journal_details, |
| 426 | 34 | Tom Bostelmann | :trackers, :projects_trackers, :issue_statuses, :enabled_modules, :enumerations, :boards, :messages, |
| 427 | 34 | Tom Bostelmann | :attachments, :custom_fields, :custom_values, :time_entries |
| 428 | 34 | Tom Bostelmann | |
| 429 | 34 | Tom Bostelmann | def setup |
| 430 | 34 | Tom Bostelmann | @skill = Skill.new(:skill_name => 'Java') |
| 431 | 34 | Tom Bostelmann | @project = Project.find(1) |
| 432 | 34 | Tom Bostelmann | @request = ActionController::TestRequest.new |
| 433 | 34 | Tom Bostelmann | @response = ActionController::TestResponse.new |
| 434 | 34 | Tom Bostelmann | User.current = nil |
| 435 | 34 | Tom Bostelmann | end |
| 436 | 34 | Tom Bostelmann | |
| 437 | 34 | Tom Bostelmann | def test_routing |
| 438 | 34 | Tom Bostelmann | assert_routing( |
| 439 | 34 | Tom Bostelmann | {:method => :get, :path => '/requirements'}, |
| 440 | 34 | Tom Bostelmann | :controller => 'requirements', :action => 'index' |
| 441 | 34 | Tom Bostelmann | ) |
| 442 | 34 | Tom Bostelmann | end |
| 443 | 52 | Igor Zubkov | end |
| 444 | 54 | Igor Zubkov | </code></pre> |
| 445 | 34 | Tom Bostelmann | |
| 446 | 34 | Tom Bostelmann | h3. Initialize Test DB: |
| 447 | 34 | Tom Bostelmann | |
| 448 | 34 | Tom Bostelmann | I found it easiest to initialize the test db directly with the following rake call: |
| 449 | 34 | Tom Bostelmann | |
| 450 | 34 | Tom Bostelmann | <pre> |
| 451 | 43 | David Fischer | rake db:drop db:create db:migrate db:migrate_plugins redmine:load_default_data RAILS_ENV=test |
| 452 | 34 | Tom Bostelmann | </pre> |
| 453 | 34 | Tom Bostelmann | |
| 454 | 34 | Tom Bostelmann | h3. Run test: |
| 455 | 34 | Tom Bostelmann | |
| 456 | 48 | Igor Zubkov | To execute the requirements_controller_test.rb I used the following command: |
| 457 | 34 | Tom Bostelmann | |
| 458 | 34 | Tom Bostelmann | <pre> |
| 459 | 34 | Tom Bostelmann | rake test:engines:all PLUGIN=redmine_requirements |
| 460 | 34 | Tom Bostelmann | </pre> |
| 461 | 35 | Tom Bostelmann | |
| 462 | 47 | Mo Morsi | h3. Testing with permissions |
| 463 | 35 | Tom Bostelmann | |
| 464 | 35 | Tom Bostelmann | If your plugin requires membership to a project, add the following to the beginning of your functional tests: |
| 465 | 35 | Tom Bostelmann | |
| 466 | 1 | Jean-Philippe Lang | <pre> |
| 467 | 47 | Mo Morsi | def test_index |
| 468 | 47 | Mo Morsi | @request.session[:user_id] = 2 |
| 469 | 47 | Mo Morsi | ... |
| 470 | 1 | Jean-Philippe Lang | end |
| 471 | 47 | Mo Morsi | </pre> |
| 472 | 1 | Jean-Philippe Lang | |
| 473 | 47 | Mo Morsi | If your plugin requires a specific permission, you can add that to a user role like so (lookup which role is appropriate for the user in the fixtures): |
| 474 | 47 | Mo Morsi | |
| 475 | 47 | Mo Morsi | <pre> |
| 476 | 1 | Jean-Philippe Lang | def test_index |
| 477 | 47 | Mo Morsi | Role.find(1).add_permission! :my_permission |
| 478 | 47 | Mo Morsi | ... |
| 479 | 1 | Jean-Philippe Lang | end |
| 480 | 1 | Jean-Philippe Lang | </pre> |
| 481 | 35 | Tom Bostelmann | |
| 482 | 47 | Mo Morsi | |
| 483 | 47 | Mo Morsi | You may enable/disable a specific module like so: |
| 484 | 47 | Mo Morsi | |
| 485 | 47 | Mo Morsi | <pre> |
| 486 | 47 | Mo Morsi | def test_index |
| 487 | 47 | Mo Morsi | Project.find(1).enabled_module_names = [:mymodule] |
| 488 | 47 | Mo Morsi | ... |
| 489 | 47 | Mo Morsi | end |
| 490 | 47 | Mo Morsi | </pre> |