Project

General

Profile

Plugin Tutorial » History » Version 20

Jean-Philippe Lang, 2008-09-21 14:47
requirements

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
5 12 Jean-Philippe Lang
{{toc}}
6 1 Jean-Philippe Lang
7
h2. Creating a new Plugin
8
9 9 Jean-Philippe Lang
Creating a new plugin can be done using the Redmine plugin generator.
10
Syntax for this generator is:
11 1 Jean-Philippe Lang
12 9 Jean-Philippe Lang
  ruby script/generate redmine_plugin <plugin_name>
13
14
So open up a command prompt and "cd" to your redmine directory, then execute the following command:
15
16 18 Jean-Philippe Lang
  % ruby script/generate redmine_plugin Polls
17 1 Jean-Philippe Lang
18 18 Jean-Philippe Lang
The plugin structure is created in @vendor/plugins/redmine_polls@:
19 1 Jean-Philippe Lang
20
<pre>
21 18 Jean-Philippe Lang
      create  vendor/plugins/redmine_polls/app/controllers
22
      create  vendor/plugins/redmine_polls/app/helpers
23
      create  vendor/plugins/redmine_polls/app/models
24
      create  vendor/plugins/redmine_polls/app/views
25
      create  vendor/plugins/redmine_polls/db/migrate
26
      create  vendor/plugins/redmine_polls/lib/tasks
27
      create  vendor/plugins/redmine_polls/assets/images
28
      create  vendor/plugins/redmine_polls/assets/javascripts
29
      create  vendor/plugins/redmine_polls/assets/stylesheets
30
      create  vendor/plugins/redmine_polls/lang
31
      create  vendor/plugins/redmine_polls/README
32
      create  vendor/plugins/redmine_polls/init.rb
33
      create  vendor/plugins/redmine_polls/lang/en.yml
34 1 Jean-Philippe Lang
</pre>
35
36 18 Jean-Philippe Lang
Edit @vendor/plugins/redmine_polls/init.rb@ to adjust plugin information (name, author, description and version):
37 1 Jean-Philippe Lang
38
<pre><code class="ruby">
39
require 'redmine'
40
41 18 Jean-Philippe Lang
Redmine::Plugin.register :redmine_polls do
42
  name 'Polls plugin'
43 1 Jean-Philippe Lang
  author 'John Smith'
44 18 Jean-Philippe Lang
  description 'A plugin for managing polls'
45 1 Jean-Philippe Lang
  version '0.0.1'
46
end
47
</code></pre>
48
49 2 Jean-Philippe Lang
Then restart the application and point your browser to http://localhost:3000/admin/info.
50 1 Jean-Philippe Lang
After logging in, you should see your new plugin in the plugins list:
51 4 Jean-Philippe Lang
52 2 Jean-Philippe Lang
p=. !plugins_list1.png!
53 1 Jean-Philippe Lang
54 13 Jean-Philippe Lang
h2. Generating a model
55
56 19 Jean-Philippe Lang
Let's create a simple Poll model for our plugin:
57 1 Jean-Philippe Lang
58 19 Jean-Philippe Lang
  ruby script/generate redmine_plugin_model polls poll question:string yes:integer no:integer
59 14 Jean-Philippe Lang
60 19 Jean-Philippe Lang
This creates the Poll model and the corresponding migration file.
61 14 Jean-Philippe Lang
Migrate the database using the following command:
62
63
  rake db:migrate_plugins
64
65
Note that each plugin has its own set of migrations.
66
67 19 Jean-Philippe Lang
Edit @app/models/poll.rb@ in your plugin directory to add a #vote method that will be invoked from our controller:
68 15 Jean-Philippe Lang
69
<pre><code class="ruby">
70 19 Jean-Philippe Lang
class Poll < ActiveRecord::Base
71 15 Jean-Philippe Lang
  def vote(answer)
72
    increment(answer == 'yes' ? :yes : :no)
73
  end
74
end
75
</code></pre>
76
77 1 Jean-Philippe Lang
h2. Generating a controller
78
79
For now, the plugin doesn't do anything. So let's create a controller for our plugin.
80 9 Jean-Philippe Lang
We can use the plugin controller generator for that. Syntax is:
81
82
  ruby script/generate redmine_plugin_controller <plugin_name> <controller_name> [<actions>]
83
84
So go back to the command prompt and run:
85 3 Jean-Philippe Lang
86
<pre>
87 18 Jean-Philippe Lang
% ruby script/generate redmine_plugin_controller Polls polls index vote
88 3 Jean-Philippe Lang
      exists  app/controllers/
89
      exists  app/helpers/
90 18 Jean-Philippe Lang
      create  app/views/polls
91 3 Jean-Philippe Lang
      create  test/functional/
92 18 Jean-Philippe Lang
      create  app/controllers/polls_controller.rb
93
      create  test/functional/polls_controller_test.rb
94
      create  app/helpers/polls_helper.rb
95
      create  app/views/polls/index.html.erb
96
      create  app/views/polls/vote.html.erb
97 3 Jean-Philippe Lang
</pre>
98
99 18 Jean-Philippe Lang
A controller @PollsController@ with 2 actions (@#index@ and @#vote@) is created.
100 3 Jean-Philippe Lang
101 18 Jean-Philippe Lang
Edit @app/controllers/polls_controller.rb@ in @redmine_polls@ directory to implement these 2 actions.
102 3 Jean-Philippe Lang
103
<pre><code class="ruby">
104 18 Jean-Philippe Lang
class PollsController < ApplicationController
105 1 Jean-Philippe Lang
  unloadable
106
107 7 Jean-Philippe Lang
  def index
108 19 Jean-Philippe Lang
    @polls = Poll.find(:all)
109 3 Jean-Philippe Lang
  end
110
111 7 Jean-Philippe Lang
  def vote
112 19 Jean-Philippe Lang
    poll = Poll.find(params[:id])
113
    poll.vote(params[:anwser])
114 3 Jean-Philippe Lang
    flash[:notice] = 'Vote saved.'
115
    redirect_to :action => 'index'
116
  end
117
end
118 1 Jean-Philippe Lang
</code></pre>
119 5 Jean-Philippe Lang
120 18 Jean-Philippe Lang
Then edit @app/views/polls/index.html.erb@ that will display existing polls:
121 3 Jean-Philippe Lang
122
123
<pre>
124 18 Jean-Philippe Lang
<h2>Polls</h2>
125 3 Jean-Philippe Lang
126 19 Jean-Philippe Lang
<% @polls.each do |poll| %>
127 3 Jean-Philippe Lang
  <p>
128 19 Jean-Philippe Lang
  <%= poll[:question] %>?
129
  <%= link_to 'Yes', {:action => 'vote', :id => poll[:id], :answer => 'yes'}, :method => :post %> (<%= poll[:yes] %>) /
130
  <%= link_to 'No', {:action => 'vote', :id => poll[:id], :answer => 'no'}, :method => :post %> (<%= poll[:no] %>)
131 3 Jean-Philippe Lang
  </p>
132
<% end %>
133
</pre>
134
135
You can remove @vote.html.erb@ since no rendering is done by the corresponding action.
136
137 18 Jean-Philippe Lang
Now, restart the application and point your browser to http://localhost:3000/polls.
138
You should see the 2 polls and you should be able to vote for them:
139 4 Jean-Philippe Lang
140 18 Jean-Philippe Lang
p=. !polls1.png!
141 4 Jean-Philippe Lang
142 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.
143 4 Jean-Philippe Lang
144
h2. Extending menus
145
146 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.
147 4 Jean-Philippe Lang
So let's add a new item to the application menu.
148
149
h3. Extending the application menu
150
151
Edit @init.rb@ at the root of your plugin directory to add the following line at the end of the plugin registration block:
152
153
<pre><code class="ruby">
154 18 Jean-Philippe Lang
Redmine::Plugin.register :redmine_polls do
155 4 Jean-Philippe Lang
  [...]
156
  
157 18 Jean-Philippe Lang
  menu :application_menu, :polls, { :controller => 'polls', :action => 'index' }, :caption => 'Polls'
158 4 Jean-Philippe Lang
end
159
</code></pre>
160
161
Syntax is:
162
163
  menu(menu_name, item_name, url, options={})
164
165
There are 4 menus that you can extend:
166
167
* @:top_menu@ - the top left menu
168
* @:account_menu@ - the top right menu with sign in/sign out links
169
* @:application_menu@ - the main menu displayed when the user is not inside a project
170
* @:project_menu@ - the main menu displayed when the user is inside a project
171
172
Available options are:
173
174
* @:param@ - the parameter key that is used for the project id (default is @:id@)
175
* @:if@ - a Proc that is called before rendering the item, the item is displayed only if it returns true
176
* @:caption@ - the menu caption that can be:
177
178
  * a localized string Symbol
179
  * a String
180
  * a Proc that can take the project as argument
181
182
* @:before@, @:after@ - specify where the menu item should be inserted (eg. @:after => :activity@)
183
* @:last@ - if set to true, the item will stay at the end of the menu (eg. @:last => true@)
184
* @:html_options@ - a hash of html options that are passed to @link_to@ when rendering the menu item
185
186
In our example, we've added an item to the application menu which is emtpy by default.
187
Restart the application and go to http://localhost:3000:
188
189
p=. !application_menu.png!
190
191 18 Jean-Philippe Lang
Now you can access the polls by clicking the Polls tab from the welcome screen.
192 4 Jean-Philippe Lang
193
h3. Extending the project menu
194
195 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.
196 6 Jean-Philippe Lang
Open @init.rb@ and replace the line that was added just before with these 2 lines:
197
198
<pre><code class="ruby">
199 18 Jean-Philippe Lang
Redmine::Plugin.register :redmine_polls do
200 6 Jean-Philippe Lang
  [...]
201
202 18 Jean-Philippe Lang
  permission :polls, {:polls => [:index, :vote]}, :public => true
203
  menu :project_menu, :polls, { :controller => 'polls', :action => 'index' }, :caption => 'Polls', :after => :activity, :param => :project_id
204 6 Jean-Philippe Lang
end
205
</code></pre>
206
207 18 Jean-Philippe Lang
The second line adds our Polls tab to the project menu, just after the activity tab.
208
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.
209 6 Jean-Philippe Lang
210
Restart the application again and go to one of your projects:
211
212
p=. !project_menu.png!
213
214 18 Jean-Philippe Lang
If you click the Polls tab, you should notice that the project menu is no longer displayed.
215 6 Jean-Philippe Lang
To make the project menu visible, you have to initialize the controller's instance variable @@project@.
216
217 18 Jean-Philippe Lang
Edit your PollsController to do so:
218 6 Jean-Philippe Lang
219
<pre><code class="ruby">
220
def index
221
  @project = Project.find(params[:project_id])
222 19 Jean-Philippe Lang
  @polls = Poll.find(:all) # @project.polls
223 6 Jean-Philippe Lang
end
224
</code></pre>
225
226
The project id is available in the @:project_id@ param because of the @:param => :project_id@ option in the menu item declaration above.
227
228 18 Jean-Philippe Lang
Now, you should see the project menu when viewing the polls:
229 6 Jean-Philippe Lang
230 18 Jean-Philippe Lang
p=. !project_menu_polls.png!
231 4 Jean-Philippe Lang
232
h2. Adding new permissions
233
234 18 Jean-Philippe Lang
For now, anyone can vote for polls. Let's make it more configurable by changing the permission declaration.
235
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).
236 10 Jean-Philippe Lang
237
Edit @init.rb@ to replace the previous permission declaration with these 2 lines:
238
239
<pre><code class="ruby">
240 20 Jean-Philippe Lang
241 18 Jean-Philippe Lang
  permission :view_polls, :polls => :index
242
  permission :vote_polls, :polls => :vote
243 1 Jean-Philippe Lang
</code></pre>
244 14 Jean-Philippe Lang
245 10 Jean-Philippe Lang
246
Restart the application and go to http://localhost:3000/roles/report:
247
248
p=. !permissions1.png!
249
250
You're now able to give these permissions to your existing roles.
251
252 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.
253 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.
254
255
Here is how it would look like for the @#index@ action:
256
257 1 Jean-Philippe Lang
<pre><code class="ruby">
258 18 Jean-Philippe Lang
class PollsController < ApplicationController
259 10 Jean-Philippe Lang
  unloadable
260
  
261
  before_filter :find_project, :authorize, :only => :index
262
263
  [...]
264
  
265
  def index
266 19 Jean-Philippe Lang
    @polls = Poll.find(:all) # @project.polls
267 10 Jean-Philippe Lang
  end
268
269
  [...]
270
  
271
  private
272
  
273
  def find_project
274
    # @project variable must be set before calling the authorize filter
275
    @project = Project.find(params[:project_id])
276
  end
277
end
278
</code></pre>
279
280
Retrieving the current project before the @#vote@ action could be done using a similiar way.
281 18 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.
282 4 Jean-Philippe Lang
283
h2. Creating a project module
284
285 19 Jean-Philippe Lang
For now, the poll functionality is added to all your projects. But you way want to enable polls for some projects only.
286 18 Jean-Philippe Lang
So, let's create a 'Polls' project module. This is done by wraping the permissions declaration inside a call to @#project_module@.
287 11 Jean-Philippe Lang
288
Edit @init.rb@ and change the permissions declaration:
289
290
<pre><code class="ruby">
291 18 Jean-Philippe Lang
  project_module :polls do
292
    permission :view_polls, :polls => :index
293
    permission :vote_polls, :polls => :vote
294 11 Jean-Philippe Lang
  end
295
</code></pre>
296
297
Restart the application and go to one of your project settings.
298 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):
299 11 Jean-Philippe Lang
300
p=. !modules.png!
301
302 18 Jean-Philippe Lang
You can now enable/disable polls at project level.
303 11 Jean-Philippe Lang
304
h2. Improving the plugin views
305
306 16 Jean-Philippe Lang
h3. Adding stylesheets
307
308
Let's start by adding a stylesheet to our plugin views.
309
Create a file named @voting.css@ in the @assets/stylesheets@ directory of your plugin:
310
311
<pre>
312
a.vote { font-size: 120%; }
313
a.vote.yes { color: green; }
314
a.vote.no  { color: red; }
315
</pre>
316
317 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.
318 16 Jean-Philippe Lang
319 18 Jean-Philippe Lang
Then, append the following lines at the end of @app/views/polls/index.html.erb@ so that your stylesheet get included in the page header by Redmine:
320 16 Jean-Philippe Lang
321
<pre>
322
<% content_for :header_tags do %>
323 18 Jean-Philippe Lang
    <%= stylesheet_link_tag 'voting', :plugin => 'redmine_polls' %>
324 16 Jean-Philippe Lang
<% end %>
325
</pre>
326
327 18 Jean-Philippe Lang
Note that the @:plugin => 'redmine_polls'@ option is required when calling the @stylesheet_link_tag@ helper.
328 16 Jean-Philippe Lang
329
Javascripts can be included in plugin views using the @javascript_include_tag@ helper in the same way.
330
331
h3. Setting page title
332
333
You can set the HTML title from inside your views by using the @html_title@ helper.
334
Example:
335
336 18 Jean-Philippe Lang
  <% html_title "Polls" -%>