-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathVestaModuleCustomTrait.php
98 lines (78 loc) · 2.84 KB
/
VestaModuleCustomTrait.php
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
97
98
<?php
namespace Vesta;
use Fisharebest\Localization\Translation;
use Fisharebest\Webtrees\FlashMessages;
use Fisharebest\Webtrees\I18N;
trait VestaModuleCustomTrait {
/**
* Additional/updated translations.
*
* @param string $language
*
* @return string[]
*/
public function customTranslations(string $language): array {
//webtrees uses "nb", weblate uses "nb_NO"
if ("nb" === $language) {
$language = "nb_NO";
}
$languageFile1 = $this->resourcesFolder() . 'lang/' . $language . '.mo';
$languageFile2 = $this->resourcesFolder() . 'lang/' . $language . '.csv';
$ret = [];
if (file_exists($languageFile1)) {
$ret = (new Translation($languageFile1))->asArray();
}
if (file_exists($languageFile2)) {
//we may have both!
$ret = array_merge($ret, (new Translation($languageFile2))->asArray());
}
return $ret;
}
/*
//taken from ModuleCustomTrait
public function customModuleLatestVersion(): string {
// No update URL provided.
if ($this->customModuleLatestVersionUrl() === '') {
return $this->customModuleVersion();
}
$cache = \Vesta\VestaUtils::get('cache.files');
assert($cache instanceof Cache);
return $cache->remember($this->name() . '-latest-version', function () {
try {
$client = new Client([
'timeout' => 3,
]);
$response = $client->get($this->customModuleLatestVersionUrl());
if ($response->getStatusCode() === StatusCodeInterface::STATUS_OK) {
$version = $response->getBody()->getContents();
//[RC] adjusted: don't check - why force a specific versioning scheme
// Does the response look like a version?
//if (preg_match('/^\d+\.\d+\.\d+/', $version)) {
return $version;
//}
}
} catch (RequestException $ex) {
// Can't connect to the server?
}
return $this->customModuleVersion();
}, 3600); //ModuleCustomTrait has 1 day, we use 1 hour
}
*/
protected function flashWhatsNew($namespace, $target_version): bool {
$pref = 'WHATS_NEW';
$current_version = intval($this->getPreference($pref, '0'));
$updates_applied = false;
//flash the messages, one version at a time.
while ($current_version < $target_version) {
$class = $namespace . '\\WhatsNew' . $current_version;
if (class_exists($class)) {
$whatsNew = new $class();
FlashMessages::addMessage(I18N::translate("What's new? ") . $whatsNew->getMessage());
} //else removed, apparently
$current_version++;
$this->setPreference($pref, (string) $current_version);
$updates_applied = true;
}
return $updates_applied;
}
}