summaryrefslogtreecommitdiff
blob: b729ca24b24dbc2619f1be0c2219bffd338f83ef (plain)
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
# Copyright 2010-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

inherit config multilib

DESCRIPTION="Manage php installations"
MAINTAINER="php-bugs@gentoo.org"

MODULES="cli apache2 fpm cgi"

cli_link="${EROOT}"/usr/bin/php
fpm_link="${EROOT}"/usr/bin/php-fpm
cgi_link="${EROOT}"/usr/bin/php-cgi

cleanup_sapis() {
	local m
	local link
	for m in $MODULES ; do
		cleanup_sapi $m
	done
}

cleanup_sapi() {
	local l=${1}_link
	local link=${!l}
	if [[ -L $link && ! -e $link ]] ; then
		echo -n "Broken link for $1"
		if update_sapi $1 ; then
			echo ", updated version to $(get_active_$1)"
			return
		else
			rm $link

			return
		fi
	fi
	return 1
}

update_sapi() {
	local target=$(find_targets_$1 | tail -n 1)
	local current=$(get_active_$1)
	[[ -z $target ]] && return 1
	[[ $current = $target ]] && return 1
	set_$1 $target
}

get_libdirs() {
	local dir libdirs
	for dir in $(list_libdirs); do
		[[ -L ${EROOT}/usr/${dir} ]] && continue
		ls "${EROOT}"/usr/${dir}/php*.* > /dev/null 2>&1 || continue

		libdirs+=' '/usr/${dir}
	done
	echo ${libdirs:-/usr/lib}
}

get_active_libdir() {
	local dir
	for dir in $(get_libdirs); do
		echo ${dir}
		return
	done
	echo /usr/lib
}

get_libname() {
	# probe on a well-known library
	local lib ret=.so
	for lib in "${EROOT}"$(get_active_libdir)/libz.* ; do
		case "${lib##*/}" in
			libz.a)    ret=.a   ;; # some platforms use .a as ext
			libz.*.*)  continue ;;
			libz.*)
				ret=${lib##*libz}
				break
				;;
		esac
	done
	echo ${ret}
}

cleanup() {
	local target=$(find_targets_$1 | tail -n 1)
	[[ -z $target ]] &&
	set_$1 $target
}

find_targets() {
	local dir dirs libdir
	for libdir in $(get_libdirs); do
		for dir in "${EROOT}"${libdir}/php*.*; do
			t=$(basename $dir)
			has $t $dirs || dirs="${dirs} $t"
		done
	done
  echo $dirs
}

find_targets_apache2() {
	local libs target libdir
	for target in $(find_targets); do
		for libdir in $(get_libdirs); do
			libs="${EROOT}${libdir}/$target/apache2/libphp[57]$(get_libname)"
			for lib in $libs; do
				[[ -f "${lib}" ]] && echo $target
			done
		done
	done | sort -u
}

find_targets_cli() {
	local target libdir
	for target in $(find_targets); do
		for libdir in $(get_libdirs); do
			[[ -f ${EROOT}${libdir}/$target/bin/php ]] && echo $target
		done
	done | sort -u
}

find_targets_fpm() {
	local target libdir
	for target in $(find_targets); do
		for libdir in $(get_libdirs); do
			[[ -f ${EROOT}${libdir}/$target/bin/php-fpm ]] && echo $target
		done
	done | sort -u
}

find_targets_cgi() {
	local target libdir
	for target in $(find_targets); do
		for libdir in $(get_libdirs); do
			[[ -f ${EROOT}${libdir}/$target/bin/php-cgi ]] && echo $target
		done
	done | sort -u
}

get_active_cli() {
	# See get_active_apache2() for an explanation of the sed call.
	local target=$(canonicalise "${EROOT}"/usr/bin/php)
	local ver="s:.*/usr/.*/\(php[0-9]\.[0-9][0-9]*\)/bin/php:\1:p"
	[[ -a "${target}" ]] &&	echo "${target}" | @SED@ -ne "${ver}"
}

get_active_cgi() {
	# See get_active_apache2() for an explanation of the sed call.
	local target=$(canonicalise "${EROOT}"/usr/bin/php-cgi)
	local ver="s:.*/usr/.*/\(php[0-9]\.[0-9][0-9]*\)/bin/php-cgi:\1:p"
	[[ -a "${target}" ]] &&	echo "${target}" | @SED@ -ne "${ver}"
}

get_active_fpm() {
	# See get_active_apache2() for an explanation of the sed call.
	local target=$(canonicalise "${EROOT}"/usr/bin/php-fpm)
	local ver="s:.*/usr/.*/\(php[0-9]\.[0-9][0-9]*\)/bin/php-fpm:\1:p"
	[[ -a "${target}" ]] &&	echo "${target}" | @SED@ -ne "${ver}"
}


get_active_apache2() {
	local libs target ver
	libs="${EROOT}$(get_active_libdir)/apache2/modules/libphp[57]$(get_libname)"

	# This sed expression finds the "display name" of the PHP version
	# corresponding to a copy of libphp. For example, it parses the
	# string "php5.6" out of "/usr/lib64/php5.6/apache2/libphp5.so".
	ver="s:.*/usr/.*/\(php[0-9]\.[0-9]\)/apache2/libphp[57]$(get_libname):\1:p"
	for lib in $libs; do
		if [[ -L "${lib}" ]] ; then
			target=$(canonicalise "${lib}")
			if [[ -a "${target}" ]] ; then
				echo "${target}" | @SED@ -ne "${ver}"
				# Short-circuit here because we should never have more
				# than one active version.
				return
			fi
		fi
	done
}

resolv_target() {
	local targets=( $(find_targets_$1) )
	if is_number $2; then
		if [[ $2 -le ${#targets[@]} && $2 -gt 0 ]] ; then
			echo "${targets[ $(( $2 - 1 )) ]}"
		fi
	elif has $2 ${targets[@]}; then
	  echo $2
	fi
}

check_module() {
	has $1 $(echo $MODULES) || \
		die -q "Please choose one of the following modules: ${MODULES}"
}

## Actual actions

list_apache2() {
	local targets
	local a
	targets=( $(find_targets_apache2) )
	a=$(get_active_apache2)
	for (( i = 0; i < ${#targets[@]}; i++ )) ; do
		if [[ $a == ${targets[i]} ]] ; then
			targets[i]=$(highlight_marker "${targets[i]}")
		fi
	done
	write_numbered_list -m "(none found)" "${targets[@]}"
}

list_cli() {
	local targets
	local a
	targets=( $(find_targets_cli) )
	a=$(get_active_cli)
	for (( i = 0; i < ${#targets[@]}; i++ )) ; do
		if [[ $a == ${targets[i]} ]] ; then
			targets[i]=$(highlight_marker "${targets[i]}")
		fi
	done
	write_numbered_list -m "(none found)" "${targets[@]}"
}

list_cgi() {
	local targets
	local a
	targets=( $(find_targets_cgi) )
	a=$(get_active_cgi)
	for (( i = 0; i < ${#targets[@]}; i++ )) ; do
		if [[ $a == ${targets[i]} ]] ; then
			targets[i]=$(highlight_marker "${targets[i]}")
		fi
	done
	write_numbered_list -m "(none found)" "${targets[@]}"
}

list_fpm() {
	local targets
	local a
	targets=( $(find_targets_fpm) )
	a=$(get_active_fpm)
	for (( i = 0; i < ${#targets[@]}; i++ )) ; do
		if [[ $a == ${targets[i]} ]] ; then
			targets[i]=$(highlight_marker "${targets[i]}")
		fi
	done
	write_numbered_list -m "(none found)" "${targets[@]}"
}

set_apache2() {
	local libdir t=$(resolv_target apache2 $1)
	[[ -z $t ]] && die -q "Bad target"
	for libdir in $(get_libdirs); do
		rm -f "${EROOT}${libdir}"/apache2/modules/libphp{5,7}$(get_libname)
		@LN_S@ --force ../../$t/apache2/libphp${t:3:1}$(get_libname) \
			"${EROOT}"${libdir}/apache2/modules/ || \
			die -q "Failed to set symlink for ${EPREFIX}${libdir}/apache2/modules/libphp${t:3:1}$(get_libname)"
	done
	echo "You have to run \`${EPREFIX}/etc/init.d/apache2 restart' for the changes to take effect"
}

set_cli() {
	local file libdir t=$(resolv_target cli $1)
	[[ -z $t ]] && die -q "Bad target"
	for file in php phpize php-config; do
		@LN_S@ --force ../..$(get_active_libdir)/$t/bin/$file \
			"${EROOT}"/usr/bin/$file || \
			die -q "Failed to create symlink for ${file}"
	done
}

set_cgi() {
	t=$(resolv_target cgi $1)
	[[ -z $t ]] && die -q "Bad target"
	@LN_S@ --force ../..$(get_active_libdir)/$t/bin/php-cgi \
		"${EROOT}"/usr/bin/php-cgi || \
		die -q "Failed to create symlink for php-cgi"
}

set_fpm() {
	local t=$(resolv_target fpm $1)
	[[ -z $t ]] && die -q "Bad target"
	@LN_S@ --force ../..$(get_active_libdir)/$t/bin/php-fpm \
		"${EROOT}"/usr/bin/php-fpm || \
		die -q "Failed to create symlink for the php-fpm binary"
	echo "You have to run \`${EPREFIX}/etc/init.d/php-fpm restart' for the changes to take effect"
}
## set action

describe_set() {
	echo "Sets the current configuration for a module"
}

describe_set_parameters() {
	echo "<module> <target>"
}

describe_set_options() {
	echo "module:	one of ${MODULES}"
	echo "target:	Target name or number (from the 'list' action)"
}


do_set() {
	check_module $1
	set_$1 $2
}



## List action

describe_list() {
	echo "Lists available php installs for a module"
}

describe_list_parameters() {
	echo "<module>"
}

describe_list_options() {
	echo "module: one of ${MODULES}"
}

do_list() {
	check_module $1
	list_$1
}

## Show action

describe_show() {
	echo "Lists available php installs for a module"
}

describe_show_parameters() {
	echo "<module>"
}

describe_show_options() {
	echo "module: one of ${MODULES}"
}

do_show() {
	check_module $1
	get_active_$1
}

## update action

describe_update() {
	echo "Automatically update the php versions"
}

describe_update_parameters() {
	echo "<module> [ifunset]"
}

describe_update_options() {
	echo "module: one of ${MODULES}"
	echo "ifunset : Do not override existing implementation"
}

do_update() {
    check_module $1
	[[ -z ${2} || ( -z ${3} && ( ${2} == ifunset || ${2} == '--if-unset' ) ) ]] || \
		die -q "Usage error"

	if [[ (${2} == ifunset || ${2} == '--if-unset') && -n $(get_active_$1) ]];
	then
		return
	fi

    update_sapi $1 || echo "Nothing to update"
}

## cleanup action

describe_cleanup() {
	echo "Automatically clean up stale links"
}

describe_cleanup_parameters() {
	echo
}

describe_cleanup_options() {
	echo
}

do_cleanup() {
    cleanup_sapis
}