-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmodule.php
More file actions
219 lines (196 loc) · 6.51 KB
/
module.php
File metadata and controls
219 lines (196 loc) · 6.51 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<?php
/**
* Rural Theme
*
* webtrees-MyArtJaub
* Copyright (C) 2009-2026 Jonathan Jaubart
*
* Based on webtrees: online genealogy
* Copyright (C) 2020 webtrees development team
*
* This file is part of webtrees-MyArtJaub
*
* webtrees-MyArtJaub is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* webtrees-MyArtJaub is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with webtrees-MyArtJaub. If not, see <https://www.gnu.org/licenses/>.
*
*/
declare(strict_types=1);
namespace MyArtJaub\Webtrees\Module;
use Fisharebest\Webtrees\I18N;
use Fisharebest\Webtrees\Registry;
use Fisharebest\Webtrees\Site;
use Fisharebest\Webtrees\View;
use Fisharebest\Webtrees\Webtrees;
use Fisharebest\Webtrees\Module\AbstractModule;
use Fisharebest\Webtrees\Module\ModuleCustomInterface;
use Fisharebest\Webtrees\Module\ModuleCustomTrait;
use Fisharebest\Webtrees\Module\ModuleFooterInterface;
use Fisharebest\Webtrees\Module\ModuleFooterTrait;
use Fisharebest\Webtrees\Module\ModuleThemeInterface;
use Fisharebest\Webtrees\Module\ModuleThemeTrait;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
/**
* Class RuralTheme - Main class for Rural Theme.
*/
class RuralTheme extends AbstractModule implements ModuleCustomInterface, ModuleFooterInterface, ModuleThemeInterface
{
use ModuleCustomTrait;
use ModuleFooterTrait;
use ModuleThemeTrait;
/**
* {@inheritDoc}
* @see \Fisharebest\Webtrees\Module\AbstractModule::title()
*/
public function title(): string
{
return I18N::translate('Rural');
}
/**
* {@inheritDoc}
* @see \Fisharebest\Webtrees\Module\AbstractModule::boot()
*/
public function boot(): void
{
// Register a namespace for our views.
View::registerNamespace($this->name(), $this->resourcesFolder() . 'views/');
}
/**
* {@inheritDoc}
* @see \Fisharebest\Webtrees\Module\AbstractModule::resourcesFolder()
*/
public function resourcesFolder(): string
{
return __DIR__ . '/resources/';
}
/**
* {@inheritDoc}
* @see \Fisharebest\Webtrees\Module\AbstractModule::stylesheets()
*/
public function stylesheets(): array
{
$header_path = $this->resourcesFolder() . $this->getHeaderImagePath();
$hash = hash('xxh64', $this->customModuleVersion() . '#' . filemtime($header_path));
return [
$this->assetUrl('css/rural.min.css'),
route('module', ['module' => $this->name(), 'action' => 'CustomCss', 'h' => $hash])
];
}
/**
* {@inheritDoc}
* @see \Fisharebest\Webtrees\Module\ModuleCustomInterface::customModuleAuthorName()
*/
public function customModuleAuthorName(): string
{
return 'Jonathan Jaubart';
}
/**
* {@inheritDoc}
* @see \Fisharebest\Webtrees\Module\ModuleCustomInterface::customModuleVersion()
*/
public function customModuleVersion(): string
{
return '2.2.6-v.1';
}
/**
* {@inheritDoc}
* @see \Fisharebest\Webtrees\Module\ModuleCustomInterface::customModuleLatestVersionUrl()
*/
public function customModuleLatestVersionUrl(): string
{
return 'https://apps.jaubart.com/myartjaub/webtrees-modules/api/module/myartjaub_ruraltheme/latest?' .
http_build_query([
'm' => $this->customModuleVersion(),
'w' => Webtrees::VERSION,
'p' => PHP_VERSION,
'o' => DIRECTORY_SEPARATOR === '/' ? 'u' : 'w',
's' => Site::getPreference('SITE_UUID')
]);
}
/**
* {@inheritDoc}
* @see \Fisharebest\Webtrees\Module\ModuleCustomInterface::customModuleSupportUrl()
*/
public function customModuleSupportUrl(): string
{
return 'https://github.com/jon48/webtrees-theme-rural';
}
/**
* Request handler for CustomCss
*
* @param ServerRequestInterface $request
* @return ResponseInterface
*/
public function getCustomCssAction(ServerRequestInterface $request): ResponseInterface
{
$header_file = $this->getHeaderImagePath();
$content = view(
$this->name() . '::style.css',
[
'header_path' => Registry::container()->get(ModuleThemeInterface::class)->assetUrl($header_file),
'header_height' => $this->getPngHeight($this->resourcesFolder() . $header_file)
]
);
return response($content)
->withHeader('Cache-Control', 'public,max-age=31536000')
->withHeader('Content-Type', 'text/css')
;
}
/**
* {@inheritDoc}
* @see \Fisharebest\Webtrees\Module\ModuleFooterInterface::defaultFooterOrder()
*/
public function defaultFooterOrder(): int
{
return 99;
}
/**
* {@inheritDoc}
* @see \Fisharebest\Webtrees\Module\ModuleFooterInterface::getFooter()
*/
public function getFooter(\Psr\Http\Message\ServerRequestInterface $request): string
{
if (Registry::container()->get(ModuleThemeInterface::class)->name() === $this->name()) {
return view($this->name() . '::footer');
}
return '';
}
/**
* Returns the path of the header file to use
*
* @return string
*/
private function getHeaderImagePath(): string
{
return file_exists($this->resourcesFolder() . 'images/header.png') ?
'images/header.png' :
'images/header.default.png';
}
/**
* Extracts the height of a PNG image.
* This is a faster implementation than going through the getimagesize function.
*
* @param string $path Path of the PNG image
* @return int Height
*/
private function getPngHeight(string $path): int
{
$handle = fopen($path, 'r');
if ($handle !== false) {
$contents = fread($handle, 25);
fclose($handle);
$height = $contents === false ? 0 : (unpack('N*', substr($contents, 20, 4))[1] ?? null);
return is_int($height) ? $height : 0;
}
return 0;
}
}
return new RuralTheme();