-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModuleMaker.sh
More file actions
323 lines (243 loc) · 7.33 KB
/
ModuleMaker.sh
File metadata and controls
323 lines (243 loc) · 7.33 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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
#!/usr/bin/env bash
set -euo pipefail
if [ "$#" -lt 2 ]; then
echo "Usage: $0 <module_machine_name> \"Human Name\""
exit 1
fi
RAW="$1"
NAME="$2"
# -------------------------------
# Normalize machine name
# -------------------------------
STEP1="$(printf '%s' "$RAW" | sed -E 's/([a-z0-9])([A-Z])/\1_\2/g')"
STEP2="$(printf '%s' "$STEP1" | tr ' -' '_')"
STEP3="$(printf '%s' "$STEP2" | sed -E 's/[^a-zA-Z0-9_]//g')"
STEP4="$(printf '%s' "$STEP3" | sed -E 's/_+/_/g')"
MODULE="$(printf '%s' "$STEP4" | tr '[:upper:]' '[:lower:]')"
[ -z "$MODULE" ] && { echo "Invalid module name."; exit 1; }
CUSTOM_DIR="modules/custom"
MODULE_PATH="$CUSTOM_DIR/$MODULE"
BASE_NS="Drupal\\$MODULE"
LOGGER_SERVICE="logger.channel.$MODULE"
studly() {
local m="$1"
local out=""
IFS='_' read -r -a parts <<< "$m"
for part in "${parts[@]}"; do
[ -z "$part" ] && continue
first="$(printf '%s' "$part" | cut -c1 | tr '[:lower:]' '[:upper:]')"
rest="$(printf '%s' "$part" | cut -c2-)"
out="${out}${first}${rest}"
done
printf '%s' "$out"
}
CLASS_PREFIX="$(studly "$MODULE")"
CONTROLLER_CLASS="${CLASS_PREFIX}Controller"
SERVICE_CLASS="${CLASS_PREFIX}Service"
FORM_CLASS="${CLASS_PREFIX}SettingsForm"
BLOCK_CLASS="${CLASS_PREFIX}Block"
EVENT_CLASS="${CLASS_PREFIX}Event"
SUBSCRIBER_CLASS="${CLASS_PREFIX}Subscriber"
echo "Creating module: $MODULE"
echo "Namespace: $BASE_NS"
[ -d "$MODULE_PATH" ] && { echo "Module already exists."; exit 1; }
mkdir -p \
"$MODULE_PATH/src/Controller" \
"$MODULE_PATH/src/Service" \
"$MODULE_PATH/src/Form" \
"$MODULE_PATH/src/Block" \
"$MODULE_PATH/src/Event" \
"$MODULE_PATH/src/EventSubscriber" \
"$MODULE_PATH/config/schema"
# ---------------------------------------------------
# info.yml
# ---------------------------------------------------
cat > "$MODULE_PATH/$MODULE.info.yml" <<EOF
name: '$NAME'
type: module
description: '$NAME'
core_version_requirement: ^9 || ^10 || ^11
package: Custom
configure: $MODULE.settings
EOF
# ---------------------------------------------------
# module + install
# ---------------------------------------------------
touch "$MODULE_PATH/$MODULE.module"
touch "$MODULE_PATH/$MODULE.install"
# ---------------------------------------------------
# permissions
# ---------------------------------------------------
cat > "$MODULE_PATH/$MODULE.permissions.yml" <<EOF
administer $MODULE:
title: 'Administer $NAME'
description: 'Configure $NAME.'
EOF
# ---------------------------------------------------
# routing
# ---------------------------------------------------
cat > "$MODULE_PATH/$MODULE.routing.yml" <<EOF
$MODULE.main:
path: '/$MODULE'
defaults:
_controller: '$BASE_NS\\Controller\\$CONTROLLER_CLASS::content'
_title: '$NAME'
requirements:
_permission: 'access content'
$MODULE.settings:
path: '/admin/config/custom/$MODULE'
defaults:
_form: '$BASE_NS\\Form\\$FORM_CLASS'
_title: '$NAME settings'
requirements:
_permission: 'administer $MODULE'
EOF
# ---------------------------------------------------
# menu links
# ---------------------------------------------------
cat > "$MODULE_PATH/$MODULE.links.menu.yml" <<EOF
$MODULE.settings:
title: '$NAME settings'
route_name: $MODULE.settings
parent: system.admin_config
EOF
# ---------------------------------------------------
# services
# ---------------------------------------------------
cat > "$MODULE_PATH/$MODULE.services.yml" <<EOF
services:
$MODULE.service:
class: $BASE_NS\\Service\\$SERVICE_CLASS
$MODULE.subscriber:
class: $BASE_NS\\EventSubscriber\\$SUBSCRIBER_CLASS
arguments: ['@$LOGGER_SERVICE']
tags:
- { name: event_subscriber }
$LOGGER_SERVICE:
parent: logger.channel_base
arguments: ['$MODULE']
EOF
# ---------------------------------------------------
# Controller
# ---------------------------------------------------
cat > "$MODULE_PATH/src/Controller/$CONTROLLER_CLASS.php" <<EOF
<?php
namespace $BASE_NS\Controller;
use Drupal\Core\Controller\ControllerBase;
class $CONTROLLER_CLASS extends ControllerBase {
public function content() {
return [
'#markup' => \$this->t('$NAME is installed.'),
];
}
}
EOF
# ---------------------------------------------------
# Service
# ---------------------------------------------------
cat > "$MODULE_PATH/src/Service/$SERVICE_CLASS.php" <<EOF
<?php
namespace $BASE_NS\Service;
class $SERVICE_CLASS {
public function status(): string {
return '$NAME service active.';
}
}
EOF
# ---------------------------------------------------
# Form
# ---------------------------------------------------
cat > "$MODULE_PATH/src/Form/$FORM_CLASS.php" <<EOF
<?php
namespace $BASE_NS\Form;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
class $FORM_CLASS extends ConfigFormBase {
protected function getEditableConfigNames(): array {
return ['$MODULE.settings'];
}
public function getFormId(): string {
return '${MODULE}_settings_form';
}
public function buildForm(array \$form, FormStateInterface \$form_state): array {
\$config = \$this->config('$MODULE.settings');
\$form['message'] = [
'#type' => 'textfield',
'#title' => \$this->t('Message'),
'#default_value' => \$config->get('message') ?? '',
];
return parent::buildForm(\$form, \$form_state);
}
public function submitForm(array &\$form, FormStateInterface \$form_state): void {
\$this->config('$MODULE.settings')
->set('message', \$form_state->getValue('message'))
->save();
parent::submitForm(\$form, \$form_state);
}
}
EOF
# ---------------------------------------------------
# Block
# ---------------------------------------------------
cat > "$MODULE_PATH/src/Plugin/Block/$BLOCK_CLASS.php" <<EOF
<?php
namespace $BASE_NS\Plugin\Block;
use Drupal\Core\Block\BlockBase;
/**
* @Block(
* id = "${MODULE}_${BLOCK_CLASS}",
* admin_label = @Translation("$NAME Block")
* )
*/
class $BLOCK_CLASS extends BlockBase {
public function build(): array {
return [
'#markup' => "$NAME block rendered.",
];
}
}
EOF
# ---------------------------------------------------
# Event
# ---------------------------------------------------
cat > "$MODULE_PATH/src/Event/$EVENT_CLASS.php" <<EOF
<?php
namespace $BASE_NS\Event;
use Symfony\Contracts\EventDispatcher\Event;
class $EVENT_CLASS extends Event {
public const EVENT_NAME = '$MODULE.event';
}
EOF
# ---------------------------------------------------
# Subscriber
# ---------------------------------------------------
cat > "$MODULE_PATH/src/EventSubscriber/$SUBSCRIBER_CLASS.php" <<EOF
<?php
namespace $BASE_NS\EventSubscriber;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Psr\Log\LoggerInterface;
class $SUBSCRIBER_CLASS implements EventSubscriberInterface {
protected LoggerInterface \$logger;
public function __construct(LoggerInterface \$logger) {
\$this->logger = \$logger;
}
public static function getSubscribedEvents(): array {
return [];
}
}
EOF
# ---------------------------------------------------
# Schema
# ---------------------------------------------------
cat > "$MODULE_PATH/config/schema/$MODULE.schema.yml" <<EOF
$MODULE.settings:
type: config_object
label: '$NAME settings'
mapping:
message:
type: string
label: 'Message'
EOF
echo
echo "Module $MODULE created cleanly."
echo "Run: drush cr && drush en $MODULE"