Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9e23117f9c | ||
|
|
b3996f1970 | ||
|
|
a3bfcc962d | ||
|
|
ca4ed605a8 | ||
|
|
d3e6d7442f | ||
|
|
b558bc5334 | ||
|
|
204d7b5be6 | ||
|
|
7dccfec332 | ||
|
|
0b694bfd0b | ||
|
|
dfb59d8a55 | ||
|
|
56a44ad421 | ||
|
|
a12ee3c0da | ||
|
|
a657c479be | ||
|
|
ab82c5fd88 | ||
|
|
78cfb19f69 | ||
|
|
f2334082ee |
@@ -83,6 +83,7 @@ Since the release of the JSON REST API, several third-party developers have been
|
|||||||
- [jamf2snipe](https://github.com/grokability/jamf2snipe) - Python script to sync assets between a JAMFPro instance and a Snipe-IT instance
|
- [jamf2snipe](https://github.com/grokability/jamf2snipe) - Python script to sync assets between a JAMFPro instance and a Snipe-IT instance
|
||||||
- [jamf-snipe-rename](https://macblog.org/jamf-snipe-rename/) - Python script to rename computers in Jamf from Snipe-IT
|
- [jamf-snipe-rename](https://macblog.org/jamf-snipe-rename/) - Python script to rename computers in Jamf from Snipe-IT
|
||||||
- [Snipe-IT plugin for Jira Service Desk](https://marketplace.atlassian.com/apps/1220964/snipe-it-for-jira)
|
- [Snipe-IT plugin for Jira Service Desk](https://marketplace.atlassian.com/apps/1220964/snipe-it-for-jira)
|
||||||
|
- [Rudder2Snipe](https://github.com/norbertoaquino/rudder2snipe) by [@norbertoaquino](https://github.com/norbertoaquino) - Rudder.io integration for Snipe-IT
|
||||||
- [Python 3 CSV importer](https://github.com/gastamper/snipeit-csvimporter) - allows importing assets into Snipe-IT based on Item Name rather than Asset Tag.
|
- [Python 3 CSV importer](https://github.com/gastamper/snipeit-csvimporter) - allows importing assets into Snipe-IT based on Item Name rather than Asset Tag.
|
||||||
- [Snipe-IT Kubernetes Helm Chart](https://github.com/t3n/helm-charts/tree/master/snipeit) - For more information, [click here](https://hub.helm.sh/charts/t3n/snipeit).
|
- [Snipe-IT Kubernetes Helm Chart](https://github.com/t3n/helm-charts/tree/master/snipeit) - For more information, [click here](https://hub.helm.sh/charts/t3n/snipeit).
|
||||||
- [Snipe-IT Bulk Edit](https://github.com/bricelabelle/snipe-it-bulkedit) - Google Script files to use Google Sheets as a bulk checkout/checkin/edit tool for Snipe-IT.
|
- [Snipe-IT Bulk Edit](https://github.com/bricelabelle/snipe-it-bulkedit) - Google Script files to use Google Sheets as a bulk checkout/checkin/edit tool for Snipe-IT.
|
||||||
|
|||||||
@@ -242,6 +242,7 @@ class LocationsController extends Controller
|
|||||||
'locations.currency',
|
'locations.currency',
|
||||||
'locations.company_id',
|
'locations.company_id',
|
||||||
'locations.notes',
|
'locations.notes',
|
||||||
|
'locations.tag_color',
|
||||||
])
|
])
|
||||||
->withCount('assignedAssets as assigned_assets_count')
|
->withCount('assignedAssets as assigned_assets_count')
|
||||||
->withCount('assets as assets_count')
|
->withCount('assets as assets_count')
|
||||||
|
|||||||
@@ -95,23 +95,39 @@ class L4736_A extends L4736
|
|||||||
$currentX += $barcodeSize + self::BARCODE_MARGIN;
|
$currentX += $barcodeSize + self::BARCODE_MARGIN;
|
||||||
$usableWidth -= $barcodeSize + self::BARCODE_MARGIN;
|
$usableWidth -= $barcodeSize + self::BARCODE_MARGIN;
|
||||||
}
|
}
|
||||||
|
$fields = $record->get('fields');
|
||||||
|
$fieldCount = count($fields);
|
||||||
|
|
||||||
foreach ($record->get('fields') as $field) {
|
$perFieldHeight = (self::LABEL_SIZE + self::LABEL_MARGIN)
|
||||||
|
+ (self::FIELD_SIZE + self::FIELD_MARGIN);
|
||||||
|
|
||||||
|
$baseHeight = $fieldCount * $perFieldHeight;
|
||||||
|
$scale = 1.0;
|
||||||
|
if ($baseHeight > $usableHeight && $baseHeight > 0) {
|
||||||
|
$scale = $usableHeight / $baseHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
$labelSize = self::LABEL_SIZE * $scale;
|
||||||
|
$labelMargin = self::LABEL_MARGIN * $scale;
|
||||||
|
$fieldSize = self::FIELD_SIZE * $scale;
|
||||||
|
$fieldMargin = self::FIELD_MARGIN * $scale;
|
||||||
|
|
||||||
|
foreach ($fields as $field) {
|
||||||
static::writeText(
|
static::writeText(
|
||||||
$pdf, $field['label'],
|
$pdf, $field['label'],
|
||||||
$currentX, $currentY,
|
$currentX, $currentY,
|
||||||
'freesans', '', self::LABEL_SIZE, 'L',
|
'freesans', '', $labelSize, 'L',
|
||||||
$usableWidth, self::LABEL_SIZE, true, 0
|
$usableWidth, $labelSize, true, 0
|
||||||
);
|
);
|
||||||
$currentY += self::LABEL_SIZE + self::LABEL_MARGIN;
|
$currentY += $labelSize + $labelMargin;
|
||||||
|
|
||||||
static::writeText(
|
static::writeText(
|
||||||
$pdf, $field['value'],
|
$pdf, $field['value'],
|
||||||
$currentX, $currentY,
|
$currentX, $currentY,
|
||||||
'freemono', 'B', self::FIELD_SIZE, 'L',
|
'freemono', 'B', $fieldSize, 'L',
|
||||||
$usableWidth, self::FIELD_SIZE, true, 0, 0.01
|
$usableWidth, $fieldSize, true, 0, 0.01
|
||||||
);
|
);
|
||||||
$currentY += self::FIELD_SIZE + self::FIELD_MARGIN;
|
$currentY += $fieldSize + $fieldMargin;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -59,23 +59,44 @@ class L6009_A extends L6009
|
|||||||
$currentX += $barcodeSize + self::BARCODE_MARGIN;
|
$currentX += $barcodeSize + self::BARCODE_MARGIN;
|
||||||
$usableWidth -= $barcodeSize + self::BARCODE_MARGIN;
|
$usableWidth -= $barcodeSize + self::BARCODE_MARGIN;
|
||||||
}
|
}
|
||||||
|
$fields = $record->get('fields');
|
||||||
|
// Below rescales the size of the field box to fit, it feels like it could/should be abstracted one class above
|
||||||
|
// to be usable on other labels but im unsure of how to implement that, since it uses a lot of private
|
||||||
|
// constants.
|
||||||
|
|
||||||
foreach ($record->get('fields') as $field) {
|
// Figure out how tall the label fields wants to be
|
||||||
|
$fieldCount = count($fields);
|
||||||
|
$perFieldHeight = (self::LABEL_SIZE + self::LABEL_MARGIN)
|
||||||
|
+ (self::FIELD_SIZE + self::FIELD_MARGIN);
|
||||||
|
|
||||||
|
$baseHeight = $fieldCount * $perFieldHeight;
|
||||||
|
// If it doesn't fit in the available height, scale everything down
|
||||||
|
$scale = 1.0;
|
||||||
|
if ($baseHeight > $usableHeight && $baseHeight > 0) {
|
||||||
|
$scale = $usableHeight / $baseHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
$labelSize = self::LABEL_SIZE * $scale;
|
||||||
|
$labelMargin = self::LABEL_MARGIN * $scale;
|
||||||
|
$fieldSize = self::FIELD_SIZE * $scale;
|
||||||
|
$fieldMargin = self::FIELD_MARGIN * $scale;
|
||||||
|
|
||||||
|
foreach ($fields as $field) {
|
||||||
static::writeText(
|
static::writeText(
|
||||||
$pdf, $field['label'],
|
$pdf, $field['label'],
|
||||||
$currentX, $currentY,
|
$currentX, $currentY,
|
||||||
'freesans', '', self::LABEL_SIZE, 'L',
|
'freesans', '', $labelSize, 'L',
|
||||||
$usableWidth, self::LABEL_SIZE, true, 0
|
$usableWidth, $labelSize, true, 0
|
||||||
);
|
);
|
||||||
$currentY += self::LABEL_SIZE + self::LABEL_MARGIN;
|
$currentY += $labelSize + $labelMargin;
|
||||||
|
|
||||||
static::writeText(
|
static::writeText(
|
||||||
$pdf, $field['value'],
|
$pdf, $field['value'],
|
||||||
$currentX, $currentY,
|
$currentX, $currentY,
|
||||||
'freemono', 'B', self::FIELD_SIZE, 'L',
|
'freemono', 'B', $fieldSize, 'L',
|
||||||
$usableWidth, self::FIELD_SIZE, true, 0, 0.01
|
$usableWidth, $fieldSize, true, 0, 0.01
|
||||||
);
|
);
|
||||||
$currentY += self::FIELD_SIZE + self::FIELD_MARGIN;
|
$currentY += $fieldSize + $fieldMargin;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
25
upgrade.php
25
upgrade.php
@@ -79,6 +79,7 @@ echo "This script will attempt to: \n\n";
|
|||||||
echo "- validate some very basic .env file settings \n";
|
echo "- validate some very basic .env file settings \n";
|
||||||
echo "- check your PHP version and extension requirements \n";
|
echo "- check your PHP version and extension requirements \n";
|
||||||
echo "- check directory permissions \n";
|
echo "- check directory permissions \n";
|
||||||
|
echo "- change your 'git remote' to the new Snipe-IT GitHub URL \n";
|
||||||
echo "- do a git pull to bring you to the latest version \n";
|
echo "- do a git pull to bring you to the latest version \n";
|
||||||
echo "- run composer install to get your vendors up to date \n";
|
echo "- run composer install to get your vendors up to date \n";
|
||||||
echo "- run a backup \n";
|
echo "- run a backup \n";
|
||||||
@@ -437,6 +438,30 @@ $git_version = shell_exec('git --version');
|
|||||||
|
|
||||||
if ((strpos('git version', $git_version)) === false) {
|
if ((strpos('git version', $git_version)) === false) {
|
||||||
echo "Git is installed. \n";
|
echo "Git is installed. \n";
|
||||||
|
|
||||||
|
// check remotes for legacy snipe/snipe-it URL
|
||||||
|
$remote = shell_exec('git remote -v');
|
||||||
|
foreach (explode("\n", $remote) as $line) {
|
||||||
|
$remote_bits = explode("\t", $line, 2);
|
||||||
|
if (count($remote_bits) != 2) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
@list($url, $purpose) = explode(" ", $remote_bits[1]);
|
||||||
|
if (in_array($url, ['git@github.com:snipe/snipe-it.git', 'https://github.com/snipe/snipe-it.git'])) {
|
||||||
|
// SSH or HTTPS remotes
|
||||||
|
$new_url = preg_replace("|snipe/snipe-it|", "grokability/snipe-it", $url);
|
||||||
|
echo $success_icon . " Resetting remote " . $remote_bits[0] . " at $url to $new_url for purpose: $purpose\n";
|
||||||
|
$push = '';
|
||||||
|
if ($purpose == '(push)') {
|
||||||
|
$push = '--push ';
|
||||||
|
}
|
||||||
|
$cmd = "git remote set-url $push" . $remote_bits[0] . " " . $new_url;
|
||||||
|
$remote_reset = shell_exec($cmd);
|
||||||
|
if ($remote_reset) {
|
||||||
|
echo '-- ' . $remote_reset . "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
$git_fetch = shell_exec('git fetch');
|
$git_fetch = shell_exec('git fetch');
|
||||||
$git_checkout = shell_exec('git checkout '.$branch);
|
$git_checkout = shell_exec('git checkout '.$branch);
|
||||||
$git_stash = shell_exec('git stash');
|
$git_stash = shell_exec('git stash');
|
||||||
|
|||||||
Reference in New Issue
Block a user