I was planning to continue my series of posts entitled āWordpress and OpsWorks, Pride and Prejudiceā, but today I want to talk about something a little bit less specific. Anyway, for the curious readers,Ā hereās the link with the last post of the aforementioned series.
The subject of this post doesnāt relate in particular to Opsworks or WordPress but it is still connected to these topics as it discusses āsomethingā I found myself in need while working on a new cookbook containing some new recipes.
This something is the wish to refactor and it comesĀ from the fact that the recipes of the new cookbook have a lot in common with the ones of the WordPress one. Just for the record, the purpose of the new recipes is to handle the deploy of anotherĀ PHP framework (if WordPress can be considered a framework) called PrestaShop.
Anyway, pushed by the will to improve and dry out the structure of my cookbooks and recipes I started to delve more and more into the Chef docs and to study the other open source cookbooks.
Among all the sources I stumbled upon let me report this one as I consider it a great summary of the best practices regarding cookbooks and recipes development.
One of this best practices is to identify the type of the cookbooks youāre writing. This indeed will let you structure them in a more appropriate way and avoid, in many cases, a lot of duplication.
In my case for example, the WordPress and PrestaShop cookbooks can be considered as wrapper cookbooks for a more general one.
This last, i.e. the mysterious general cookbook, can be considered instead like an application cookbook. You can roughly think it like a sort of parent cookbook whose aim is toĀ reduce the possible duplication between his children.
An example of these duplication is the recipe needed to handle the import of a database dump.
In this case the recipe is pretty general as it doesnāt rely on any specific data or behavior concerning the type of the application beeing deployed.
Here it is:
node['deploy'].each do |application, deploy|
attributes = deploy['set_db']
next if deploy['application_type'] != 'php' or deploy['application'] != application
import_db_dump do
db deploy['database']
db_dump attributes['db_dump']
end
end
end
The check I’m doing here (i.e. if deploy['application_type'] != 'php' orĀ or deploy['application'] != application
) is something I need in order to ensure that the recipe gets executed only for the current deployed application and not for the others allocated on the same OpsWorks stack. Remember, we’re using OpsWorks to handle all the operations and their related configurations.
The import_db_dump
is just a definition I’ve written to add a little bit of magic and hide the details related to the import. Maybe one day I’ll show you those details… ;P
Now the important thing to remember about the recipe is that it resides inside a (general) application cookbook. I called it phpapps
. So whenever I need to use the recipe inside a PHP layer defined inside an OpsWorks stack I must remember to specify the correct “path” to the recipe, in this case, phpapps::set_db
.
This is really nothing special. The magic here (except from the one related to the import_db_dump
definition š ) is that OpsWorks will handle for us all the information we need in our recipe by automatically merge them not only with all the attributes specified inside the JSONs (i.e. the stack and the customs one) but also with the defaults attributes written inside the recipe cookbook.
In this way you can rely on these attributes in order to specialize the recipes.
As stated before this isn’t particularly the case as the recipe doesn’t use any application specific information.
Anyway in another general recipe I’ve written I rely on this feature and it seems to work pretty well.
Next time Iāll maybe describe the particularities of this misterious recipe as it need some tweaks to function properly.
Moreover it strongly relies on the default attributes of the cookbooks.Ā These elements are indeed from my point of view the real cornerstone to properly structure the cookbooks as wrapper and application specific ones.
To the next time! š
Cheers!