Empty¶
Download |
Sources |
---|---|
not relevant |
This plugins does⊠nothing. Really!
This is designed to be a start point for writing plugins, with very minimal defaults usefull scripts, and some advices. If youâre looking for plugins possibilities, take a look at the example plugin.
Create a new plugin¶
An utility script to create a new plugin - plugin.sh
is provided. You will call it with a plugin name, a version, an optionally the path where your want it to be created:
$ ./plugin.sh MyGreatPlugin 0.0.1
The script will sanityze and lowercase the name you provided, copy the templates files into the new directory, and then make some replacements.
Using the script without destination parameter, it will create you directory plugin, mygreatplugin
just beside its own directory. Otherwise, it would create the new directory in the specified path:
$ ./plugin.sh MyGreatPlugin 0.0.1 /path/to/glpi/plugins/
Update existing plugin¶
There is no automated way to update an existing plugin, because there would be too many cases to handle. But donât worry, procedure is quite simple ;)
Using empty features is as simple as creating a few files:
composer.json
,.travis.yml
,Robofile.php
,.gitignore
.
If you do not have yet any composer or travis configuration file, you can just copy the ones from empty plugin. Otherwise; in you composer.json
, just add:
{
"minimum-stability": "dev",
"prefer-stable": true
}
And then run composer require glpi-project/tools
.
In the travis configuration file, just add the CS call:
script:
- vendor/bin/robo --no-interaction code:cs
In the .gitignore
file, add the following:
dist/
vendor/
.gh_token
*.min.*
As for the Robo.li configuration file, note that the one embed in the empty plugin is a bit specific, youâll have to edit it in order to get things working. See below for more informations.
Finally, as the tools
project will provide you some features, you can remove duplicated tools scripts (files such as release
, extract_template.sh
, âŠ) that would be present in your plugin.
Features¶
Coding standards¶
The GLPI PHPCodeSniffer rulesets are provided as vendor/glpi-project/coding-standard/GlpiStandard/
.
To check coding standards, just use the Robo.li task code:cs
:
$ ./vendor/bin/robo code:cs
Nota
The above command will ignore vendor
and run on the current directory.
If you want to adapt ignore list or checked directories, you can just override $csignore
and/or $csfiles
in the RoboFile.php
of the plugin:
<?php
class RoboFile extends Glpi\Tools\RoboFile
{
protected $csignore = ['/vendor/', '/lib/'];
protected $csfiles = ['./', 'setup.php.tpl']
[...]
}
Automated checks¶
For convenience; a .travis.yml
file is also provided, that is setup to:
check coding standards,
run on a bunch on different configuration
You still have to enable travis-ci builds from the website in order to activate automated tests.
Of course, the .travis.yml
file can be pimped; you can run unit tests, create/update a database, activate notifications, and so on. Refer to the Travis-CI documentation to know more.
Minifying CSS and JS¶
Avvertimento
Disabled as of 0.1.13, because libs used from Robo are out of date and connot be replaced.
A convenient script, using Robo.li is provided. The RoboFile.php
file is an empty class that extends Glpi\Tools\RoboFile
(provided by glpi-project/tools
dependency) in which you can set your own stuff.
That way, you can quite easily update the common file and get your own tasks remaining the same.
To get the required libs installed, youâll have to get composer installed and then run:
$ composer install -o
There are three available targets:
minify
that will minify all CSS and JS files (see below),minify:css
that will minify all css stylesheets files in thecss
directory of your plugin, creating a.min.css
version along with the original file,minify:js
that will minify all javascript files in thejs
directory of your plugin, creating a.min.js
version along with the original file.
Just choose a target, and run something like:
$ ./vendor/bin/robo minify:css
Nota
Remember compiled files should not be commited on your repository sources. It is a release process to minify files.
Also remember to adapt your scripts so they load your minified versions if available, and the original one otherwise :)
As of GLPI 9.2; you do not have to care about loading minified files when using add_css
and add_javascript
hooks! You just need to call not minified script; and GLPI will use the minified version if it exists and if not in DEBUG mode.
Translations¶
GLPI and its plugins use gettext for internationnalization. Several steps are required before that can work:
1 translatable strings must be extracted from source files, a POT
file will be created or updated accordingly,
2 PO
files must be created or updated from the POT
file,
3 PO
files must be translated,
4 MO
files must be compiled from the latest PO
.
In the vendor/bin
directory, youâll find a extract_template.sh
script. This is designed to extract translatable strings from your source code (see first point above).
Once it has been ran, a locale/mygreatplugin.pot
file will be created/updated.
For the second and third step, youâll have to make a choice. You can use gettext tools to update your PO
files and translate them using a dedicated tool, like poedit; or you can use an online translation system like Transifex or Zanata. GLPI core and many of existing plugins are translated using Transifex right now.
Once you get your updated PO
files, youâll have to compile them to MO
files. You can run it manually, the release script will compile them again anywways; see the compiling MO files section.
Release script¶
A release script is provided in vendor/bin/plugin-release
. This is a «simple» Python script; you should just have Python installed on your system (this is installed by default on most linux distributions).
Avvertimento
Note that the release script is only compatible if you use semantic versionning!
Using just the defaults, the script will try to retrieve the latest tag in your git repository, add third party dependencies and create a Release on the github project:
$ ./vendor/bin/plugin-release
Do you want to build version 1.9.5? [Yes/no] y
Building glpi-order-1.9.5...
Archiving GIT tag 1.9.5
Adding vendor libraries
$ ls dist
glpi-order-1.9.5.tar.bz2 glpi-order-1.9.5.tar.bz2.asc
Requirements¶
You will need a python interpreter installed as well as the following modules:
github (to check for existing versions in also in drafts, and to create github releases), unless you use the
--nogithub
option
If you want to get help on the script, try to run ./vendor/bin/plugin-release -h
.
Process¶
The release process will achieve the following tasks for you:
check if the version constant is the same as the tag youâve requested;
check if the version in the website XML file is the same as the tag youâve requested;
check if a release already exists, locally, and remotely (assuming your project is hosted in the pluginsGLPI organization and the release is public);
make a git archive of the paths that are not excluded (
.git
,tools
,tests
, âŠ);if any, install composer dependencies;
if any, compile you
MO
files;if any, compile you CSS stylesheets and your Javascript files (using Robo.li);
create a release archive with all that; that will be available in the
dist
directory;use GPG to sign the archive.
Nota
The standard release process will not work on your files directly, it will make a copy in the dist/src
directory before. The only exception is the MO compiling option.
In order to check if all is OK before doing real release; create your tag and run ./vendor/bin/plugin-release -C
before pushing your tag. That way, youâll be able to fix potential issues and re-create your tag locally (remember published tags should never be removed).
Compiling MO files¶
The release process will automatically compile every PO
file it will found in your locales
directory. But you probably want the sources to contain the latests MO
files, for testing purposes. The release script provide the --compile-mo
(or -m
) to achieve that:
$ ./vendor/bin/plugin-release --compile-mo
Avvertimento
The above command will work on your plugins files directly; not on a copy as does other commands.
Pre-releases¶
Per default, the release script will work only on existing tags. Any pre-release should have its own tag; but you may want to create a release archive without any tags in some circumstances.
In order to tell the release script what it should archive, youâll have to specify several parameters:
--commit
(or-c
) giving the commit hash,--release
(or-r
) giving the release version (usually, it will be the next release version),--extra
(or-e
) to specify an extra string (such as alpha, beta, rc1, etcâŠ)
As an example with the order plugin:
$ ./vendor/bin/plugin-release --commit 632d515d4ac0 --release 1.9.5 --extra alpha1
$ ls dist
glpi-order-1.9.5-alpha1-20161103-632d515d4a.tar.bz2
Signing releases¶
Signing releases with a GPG key would permit users to check download integrity before installing. Youâll need a GPG key publically available to users; the sign option is activated per default, you can deactivate using the --nosign
(or -S
) option.
A file containing the signature with the same name as the archive with a .asc
extension will be created in the dist
directory.
GitHub release¶
The release script will create a release on your GitHub repository, as a draft, unless you use --nogithub
(or -g
) option.
Nota
Unfortunately, I was not able to get the newly created archive uploaded to this new release⊠Maybe that could be fixed in the future.
In order to use this feature, you will need the github installed; and you will need an access token. Access token is valid per user, and gives accesss to all his repositories.
Youâll have to go to your github account settings page, in the personnal access token tab. Click on generate new token, give the description you want, and make sure youâll check the public_repo box only (no need to check anything else, you can create several access token if you need).
The token will be displayed only once; store it in the .gh_token
file in your plugin directory; and thatâs all!
Excluding files¶
You can create a .ignore-release
file at the root of your plugin and list here files and directories you want to explicitely exclude from the release archive. Write one expression per line
.+\.png
screenshots/
Some files will automatically be excluded:
.git*,
.gh_token
.tx/
tools/
tests/
.atoum.php
.travis.yml
.circleci/
.ignore-release
composer.lock
Robofile.php