2 # Cookbook Name:: nodejs
 
   5 # Copyright 2013, OpenStreetMap Foundation
 
   7 # Licensed under the Apache License, Version 2.0 (the "License");
 
   8 # you may not use this file except in compliance with the License.
 
   9 # You may obtain a copy of the License at
 
  11 # https://www.apache.org/licenses/LICENSE-2.0
 
  13 # Unless required by applicable law or agreed to in writing, software
 
  14 # distributed under the License is distributed on an "AS IS" BASIS,
 
  15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  16 # See the License for the specific language governing permissions and
 
  17 # limitations under the License.
 
  20 require "chef/mixin/shell_out"
 
  23 default_action :install
 
  25 property :package, :kind_of => String, :name_attribute => true
 
  26 property :version, :kind_of => String
 
  29   qualified_name = if new_resource.version
 
  30                      "#{new_resource.package}@#{new_resource.version}"
 
  35   if current_version.nil?
 
  36     converge_by "install #{qualified_name}" do
 
  37       shell_out!("npm install --global #{qualified_name}")
 
  39   elsif new_resource.version &&
 
  40         new_resource.version != current_version
 
  41     converge_by "update #{qualified_name}" do
 
  42       shell_out!("npm install --global #{qualified_name}")
 
  48   unless current_version.nil?
 
  49     converge_by "update #{new_resource.package}" do
 
  50       shell_out!("npm update --global #{new_resource.package}")
 
  56   unless current_version.nil?
 
  57     converge_by "remove #{new_resource.package}" do
 
  58       shell_out!("npm remove --global #{new_resource.package}")
 
  64   include Chef::Mixin::ShellOut
 
  67     @current_version ||= JSON.parse(shell_out("npm list --global --json").stdout)
 
  68                              .dig("dependencies", new_resource.package, "version")