1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
package FusionInventory::Agent::Task::Inventory::MacOS::License;
use strict;
use warnings;
use FusionInventory::Agent::Tools;
use FusionInventory::Agent::Tools::Generic::License;
sub isEnabled {
return 1;
}
sub doInventory {
my (%params) = @_;
my $inventory = $params{inventory};
# Adobe
my @found = getAdobeLicenses(
command => 'sqlite3 -separator " <> " "/Library/Application Support/Adobe/Adobe PCD/cache/cache.db" "SELECT * FROM domain_data"'
);
# Transmit
my @transmitFiles = glob('/System/Library/User Template/*.lproj/Library/Preferences/com.panic.Transmit.plist');
if ($params{scan_homedirs}) {
push (@transmitFiles, glob('/Users/*/Library/Preferences/com.panic.Transmit.plist'));
}
foreach my $transmitFile (@transmitFiles) {
my $info = _getTransmitLicenses(
command => "plutil -convert xml1 -o - '$transmitFile'"
);
next unless $info;
push @found, $info;
last; # One installation per machine
}
# VMware
my @vmwareFiles = glob('/Library/Application Support/VMware Fusion/license-*');
foreach my $vmwareFile (@vmwareFiles) {
my %info;
# e.g:
# LicenseType = "Site"
my $handle = getFileHandle(file => $vmwareFile);
foreach (<$handle>) {
next unless /^(\S+)\s=\s"(.*)"/;
$info{$1} = $2;
}
next unless $info{Serial};
my $date;
if ($info{LastModified} =~ /(^2\d{3})-(\d{1,2})-(\d{1,2}) @ (\d{1,2}):(\d{1,2})/) {
$date = getFormatedDate($1, $2, $3, $4, $5, 0);
}
push @found, {
NAME => $info{ProductID},
FULLNAME => $info{ProductID}." (".$info{LicenseVersion}.")",
KEY => $info{Serial},
ACTIVATION_DATE => $date
}
}
foreach my $license (@found) {
$inventory->addEntry(section => 'LICENSEINFOS', entry => $license);
}
}
sub _getTransmitLicenses {
my (%params) = @_;
my $handle = getFileHandle(%params);
my %val;
my $in;
foreach my $line (<$handle>) {
if ($in) {
$val{$in} = $1 if $line =~ /<string>([\d\w\.-]+)<\/string>/;
$in = undef;
} elsif ($line =~ /<key>SerialNumber2/) {
$in = "KEY";
} elsif ($line =~ /<key>PreferencesVersion<\/key>/) {
$in = "VERSION";
}
}
return unless $val{KEY};
return {
NAME => "Transmit",
FULLNAME => "Panic's Transmit",
KEY => $val{KEY}
};
}
1;
|