1 # The personal, minimalist, super-fast, database free, bookmarking service.
2 # Makefile for PHP code analysis & testing, documentation and release generation
5 # - install Composer, either:
6 # - from your distro's package manager;
7 # - from the official website (https://getcomposer.org/download/);
8 # - install/update test dependencies:
9 # $ composer install # 1st setup
11 # - install Xdebug for PHPUnit code coverage reports:
12 # - see http://xdebug.org/docs/install
16 PHP_SOURCE = index.php application tests plugins
17 PHP_COMMA_SOURCE = index.php,application,tests,plugins
19 all: static_analysis_summary check_permissions test
22 # Concise status of the project
23 # These targets are non-blocking: || exit 0
26 static_analysis_summary: code_sniffer_source copy_paste mess_detector_summary
31 # Detects PHP syntax errors
32 # Documentation (usage, output formatting):
33 # - http://pear.php.net/manual/en/package.php.php-codesniffer.usage.php
34 # - http://pear.php.net/manual/en/package.php.php-codesniffer.reporting.php
37 code_sniffer: code_sniffer_full
39 ### - errors filtered by coding standard: PEAR, PSR1, PSR2, Zend...
41 @$(BIN)/phpcs $(PHP_SOURCE) --report-full --report-width=200 --standard=$*
43 ### - errors by Git author
45 @$(BIN)/phpcs $(PHP_SOURCE) --report-gitblame
47 ### - all errors/warnings
49 @$(BIN)/phpcs $(PHP_SOURCE) --report-full --report-width=200
51 ### - errors grouped by kind
53 @$(BIN)/phpcs $(PHP_SOURCE) --report-source || exit 0
56 # PHP Copy/Paste Detector
57 # Detects code redundancy
58 # Documentation: https://github.com/sebastianbergmann/phpcpd
62 @echo "-----------------------"
63 @echo "PHP COPY/PASTE DETECTOR"
64 @echo "-----------------------"
65 @$(BIN)/phpcpd $(PHP_SOURCE) || exit 0
70 # Detects PHP syntax errors, sorted by category
71 # Rules documentation: http://phpmd.org/rules/index.html
73 MESS_DETECTOR_RULES = cleancode,codesize,controversial,design,naming,unusedcode
76 @echo "-----------------"
77 @echo "PHP MESS DETECTOR"
78 @echo "-----------------"
81 mess_detector: mess_title
82 @$(BIN)/phpmd $(PHP_COMMA_SOURCE) text $(MESS_DETECTOR_RULES) | sed 's_.*\/__'
84 ### - all warnings + HTML output contains links to PHPMD's documentation
86 @$(BIN)/phpmd $(PHP_COMMA_SOURCE) html $(MESS_DETECTOR_RULES) \
87 --reportfile phpmd.html || exit 0
89 ### - warnings grouped by message, sorted by descending frequency order
90 mess_detector_grouped: mess_title
91 @$(BIN)/phpmd $(PHP_SOURCE) text $(MESS_DETECTOR_RULES) \
92 | cut -f 2 | sort | uniq -c | sort -nr
94 ### - summary: number of warnings by rule set
95 mess_detector_summary: mess_title
96 @for rule in $$(echo $(MESS_DETECTOR_RULES) | tr ',' ' '); do \
97 warnings=$$($(BIN)/phpmd $(PHP_COMMA_SOURCE) text $$rule | wc -l); \
98 printf "$$warnings\t$$rule\n"; \
102 # Checks source file & script permissions
105 @echo "----------------------"
106 @echo "Check file permissions"
107 @echo "----------------------"
108 @for file in `git ls-files`; do \
109 if [ -x $$file ]; then \
111 echo "$${file} is executable"; \
113 done; [ -z $$errors ] || false
117 # Runs unitary and functional tests
118 # Generates an HTML coverage report if Xdebug is enabled
120 # See phpunit.xml for configuration
121 # https://phpunit.de/manual/current/en/appendixes.configuration.html
127 @mkdir -p sandbox coverage
128 @$(BIN)/phpunit --coverage-php coverage/main.cov --testsuite unit-tests
133 --coverage-php coverage/$(firstword $(subst _, ,$*)).cov \
134 --bootstrap tests/languages/bootstrap.php \
135 --testsuite language-$(firstword $(subst _, ,$*))
137 all_tests: test locale_test_de_DE locale_test_en_US locale_test_fr_FR
138 @$(BIN)/phpcov merge --html coverage coverage
139 @# --text doesn't work with phpunit 4.* (v5 requires PHP 5.6)
140 @#$(BIN)/phpcov merge --text coverage/txt coverage
143 # Custom release archive generation
145 # For each tagged revision, GitHub provides tar and zip archives that correspond
146 # to the output of git-archive
148 # These targets produce similar archives, featuring 3rd-party dependencies
149 # to ease deployment on shared hosting.
151 ARCHIVE_VERSION := shaarli-$$(git describe)-full
152 ARCHIVE_PREFIX=Shaarli/
154 release_archive: release_tar release_zip
156 ### download 3rd-party PHP libraries
157 composer_dependencies: clean
158 composer install --no-dev --prefer-dist
159 find vendor/ -name ".git" -type d -exec rm -rf {} +
161 ### generate a release tarball and include 3rd-party dependencies
162 release_tar: composer_dependencies doc_html
163 git archive --prefix=$(ARCHIVE_PREFIX) -o $(ARCHIVE_VERSION).tar HEAD
164 tar rvf $(ARCHIVE_VERSION).tar --transform "s|^vendor|$(ARCHIVE_PREFIX)vendor|" vendor/
165 tar rvf $(ARCHIVE_VERSION).tar --transform "s|^doc/html|$(ARCHIVE_PREFIX)doc/html|" doc/html/
166 gzip $(ARCHIVE_VERSION).tar
168 ### generate a release zip and include 3rd-party dependencies
169 release_zip: composer_dependencies doc_html
170 git archive --prefix=$(ARCHIVE_PREFIX) -o $(ARCHIVE_VERSION).zip -9 HEAD
171 mkdir -p $(ARCHIVE_PREFIX)/{doc,vendor}
172 rsync -a doc/html/ $(ARCHIVE_PREFIX)doc/html/
173 zip -r $(ARCHIVE_VERSION).zip $(ARCHIVE_PREFIX)doc/
174 rsync -a vendor/ $(ARCHIVE_PREFIX)vendor/
175 zip -r $(ARCHIVE_VERSION).zip $(ARCHIVE_PREFIX)vendor/
176 rm -rf $(ARCHIVE_PREFIX)
179 # Targets for repository and documentation maintenance
182 ### remove all unversioned files
187 ### generate the AUTHORS file from Git commit information
189 @cp .github/mailmap .mailmap
190 @git shortlog -sne > AUTHORS
193 ### generate Doxygen documentation
196 @( cat Doxyfile ; echo "PROJECT_NUMBER=`git describe`" ) | doxygen -
198 ### Convert local markdown documentation to HTML
201 # - convert GitHub-flavoured relative links to standard Markdown
202 # - generate html documentation with mkdocs
204 python3 -m venv venv/
205 bash -c 'source venv/bin/activate; \
206 pip install mkdocs; \
208 find doc/html/ -type f -exec chmod a-x '{}' \;
211 doc_html: authors htmlpages