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
|
<?php /** * File info / management view. */ class Loco_admin_file_InfoController extends Loco_admin_file_BaseController {
/** * {@inheritdoc} */ public function init(){ parent::init(); $this->enqueueStyle('fileinfo'); // $file = $this->get('file'); $bundle = $this->getBundle(); $this->set('title', $file->basename().' ‹ '.$bundle->getName() ); }
/** * {@inheritdoc} */ public function getHelpTabs(){ return [ __('Overview','loco-translate') => $this->viewSnippet('tab-file-info'), ]; } /** * {@inheritdoc} */ public function render(){ /* @var Loco_fs_LocaleFile $file */ $file = $this->get('file'); $this->setFileTitle($file); if( $fail = $this->getFileError($file) ){ return $fail; } // file info $ext = strtolower( $file->extension() ); $finfo = Loco_mvc_FileParams::create( $file ); $this->set('file', $finfo ); $finfo['type'] = strtoupper($ext); if( $file->exists() ){ $finfo['existent'] = true; $finfo['writable'] = $file->writable(); $finfo['deletable'] = $file->deletable(); $finfo['mtime'] = $file->modified(); // Notify if file is managed by WordPress $api = new Loco_api_WordPressFileSystem; if( $api->isAutoUpdatable($file) ){ $finfo['autoupdate'] = true; } } // location info $dir = new Loco_fs_LocaleDirectory( $file->dirname() ); $dinfo = Loco_mvc_FileParams::create( $dir ); $this->set('dir', $dinfo ); $dinfo['type'] = $dir->getTypeId(); if( $dir->exists() && $dir->isDirectory() ){ $dinfo['existent'] = true; $dinfo['writable'] = $dir->writable(); }
// secure download link $args = new Loco_mvc_HiddenFields( [ 'route' => 'download', 'action' => 'loco_download', 'path' => $file->getRelativePath(loco_constant('WP_CONTENT_DIR')), ] ); $args->setNonce('download'); $finfo['download'] = $args->getHref( admin_url('admin-ajax.php','relative') );
// allow link to modify headers/settings $finfo['configure'] = str_replace('file-info','file-head',$_SERVER['REQUEST_URI']);
// collect note worthy problems with file headers $debugging = loco_debugging(); $debug = []; // get the name of the web server for information purposes $this->set('httpd', Loco_compat_PosixExtension::getHttpdUser() ); // unknown file template if required $locale = null; $project = null; $tpl = 'admin/file/info-other';
// we should know the project the file belongs to, but permitting orphans for debugging try { $project = $this->getProject(); $template = $project->getPot(); $isTemplate = $template && $file->equal($template); $this->set('isTemplate', $isTemplate ); $this->set('project', $project ); } catch( Loco_error_Exception $e ){ $debug[] = $e->getMessage(); $isTemplate = false; $template = null; }
// file will be Gettext most likely if( 'pot' === $ext || 'po' === $ext || 'mo' === $ext ){ // treat as template until locale verified $tpl = 'admin/file/info-pot'; // don't attempt to pull locale of template file if( 'pot' !== $ext && ! $isTemplate ){ $locale = $file->getLocale(); if( $locale->isValid() ){ // find PO/MO counter parts if( 'po' === $ext ){ $tpl = 'admin/file/info-po'; $sibling = $file->cloneExtension('mo'); } else { $tpl = 'admin/file/info-mo'; $sibling = $file->cloneExtension('po'); } $info = Loco_mvc_FileParams::create($sibling); $this->set( 'sibling', $info ); if( $sibling->exists() ){ $info['existent'] = true; $info['writable'] = $sibling->writable(); } } } // Do full parse to get stats and headers try { $data = Loco_gettext_Data::load($file); $head = $data->getHeaders(); $author = $head->trimmed('Last-Translator') or $author = __('Unknown author','loco-translate'); $this->set( 'author', $author ); // date headers may not be same as file modification time (files copied to server etc..) $podate = $head->trimmed( $locale ? 'PO-Revision-Date' : 'POT-Creation-Date' ); $potime = Loco_gettext_Data::parseDate($podate) or $potime = $file->modified(); $this->set('potime', $potime ); // access to meta stats, normally cached on listing pages $meta = Loco_gettext_Metadata::create($file,$data); $this->set( 'meta', $meta ); // allow PO header to specify alternative template for sync $opts = new Loco_gettext_SyncOptions($head); if( $opts->hasTemplate() ){ $altpot = $opts->getTemplate(); $altpot->normalize( $this->getBundle()->getDirectoryPath() ); if( $altpot->exists() && ( ! $template || ! $template->equal($altpot) ) ){ $template = $altpot; } } // establish whether PO is in sync with POT if( $template && ! $isTemplate && 'po' === $ext && $template->exists() ){ try { $this->set('potfile', new Loco_mvc_FileParams( [ 'synced' => Loco_gettext_Data::load($template)->equalSource($data), ], $template ) ); } catch( Exception $e ){ // ignore invalid template in this context } } if( $debugging ){ // missing or invalid headers are tolerated but developers should be notified if( ! count($head) ){ $debug[] = __('File does not have a valid header','loco-translate'); } // Language header sanity checks, raising developer (debug) warnings if( $locale ){ $value = $head->trimmed('Language'); if( '' !== $value ){ if( Loco_Locale::parse($value)->__toString() !== $locale->__toString() ){ // translators: Warning that the language in the file header (1) does not match the file name (2) $debug[]= sprintf( __('Language header is "%1$s" but file name contains "%2$s"','loco-translate'), $value, $locale ); } } $value = $head->trimmed('Plural-Forms'); if( '' !== $value ){ try { $locale->setPluralFormsHeader($value); } catch( InvalidArgumentException $e ){ $debug[] = sprintf('Plural-Forms header is invalid, "%s"',$value); } } } // Other sanity checks if( $project && $head->has('Project-Id-Version') ){ $inProj = $project->getName(); $inHead = $head->trimmed('Project-Id-Version'); if( false === strpos($inProj,$inHead) && false === strpos($inHead,$inProj) ) { $debug[] = sprintf( 'Project-Id-Version header is "%s" but project is "%s"', $inHead, $inProj ); } } } // Count source text for templates only (assumed English) if( 'admin/file/info-pot' === $tpl ){ $counter = new Loco_gettext_WordCount($data); $this->set('words', $counter->count() ); } } catch( Loco_error_Exception $e ){ $this->set('error', $e->getMessage() ); $tpl = 'admin/file/info-other'; } } if( $debugging && $debug ){ $this->set( 'debug', new Loco_mvc_ViewParams($debug) ); }
return $this->view( $tpl ); } }
|