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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
|
<?php
/**
* webtrees: online genealogy
* Copyright (C) 2019 webtrees development team
* This program 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.
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace Fisharebest\Webtrees\Module;
use Fisharebest\Webtrees\Census\CensusInterface;
use Fisharebest\Webtrees\I18N;
use Fisharebest\Webtrees\Individual;
use Fisharebest\Webtrees\Tree;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/**
* Class CensusAssistantModule
*/
class CensusAssistantModule extends AbstractModule
{
/**
* How should this module be identified in the control panel, etc.?
*
* @return string
*/
public function title(): string
{
/* I18N: Name of a module */
return I18N::translate('Census assistant');
}
/**
* A sentence describing what this module does.
*
* @return string
*/
public function description(): string
{
/* I18N: Description of the “Census assistant” module */
return I18N::translate('An alternative way to enter census transcripts and link them to individuals.');
}
/**
* @param Request $request
*
* @return Response
*/
public function getCensusHeaderAction(Request $request): Response
{
$census = $request->get('census');
$html = $this->censusTableHeader(new $census());
return new Response($html);
}
/**
* @param Request $request
* @param Tree $tree
*
* @return Response
*/
public function getCensusIndividualAction(Request $request, Tree $tree): Response
{
$census = $request->get('census', '');
$individual = Individual::getInstance($request->get('xref', ''), $tree);
$head = Individual::getInstance($request->get('head', ''), $tree);
if ($individual instanceof Individual && $head instanceof Individual) {
$html = $this->censusTableRow(new $census(), $individual, $head);
return new Response($html);
}
throw new NotFoundHttpException();
}
/**
* @param Individual $individual
*
* @return string
*/
public function createCensusAssistant(Individual $individual): string
{
return view('modules/census-assistant', [
'individual' => $individual,
]);
}
/**
* @param Request $request
* @param Individual $individual
* @param string $fact_id
* @param string $newged
* @param bool $keep_chan
*
* @return string
*/
public function updateCensusAssistant(Request $request, Individual $individual, string $fact_id, string $newged, bool $keep_chan): string
{
$ca_title = $request->get('ca_title', '');
$ca_place = $request->get('ca_place', '');
$ca_citation = $request->get('ca_citation', '');
$ca_individuals = (array) $request->get('ca_individuals');
$ca_notes = $request->get('ca_notes', '');
$ca_census = $request->get('ca_census', '');
if ($ca_census !== '' && !empty($ca_individuals)) {
$census = new $ca_census();
$note_text = $this->createNoteText($census, $ca_title, $ca_place, $ca_citation, $ca_individuals, $ca_notes);
$note_gedcom = '0 @@ NOTE ' . str_replace("\n", "\n1 CONT ", $note_text);
$note = $individual->tree()->createRecord($note_gedcom);
$newged .= "\n2 NOTE @" . $note->xref() . '@';
// Add the census fact to the rest of the household
foreach (array_keys($ca_individuals) as $xref) {
if ($xref !== $individual->xref()) {
Individual::getInstance($xref, $individual->tree())
->updateFact($fact_id, $newged, !$keep_chan);
}
}
}
return $newged;
}
/**
* @param CensusInterface $census
* @param string $ca_title
* @param string $ca_place
* @param string $ca_citation
* @param string[][] $ca_individuals
* @param string $ca_notes
*
* @return string
*/
private function createNoteText(CensusInterface $census, $ca_title, $ca_place, $ca_citation, $ca_individuals, $ca_notes): string
{
$text = $ca_title . "\n" . $ca_citation . "\n" . $ca_place . "\n\n";
foreach ($census->columns() as $n => $column) {
if ($n === 0) {
$text .= "\n";
} else {
$text .= ' | ';
}
$text .= $column->abbreviation();
}
foreach ($census->columns() as $n => $column) {
if ($n === 0) {
$text .= "\n";
} else {
$text .= ' | ';
}
$text .= '-----';
}
foreach ($ca_individuals as $xref => $columns) {
$text .= "\n" . implode(' | ', $columns);
}
return $text . "\n\n" . $ca_notes;
}
/**
* Generate an HTML row of data for the census header
* Add prefix cell (store XREF and drag/drop)
* Add suffix cell (delete button)
*
* @param CensusInterface $census
*
* @return string
*/
protected function censusTableHeader(CensusInterface $census): string
{
$html = '';
foreach ($census->columns() as $column) {
$html .= '<th class="wt-census-assistant-field" title="' . $column->title() . '">' . $column->abbreviation() . '</th>';
}
return '<tr class="wt-census-assistant-row"><th hidden></th>' . $html . '<th></th></tr>';
}
/**
* Generate an HTML row of data for the census
* Add prefix cell (store XREF and drag/drop)
* Add suffix cell (delete button)
*
* @param CensusInterface $census
*
* @return string
*/
public function censusTableEmptyRow(CensusInterface $census): string
{
return '<tr class="wt-census-assistant-row"><td hidden></td>' . str_repeat('<td class="wt-census-assistant-field"><input type="text" class="form-control wt-census-assistant-form-control"></td>', count($census->columns())) . '<td><a class="icon-remove" href="#" title="' . I18N::translate('Remove') . '"></a></td></tr>';
}
/**
* Generate an HTML row of data for the census
* Add prefix cell (store XREF and drag/drop)
* Add suffix cell (delete button)
*
* @param CensusInterface $census
* @param Individual $individual
* @param Individual $head
*
* @return string
*/
public function censusTableRow(CensusInterface $census, Individual $individual, Individual $head): string
{
$html = '';
foreach ($census->columns() as $column) {
$html .= '<td class="wt-census-assistant-field"><input class="form-control wt-census-assistant-form-control" type="text" value="' . $column->generate($individual, $head) . '" name="ca_individuals[' . $individual->xref() . '][]"></td>';
}
return '<tr class="wt-census-assistant-row"><td class="wt-census-assistant-field" hidden>' . $individual->xref() . '</td>' . $html . '<td class="wt-census-assistant-field"><a class="icon-remove" href="#" title="' . I18N::translate('Remove') . '"></a></td></tr>';
}
}
|