2016-07-23 14:13:56 +02:00
|
|
|
# The personal, minimalist, super-fast, database free, bookmarking service.
|
2016-07-23 19:26:05 +02:00
|
|
|
# Makefile for PHP code analysis & testing, documentation and release generation
|
2015-04-05 22:16:17 +02:00
|
|
|
|
2015-02-25 22:08:50 +01:00
|
|
|
BIN = vendor/bin
|
2015-07-25 10:39:13 +02:00
|
|
|
PHP_SOURCE = index.php application tests plugins
|
|
|
|
PHP_COMMA_SOURCE = index.php,application,tests,plugins
|
2015-02-25 22:08:50 +01:00
|
|
|
|
2016-01-17 20:48:39 +01:00
|
|
|
all: static_analysis_summary check_permissions test
|
2015-02-25 22:08:50 +01:00
|
|
|
|
2017-05-30 23:45:17 +02:00
|
|
|
##
|
|
|
|
# Docker test adapter
|
|
|
|
#
|
|
|
|
# Shaarli sources and vendored libraries are copied from a shared volume
|
|
|
|
# to a user-owned directory to enable running tests as a non-root user.
|
|
|
|
##
|
|
|
|
docker_%:
|
|
|
|
rsync -az /shaarli/ ~/shaarli/
|
|
|
|
cd ~/shaarli && make $*
|
|
|
|
|
2015-02-25 22:08:50 +01:00
|
|
|
##
|
|
|
|
# Concise status of the project
|
|
|
|
# These targets are non-blocking: || exit 0
|
|
|
|
##
|
2015-04-05 22:16:17 +02:00
|
|
|
|
2015-02-25 22:08:50 +01:00
|
|
|
static_analysis_summary: code_sniffer_source copy_paste mess_detector_summary
|
2015-03-12 00:43:02 +01:00
|
|
|
@echo
|
2015-02-25 22:08:50 +01:00
|
|
|
|
|
|
|
##
|
|
|
|
# PHP_CodeSniffer
|
|
|
|
# Detects PHP syntax errors
|
|
|
|
# Documentation (usage, output formatting):
|
|
|
|
# - http://pear.php.net/manual/en/package.php.php-codesniffer.usage.php
|
|
|
|
# - http://pear.php.net/manual/en/package.php.php-codesniffer.reporting.php
|
|
|
|
##
|
2015-04-05 22:16:17 +02:00
|
|
|
|
2015-02-25 22:08:50 +01:00
|
|
|
code_sniffer: code_sniffer_full
|
|
|
|
|
2015-07-12 23:04:43 +02:00
|
|
|
### - errors filtered by coding standard: PEAR, PSR1, PSR2, Zend...
|
|
|
|
PHPCS_%:
|
|
|
|
@$(BIN)/phpcs $(PHP_SOURCE) --report-full --report-width=200 --standard=$*
|
|
|
|
|
2015-04-05 22:16:17 +02:00
|
|
|
### - errors by Git author
|
2015-02-25 22:08:50 +01:00
|
|
|
code_sniffer_blame:
|
|
|
|
@$(BIN)/phpcs $(PHP_SOURCE) --report-gitblame
|
|
|
|
|
2015-04-05 22:16:17 +02:00
|
|
|
### - all errors/warnings
|
2015-02-25 22:08:50 +01:00
|
|
|
code_sniffer_full:
|
|
|
|
@$(BIN)/phpcs $(PHP_SOURCE) --report-full --report-width=200
|
|
|
|
|
2015-04-05 22:16:17 +02:00
|
|
|
### - errors grouped by kind
|
2015-02-25 22:08:50 +01:00
|
|
|
code_sniffer_source:
|
|
|
|
@$(BIN)/phpcs $(PHP_SOURCE) --report-source || exit 0
|
|
|
|
|
|
|
|
##
|
|
|
|
# PHP Copy/Paste Detector
|
|
|
|
# Detects code redundancy
|
|
|
|
# Documentation: https://github.com/sebastianbergmann/phpcpd
|
|
|
|
##
|
2015-04-05 22:16:17 +02:00
|
|
|
|
2015-02-25 22:08:50 +01:00
|
|
|
copy_paste:
|
|
|
|
@echo "-----------------------"
|
|
|
|
@echo "PHP COPY/PASTE DETECTOR"
|
|
|
|
@echo "-----------------------"
|
|
|
|
@$(BIN)/phpcpd $(PHP_SOURCE) || exit 0
|
|
|
|
@echo
|
|
|
|
|
|
|
|
##
|
|
|
|
# PHP Mess Detector
|
|
|
|
# Detects PHP syntax errors, sorted by category
|
|
|
|
# Rules documentation: http://phpmd.org/rules/index.html
|
2015-04-05 22:16:17 +02:00
|
|
|
##
|
2015-03-12 00:43:02 +01:00
|
|
|
MESS_DETECTOR_RULES = cleancode,codesize,controversial,design,naming,unusedcode
|
2015-04-05 22:16:17 +02:00
|
|
|
|
2015-02-25 22:08:50 +01:00
|
|
|
mess_title:
|
|
|
|
@echo "-----------------"
|
|
|
|
@echo "PHP MESS DETECTOR"
|
|
|
|
@echo "-----------------"
|
|
|
|
|
2015-04-05 22:16:17 +02:00
|
|
|
### - all warnings
|
2015-02-25 22:08:50 +01:00
|
|
|
mess_detector: mess_title
|
2015-03-12 00:43:02 +01:00
|
|
|
@$(BIN)/phpmd $(PHP_COMMA_SOURCE) text $(MESS_DETECTOR_RULES) | sed 's_.*\/__'
|
2015-02-25 22:08:50 +01:00
|
|
|
|
2015-04-05 22:16:17 +02:00
|
|
|
### - all warnings + HTML output contains links to PHPMD's documentation
|
2015-02-25 22:08:50 +01:00
|
|
|
mess_detector_html:
|
2015-03-12 00:43:02 +01:00
|
|
|
@$(BIN)/phpmd $(PHP_COMMA_SOURCE) html $(MESS_DETECTOR_RULES) \
|
2015-02-25 22:08:50 +01:00
|
|
|
--reportfile phpmd.html || exit 0
|
|
|
|
|
2015-04-05 22:16:17 +02:00
|
|
|
### - warnings grouped by message, sorted by descending frequency order
|
2015-02-25 22:08:50 +01:00
|
|
|
mess_detector_grouped: mess_title
|
|
|
|
@$(BIN)/phpmd $(PHP_SOURCE) text $(MESS_DETECTOR_RULES) \
|
|
|
|
| cut -f 2 | sort | uniq -c | sort -nr
|
|
|
|
|
2015-04-05 22:16:17 +02:00
|
|
|
### - summary: number of warnings by rule set
|
2015-02-25 22:08:50 +01:00
|
|
|
mess_detector_summary: mess_title
|
|
|
|
@for rule in $$(echo $(MESS_DETECTOR_RULES) | tr ',' ' '); do \
|
2015-03-12 00:43:02 +01:00
|
|
|
warnings=$$($(BIN)/phpmd $(PHP_COMMA_SOURCE) text $$rule | wc -l); \
|
2015-02-25 22:08:50 +01:00
|
|
|
printf "$$warnings\t$$rule\n"; \
|
|
|
|
done;
|
2015-03-07 14:50:31 +01:00
|
|
|
|
2016-01-17 20:48:39 +01:00
|
|
|
##
|
|
|
|
# Checks source file & script permissions
|
|
|
|
##
|
|
|
|
check_permissions:
|
|
|
|
@echo "----------------------"
|
|
|
|
@echo "Check file permissions"
|
|
|
|
@echo "----------------------"
|
2017-04-09 14:50:13 +02:00
|
|
|
@for file in `git ls-files | grep -v docker`; do \
|
2016-01-17 20:48:39 +01:00
|
|
|
if [ -x $$file ]; then \
|
|
|
|
errors=true; \
|
|
|
|
echo "$${file} is executable"; \
|
|
|
|
fi \
|
|
|
|
done; [ -z $$errors ] || false
|
|
|
|
|
2015-03-12 00:43:02 +01:00
|
|
|
##
|
|
|
|
# PHPUnit
|
|
|
|
# Runs unitary and functional tests
|
|
|
|
# Generates an HTML coverage report if Xdebug is enabled
|
|
|
|
#
|
|
|
|
# See phpunit.xml for configuration
|
|
|
|
# https://phpunit.de/manual/current/en/appendixes.configuration.html
|
|
|
|
##
|
2017-05-20 15:53:35 +02:00
|
|
|
test: translate
|
2015-03-12 00:43:02 +01:00
|
|
|
@echo "-------"
|
|
|
|
@echo "PHPUNIT"
|
|
|
|
@echo "-------"
|
2017-01-15 16:31:53 +01:00
|
|
|
@mkdir -p sandbox coverage
|
2017-05-09 18:12:15 +02:00
|
|
|
@$(BIN)/phpunit --coverage-php coverage/main.cov --bootstrap tests/bootstrap.php --testsuite unit-tests
|
2017-01-15 16:31:53 +01:00
|
|
|
|
|
|
|
locale_test_%:
|
|
|
|
@UT_LOCALE=$*.utf8 \
|
|
|
|
$(BIN)/phpunit \
|
|
|
|
--coverage-php coverage/$(firstword $(subst _, ,$*)).cov \
|
|
|
|
--bootstrap tests/languages/bootstrap.php \
|
|
|
|
--testsuite language-$(firstword $(subst _, ,$*))
|
|
|
|
|
|
|
|
all_tests: test locale_test_de_DE locale_test_en_US locale_test_fr_FR
|
|
|
|
@$(BIN)/phpcov merge --html coverage coverage
|
|
|
|
@# --text doesn't work with phpunit 4.* (v5 requires PHP 5.6)
|
|
|
|
@#$(BIN)/phpcov merge --text coverage/txt coverage
|
2015-03-12 00:43:02 +01:00
|
|
|
|
2016-07-23 19:26:05 +02:00
|
|
|
##
|
|
|
|
# Custom release archive generation
|
|
|
|
#
|
|
|
|
# For each tagged revision, GitHub provides tar and zip archives that correspond
|
|
|
|
# to the output of git-archive
|
|
|
|
#
|
|
|
|
# These targets produce similar archives, featuring 3rd-party dependencies
|
|
|
|
# to ease deployment on shared hosting.
|
|
|
|
##
|
|
|
|
ARCHIVE_VERSION := shaarli-$$(git describe)-full
|
2016-10-16 19:33:29 +02:00
|
|
|
ARCHIVE_PREFIX=Shaarli/
|
2016-07-23 19:26:05 +02:00
|
|
|
|
|
|
|
release_archive: release_tar release_zip
|
|
|
|
|
|
|
|
### download 3rd-party PHP libraries
|
|
|
|
composer_dependencies: clean
|
2017-08-01 19:33:48 +02:00
|
|
|
composer install --no-dev --prefer-dist
|
2016-07-23 19:26:05 +02:00
|
|
|
find vendor/ -name ".git" -type d -exec rm -rf {} +
|
|
|
|
|
2018-02-24 18:37:57 +01:00
|
|
|
### download 3rd-party frontend libraries
|
|
|
|
frontend_dependencies:
|
|
|
|
yarn install
|
|
|
|
|
|
|
|
### Build frontend dependencies
|
|
|
|
build_frontend: frontend_dependencies
|
|
|
|
yarn run build
|
|
|
|
|
2017-05-20 15:53:35 +02:00
|
|
|
### generate a release tarball and include 3rd-party dependencies and translations
|
2018-02-24 18:37:57 +01:00
|
|
|
release_tar: composer_dependencies htmldoc translate build_frontend
|
2016-10-16 19:33:29 +02:00
|
|
|
git archive --prefix=$(ARCHIVE_PREFIX) -o $(ARCHIVE_VERSION).tar HEAD
|
|
|
|
tar rvf $(ARCHIVE_VERSION).tar --transform "s|^vendor|$(ARCHIVE_PREFIX)vendor|" vendor/
|
2017-08-01 19:25:45 +02:00
|
|
|
tar rvf $(ARCHIVE_VERSION).tar --transform "s|^doc/html|$(ARCHIVE_PREFIX)doc/html|" doc/html/
|
2016-10-16 19:33:29 +02:00
|
|
|
gzip $(ARCHIVE_VERSION).tar
|
2016-07-23 19:26:05 +02:00
|
|
|
|
2017-05-20 15:53:35 +02:00
|
|
|
### generate a release zip and include 3rd-party dependencies and translations
|
2018-02-24 18:37:57 +01:00
|
|
|
release_zip: composer_dependencies htmldoc translate build_frontend
|
2016-10-16 19:33:29 +02:00
|
|
|
git archive --prefix=$(ARCHIVE_PREFIX) -o $(ARCHIVE_VERSION).zip -9 HEAD
|
2017-08-01 19:25:45 +02:00
|
|
|
mkdir -p $(ARCHIVE_PREFIX)/{doc,vendor}
|
|
|
|
rsync -a doc/html/ $(ARCHIVE_PREFIX)doc/html/
|
|
|
|
zip -r $(ARCHIVE_VERSION).zip $(ARCHIVE_PREFIX)doc/
|
2016-10-16 19:33:29 +02:00
|
|
|
rsync -a vendor/ $(ARCHIVE_PREFIX)vendor/
|
|
|
|
zip -r $(ARCHIVE_VERSION).zip $(ARCHIVE_PREFIX)vendor/
|
|
|
|
rm -rf $(ARCHIVE_PREFIX)
|
2016-07-23 19:26:05 +02:00
|
|
|
|
2015-03-07 14:50:31 +01:00
|
|
|
##
|
|
|
|
# Targets for repository and documentation maintenance
|
2015-04-05 22:16:17 +02:00
|
|
|
##
|
|
|
|
|
|
|
|
### remove all unversioned files
|
2015-03-07 14:50:31 +01:00
|
|
|
clean:
|
2015-07-18 11:56:41 +02:00
|
|
|
@git clean -df
|
2015-11-24 02:52:22 +01:00
|
|
|
@rm -rf sandbox
|
2015-03-07 14:50:31 +01:00
|
|
|
|
2017-01-06 18:34:36 +01:00
|
|
|
### generate the AUTHORS file from Git commit information
|
|
|
|
authors:
|
|
|
|
@cp .github/mailmap .mailmap
|
|
|
|
@git shortlog -sne > AUTHORS
|
|
|
|
@rm .mailmap
|
|
|
|
|
2015-07-13 17:53:36 +02:00
|
|
|
### generate Doxygen documentation
|
|
|
|
doxygen: clean
|
|
|
|
@rm -rf doxygen
|
2018-02-23 00:37:03 +01:00
|
|
|
@doxygen Doxyfile
|
2015-07-13 17:53:36 +02:00
|
|
|
|
2017-08-29 19:46:23 +02:00
|
|
|
### generate HTML documentation from Markdown pages with MkDocs
|
|
|
|
htmldoc:
|
2017-01-26 18:52:54 +01:00
|
|
|
python3 -m venv venv/
|
|
|
|
bash -c 'source venv/bin/activate; \
|
|
|
|
pip install mkdocs; \
|
2018-06-26 22:20:29 +02:00
|
|
|
mkdocs build --clean'
|
2017-01-26 18:52:54 +01:00
|
|
|
find doc/html/ -type f -exec chmod a-x '{}' \;
|
|
|
|
rm -r venv
|
2017-05-20 15:53:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
### Generate Shaarli's translation compiled file (.mo)
|
|
|
|
translate:
|
2018-02-23 00:37:03 +01:00
|
|
|
@find inc/languages/ -name shaarli.po -execdir msgfmt shaarli.po -o shaarli.mo \;
|
2018-02-24 18:37:57 +01:00
|
|
|
|
|
|
|
### Run ESLint check against Shaarli's JS files
|
|
|
|
eslint:
|
2018-05-10 13:29:47 +02:00
|
|
|
@yarn run eslint -c .dev/.eslintrc.js assets/vintage/js/
|
|
|
|
@yarn run eslint -c .dev/.eslintrc.js assets/default/js/
|
|
|
|
|
|
|
|
### Run CSSLint check against Shaarli's SCSS files
|
|
|
|
sasslint:
|
|
|
|
@yarn run sass-lint -c .dev/.sasslintrc 'assets/default/scss/*.scss' -v -q
|