Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

prestashop (8) Versions 0.4.2

Installs and configures a web site based on Prestashop, an e-commerce open source solution

Policyfile
Berkshelf
Knife
cookbook 'prestashop', '~> 0.4.2', :supermarket
cookbook 'prestashop', '~> 0.4.2'
knife supermarket install prestashop
knife supermarket download prestashop
README
Dependencies
Changelog
Quality 17%

prestashop Cookbook

Cookbook for installing and configuring e-commerce web sites based
on Prestashop, an Open Source web
e-commerce solution.

Requirements

Packages

The following packages are installed by this cookbook:

  • php5-cli
  • php5-gd
  • php5-mysql
  • tar
  • wget
  • unzip

Also the packages php5-mcrypt and php5-imap will be installed by
default, but the user can exclude them.

Cookbooks

  • apache2
  • database
  • mysql

Attributes

prestashop::default

  • node['prestashop']['base_dir'] - directory where Prestashop will be installed (default /var/www/prestashop)
  • node['prestashop']['default_admin_dir'] - name of default admin directory
  • node['prestashop']['install_dir'] - name of default install directory
  • node['prestashop']['settings_file'] - path to config file (default 'config/settings.inc.php')
  • node['prestashop']['dir_owner'] - owner of installation directory (default 'www-data')
  • node['prestashop']['dir_group'] - group of installation directory (default 'www-data')
  • node['prestashop']['old_downloads_url_prefix'] - URL to get several Prestashop versions (default 'http://www.prestashop.com/download/old')
  • node['prestashop']['version'] - Prestashop version to install (default '1.6.0.8')
  • node['prestashop']['db_server_host'] - database server host to use (default '127.0.0.1')
  • node['prestashop']['db_server_port'] - database server port to use (default '3306')
  • node['prestashop']['db_name'] - database name to use (default 'prestashop_db')
  • node['prestashop']['db_user'] - database user (default 'prestashop_user')
  • node['prestashop']['db_password'] - database password (default 'V2ryD3ff3c5lt_')
  • node['prestashop']['db_prefix'] - prestashop database tables prefix (default '')
  • node['prestashop']['domain'] - store URL (default 'www.myprestashop.com')
  • node['prestashop']['translations_url_prefix'] - URL to download several translation files
  • node['prestashop']['vhost_name'] - virtual host file name to use when configuring Apache web site
  • node['prestashop']['with_php5_mcrypt'] - install and enable PHP mcrypt extension (yes/no, default true)
  • node['prestashop']['need_imap_for_service_client'] - whether to install and configure php IMAP extension (boolean, true by default)

prestashop::presh

  • node['prestashop']['presh']['enabled'] - whether to use or not Presh (boolean, false by default because it is so experimental)
  • node['prestashop']['presh']['base_url'] - github repository base url to download Presh from (https://github.com/rodolfojcj/presh/archive/ by default)
  • node['prestashop']['presh']['revision'] - github repository branch, tag or revision of Presh to use (master by default, but it also could be something like c48cdd316d0c32c4f6958ade91b738b12a1c1330)
  • node['prestashop']['presh']['install_dir_base'] - base name of the directory where Presh will be installed in the node (default is /usr/local/presh)
  • node['prestashop']['presh']['install_dir_suffix'] - name suffix of the directory where Presh will be installed in the node (default is the concatenation of a - sign and the value of node.default['prestashop']['presh']['revision'])
  • node['prestashop']['presh']['keep_updating'] - whether to re-download a possible new version of Presh from the repository (boolean, true by default). No matter which value it has, it only will be useful when the revision used is master.

Recipes

  • prestashop::default: main and simple recipe, just invokes the other recipes (conditionally in some cases)
  • prestashop::php5_imap: installs php5 IMAP extension and enables it (only in Debian >= 7.0 or Ubuntu >= 12.10)
  • prestashop::php5_mcrypt: installs php5 mcrypt extension and enables it (only in Debian >= 7.0 or Ubuntu >= 12.10)
  • prestashop::presh: installs Presh

Usage

Basic Usage

The idea is to use the Prestashop cookbook from your own wrapper
cookbooks, using its facilities with your custom parameters.

A usage example would be the following:

admin_dir = 'secret-admin-dir'
store_name = '"My Prestashop!"'
app_name = 'myprestashop'
domain = 'www.myprestashop.com'
aliases = ['myprestashop.com', 'awesomestore.com']
site_dir = '/var/www/myprestashop'
ssl_params = {
  'SSLCertificateFile' => '/etc/ssl/certs/myprestashop/myprestashop.crt',
  'SSLCertificateKeyFile' => '/etc/ssl/private/myprestashop/myprestashop.private.key',
  'SSLCACertificateFile' => '/etc/ssl/certs/myprestashop/CA.crt'
}
db_name = 'db_myprestashop'
db_user = 'db_user'
db_password = 'db_P1ssword'

install_cli_options = {
  'domain' => domain,
  'db_user' => db_user,
  'db_password' => db_password,
  'db_name' => db_name,
  'prefix' => '""',
  'email' => 'seller@myprestashop.com',
  'password' => 'Seller_P1ssword',
  'name' => 'MyPrestashop',
  'timezone' => 'America/Caracas',
  'language' => 'es',
  'country' => 've',
  'newsletter' => '0'
}

# the awesome module [Minic Slider from Minic Studio](http://module.minic.ro/tag/slider/)
other_modules = Hash.new
other_modules['via_git'] = [
  {
    'name' => 'minicslider',
    'url' => 'git://github.com/minicstudio/minicslider.git',
    'rev' => 'master'
  }
]

include_recipe "prestashop::default"

prestashop_database do
  db_name db_name
  db_user db_user
  db_password db_password
end

prestashop_install do
  base_dir site_dir
  custom_admin_dir admin_dir
  version '1.6.0.8'
  langs_iso_codes ['es', 'it', 'de']
  install_cli_options install_cli_options
end

prestashop_apache_vhost do
  app_name app_name
  app_domain domain
  app_aliases aliases
  # redirect_aliases is true by default
  # redirect_aliases true # use permanent 301 redirections for domain aliases
  # redirect_aliases false # use ServerAlias for domain aliases
  base_dir site_dir
  ssl_params ssl_params
end

prestashop_other_modules do
  base_dir site_dir
  other_modules other_modules
end

Notice that db_prefix option is ignored or is not working as expected,
so some debugging will be needed to make it useful. In the meanwhile the
Prestashop installer will create every table with the ps_ prefix and the
generated settings.inc.php config file will contain that ps_ prefix too.

A bonus: Presh and Piwik

If you want to use Presh in your own cookbooks and/or install the
Piwik module for web analytics, take these lines
as an example:

...
...
node.default['prestashop']['presh']['enabled'] = true
node.default['prestashop']['presh']['revision'] = 'c48cdd316d0c32c4f6958ade91b738b12a1c1330' # 'master' is the default value
include_recipe "prestashop::default"

presh_commands = [
  {'name' => 'set_demo_mode', 'params' => '0'},
  {'name' => 'set_friendly_urls', 'params' => '1'},
  {'name' => 'set_debug_settings', 'params' => '0'},
  {'name' => 'optimize_via_ccc', 'params' => '1'},
  {'name' => 'fix_mail'},
  {'name' => 'set_smtp_mailing', 'params' => 'myprestashop.com mail.myprestashop.com mailsending@myprestashop.com MailSendinP1ssword_ TLS 25'},
  {'name' => 'update_modules'},
  {'name' => 'install_module', 'params' => 'minicslider'},
  # piwik
  {'name' => 'install_module', 'params' => 'piwik'},
  {'name' => 'update_global_value', 'params' => 'PIWIK_HOST "piwik.myprestashop.com"'},
  {'name' => 'update_global_value', 'params' => 'PIWIK_ID 1'},
  {'name' => 'update_global_value', 'params' => "PIWIK_TRACKING_TYPES 'a:4:{i:0;s:5:\"basic\";i:1;s:5:\"order\";i:2;s:4:\"view\";i:3;s:4:\"cart\";}'"},
  {'name' => 'update_global_value', 'params' => 'PIWIK_ORDER_TRACKING_STATES "b:0;"'}
]

prestashop_piwik do
  base_dir site_dir
end

prestashop_presh do
  base_dir site_dir
  commands presh_commands
end
...
...

Also notice that you could include the Piwik module without Presh, and later
configure it manually through the admin web interface:

prestashop_piwik do
  base_dir site_dir
end

Testing

This cookbook needs automated testing, nothing has been incorporated in this respect.

Contributing

Go to Github, fork it and suggest improvements or submit your issues.

License and Authors

Author: Rodolfo Castellanos

Dependent cookbooks

apache2 >= 0.0.0
database >= 0.0.0
mysql = 5.5.3

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

prestashop CHANGELOG

0.4.2

  • Make possible to use permanent (301) redirections in Apache virtual host configuration for the website

0.4.1

  • Fix in the way of getting translations
  • Fix in the virtual host configuration for Apache 2.2 or 2.4

0.4.0

  • Refactoring: now definitions are used instead of recipes to do the hard work. This will allow to reuse the cookbook to install one or more Prestashop sites within the same node, having each site its own params and details
  • Refactoring in the virtual host configuration files
  • New params in Apache definition to prevent the access to .git directories or .gitignore files. They are enabled by default, but can be disabled if needed

0.3.0

  • Some enhancements to use php5 IMAP extension, download modules via Git, include Piwik module (needs Subversion)

0.2.2

  • Fix in file path

0.2.1

  • Fix in the way of downloading Presh

0.2.0

  • Inclusion of Presh as a command line tool

0.1.2

  • Fixes

0.1.1

  • Changed the default base directory where Prestashop will be installed
  • Fix in the way the URL to download Prestashop from is set. There was a bug when the configured version is different from the default one, because Chef evaluates each attribute too early, so the final URL value was wrong and as consequence the whole cookbook failed

0.1.0

  • Initial release of prestashop, a Chef cookbook to install and configure a web site based on Prestashop, an e-commerce Open Source solution

Collaborator Number Metric
            

0.4.2 failed this metric

Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.

Contributing File Metric
            

0.4.2 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file

Foodcritic Metric
            

0.4.2 failed this metric

FC064: Ensure issues_url is set in metadata: prestashop/metadata.rb:1
FC065: Ensure source_url is set in metadata: prestashop/metadata.rb:1
FC066: Ensure chef_version is set in metadata: prestashop/metadata.rb:1
FC069: Ensure standardized license defined in metadata: prestashop/metadata.rb:1
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any

No Binaries Metric
            

0.4.2 passed this metric

Testing File Metric
            

0.4.2 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file

Version Tag Metric
            

0.4.2 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number