Skip to content

Commit b9d2afb

Browse files
authored
GLPI 10 compat
Rename, fix tests, CS and so on.
1 parent d18957d commit b9d2afb

File tree

358 files changed

+14962
-329009
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

358 files changed

+14962
-329009
lines changed

.coveralls.yml

-6
This file was deleted.

.github/workflows/tests.yml

+73-33
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,18 @@ on: [push, pull_request]
88
jobs:
99

1010
lint:
11+
#runs-on: "${{ github.repository == 'glpi-network/glpi-inventory-plugin' && 'self-hosted' || 'ubuntu-latest' }}"
1112
runs-on: ubuntu-latest
1213
strategy:
1314
matrix:
14-
php-versions: ['7.3', '7.4', '8.0']
15+
php-versions: ['7.4', '8.0']
1516
name: lint (${{ matrix.php-versions }})
1617
env:
1718
extensions: zip
18-
key: cache-v1
19+
key: cache-v1
1920
steps:
21+
- name: Change dir owner to working user
22+
run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE
2023
- uses: actions/checkout@v1
2124
- name: Setup cache environment
2225
id: extcache
@@ -35,6 +38,9 @@ jobs:
3538

3639
- name: Setup PHP
3740
uses: shivammathur/setup-php@v2
41+
env:
42+
#runner: "${{ github.repository == 'glpi-network/glpi-inventory-plugin' && 'self-hosted' || 'ubuntu-latest' }}"
43+
runner: ubuntu-latest
3844
with:
3945
php-version: ${{ matrix.php-versions }}
4046
extensions: ${{ env.extensions }}
@@ -43,26 +49,51 @@ jobs:
4349
uses: actions/cache@v2
4450
with:
4551
path: /tmp/composer-cache
46-
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
47-
- uses: php-actions/composer@v5
48-
with:
49-
php_version: 7.4
50-
- name: Lint
51-
run: php vendor/bin/robo --no-interaction code:cs
52+
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
53+
- name: Install dependencies
54+
run: composer install
55+
- name: Check for coding standards violations
56+
run: |
57+
vendor/bin/phpcs -d memory_limit=512M -p --extensions=php --standard=vendor/glpi-project/coding-standard/GlpiStandard/ --ignore="/.git/,/lib/,/vendor/" .
5258
5359
phpunit:
60+
#runs-on: "${{ github.repository == 'glpi-network/glpi-inventory-plugin' && 'self-hosted' || 'ubuntu-latest' }}"
5461
runs-on: ubuntu-latest
5562
strategy:
5663
matrix:
57-
php-versions: ['7.3', '7.4', '8.0']
58-
name: phpunit (${{ matrix.php-versions }})
64+
php-versions: ['7.4', '8.0']
65+
db-image: ['mysql:5.7', 'mysql:8.0', 'mariadb:10.2', 'mariadb:10.6']
66+
name: Unit tests ${{ matrix.php-versions }} ${{ matrix.db-image }}
5967
env:
6068
extensions: zip, hash, fileinfo, mysqli, gd, bz2, xdebug
6169
key: cache-v1
70+
DB: ${{ matrix.db-image }}
71+
72+
services:
73+
# Label used to access the service container
74+
db:
75+
# Docker Hub image
76+
image: ${{ matrix.db-image }}
77+
# Provide env variables for both mysql and pgsql
78+
env:
79+
MYSQL_USER: glpiinventory
80+
MYSQL_PASSWORD: glpi1iventory
81+
MYSQL_ROOT_PASSWORD: glpi1iventory
82+
MYSQL_DATABASE: glpi
83+
# Open network ports
84+
ports:
85+
- 3306:3306
86+
# Set health checks to wait until postgres has started
87+
options: >-
88+
--health-cmd="bash -c 'mysqladmin ping'"
89+
--health-interval=10s
90+
--health-timeout=5s
91+
--health-retries=10
6292
steps:
63-
- uses: ankane/setup-mariadb@v1
64-
with:
65-
mariadb-version: 10.5
93+
- name: Install gettext, npm and mysql-client
94+
run: sudo apt-get install --assume-yes --no-install-recommends --quiet gettext npm mysql-client
95+
- name: Change dir owner to working user
96+
run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE
6697
- uses: actions/checkout@v1
6798
- name: Setup cache environment
6899
id: extcache
@@ -81,33 +112,42 @@ jobs:
81112

82113
- name: Setup PHP
83114
uses: shivammathur/setup-php@v2
115+
env:
116+
#runner: "${{ github.repository == 'glpi-network/glpi-inventory-plugin' && 'self-hosted' || 'ubuntu-latest' }}"
117+
runner: ubuntu-latest
84118
with:
85119
php-version: ${{ matrix.php-versions }}
86120
extensions: ${{ env.extensions }}
87-
88121
- name: Cache Composer dependencies
89122
uses: actions/cache@v2
90123
with:
91124
path: /tmp/composer-cache
92-
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
93-
- uses: php-actions/composer@v5
125+
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
126+
- name: Install dependencies
127+
run: composer install
128+
- name: Checkout GLPI
129+
uses: actions/checkout@v2
94130
with:
95-
php_version: 7.4
96-
- name: Get GLPI
97-
run: wget https://github.com/glpi-project/glpi/releases/download/9.5.3/glpi-9.5.3.tgz
98-
- name: Uncompress GLPI
99-
run: tar zxvf glpi-9.5.3.tgz
100-
- name: Copy Plugin FusionInventory
101-
run: rsync -avr --exclude='glpi' ./* glpi/plugins/fusioninventory/
102-
- name: Create the database
103-
run: mysqladmin create glpi
104-
- name: Check php dependencies
105-
run: cd glpi && php bin/console glpi:system:check_requirements
131+
repository: glpi-project/glpi
132+
path: glpi
133+
fetch-depth: 1
134+
ref: master
135+
- name: Copy plugin
136+
run: rsync -avr --exclude='glpi' ./* glpi/plugins/glpiinventory/
137+
- name: Install dependencies
138+
run: |
139+
cd glpi
140+
php bin/console dependencies install
141+
php bin/console locales:compile
142+
143+
- name: Init database
144+
run: |
145+
mysql -e 'create database IF NOT EXISTS glpi;' -u root --password=glpi1iventory -h 127.0.0.1 -P 3306
106146
- name: Install GLPI
107-
run: cd glpi && mkdir tests && php bin/console glpi:database:install -n --config-dir=tests --db-name=glpi --db-user=root
108-
- name: Install plugin FusionInventory
109-
run: cd glpi && php bin/console glpi:plugin:install -vvv -n --config-dir=tests --username=glpi fusioninventory
110-
- name: Activate plugin FusionInventory
111-
run: cd glpi && php bin/console glpi:plugin:activate -n --config-dir=tests fusioninventory
147+
run: cd glpi && php bin/console glpi:database:install -n --ansi --config-dir=tests/config --db-host=127.0.0.1 --db-name=glpi --db-user=root --db-password=glpi1iventory --db-port=3306
148+
- name: Install plugin
149+
run: cd glpi && php bin/console glpi:plugin:install -vvv -n --ansi --config-dir=tests/config --username=glpi glpiinventory
150+
- name: Activate plugin
151+
run: cd glpi && php bin/console glpi:plugin:activate -n --ansi --config-dir=tests/config glpiinventory
112152
- name: run tests
113-
run: cd glpi/plugins/fusioninventory/ && php vendor/bin/phpunit --testdox tests/
153+
run: cd glpi/plugins/glpiinventory/ && php vendor/bin/phpunit --testdox --colors=always tests/

.tx/config

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[main]
22
host = https://www.transifex.com
33

4-
[FusionInventory.plugin-fusioninventory-93]
4+
[GLPI.GLPIINventoryPlugin.glpipot10]
55
file_filter = locales/<lang>.po
6-
source_file = locales/fusioninventory.pot
7-
source_lang = en
8-
type = PO
6+
source_file = locales/glpiinventory.pot
7+
source_lang = en_GB
98
minimum_perc: 100

README.md

+5-12
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
1-
## Fusioninventory Plugin
2-
[![Build Status](https://travis-ci.org/fusioninventory/fusioninventory-for-glpi.svg?branch=master)](https://travis-ci.org/fusioninventory/fusioninventory-for-glpi)
3-
[![Coverage Status](https://coveralls.io/repos/fusioninventory/fusioninventory-for-glpi/badge.svg)](https://coveralls.io/r/fusioninventory/fusioninventory-for-glpi)
4-
(![GitHub downloads](https://img.shields.io/github/downloads/fusioninventory/fusioninventory-for-glpi/total.svg) + ![Redmine downloads](https://img.shields.io/badge/downloads%20redmine-218k%20total-brightgreen.svg))
1+
## GLPI Inventory Plugin
52

6-
This plugin makes GLPI to process various types of tasks for Fusioninventory agents:
3+
This plugin makes GLPI to process various types of tasks for GLPI agents:
74
* Computer inventory
85
* Network discovery
96
* Network (SNMP) inventory
107
* Software deployment
118
* VMWare ESX host remote inventory
129
* Collect data (files, Windows registry, WMI)
1310

14-
## Third-party code
15-
16-
* PluginFusioninventoryFindFiles() is copyright [rosettacode.org](http://rosettacode.org/wiki/Walk_a_directory/Recursively#PHP) and made available under GNU Free Documentation License.
17-
1811
## Third-party icons and images
1912

2013
Some icons used in the project comes from the following set of graphics licensed:
@@ -34,6 +27,6 @@ Some icons used in the project comes from the following set of graphics licensed
3427

3528
## Additional resources
3629

37-
* [Official website](http://fusioninventory.org/)
38-
* [Translations on transifex service](https://www.transifex.com/ddurieux/FusionInventory/content/)
39-
* [Issues](https://github.com/fusioninventory/fusioninventory-for-glpi)
30+
* [Official website](http://glpi-project.org/)
31+
* [Translations on transifex service](https://www.transifex.com/glpi/glpi-inventory-plugin/)
32+
* [Issues](https://github.com/glpi-project/glpi-inventory-plugin)

README.tests.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
# How to run tests
22

3-
4-
## Install GLPI tests
3+
## Install GLPI and plugin
54

65
```
76
cd glpi/
8-
php bin/console glpi:database:install --config-dir=tests --force
9-
php bin/console glpi:plugin:install --config-dir=tests --username=glpi fusioninventory
10-
php bin/console glpi:plugin:activate --config-dir=tests fusioninventory
7+
php bin/console glpi:database:install --config-dir=tests/config --force
8+
php bin/console glpi:plugin:install --config-dir=tests/config --username=glpi glpiinventory
9+
php bin/console glpi:plugin:activate --config-dir=tests/config glpiinventory
1110
```
1211

13-
## Run FusionInventory tests
12+
## Run plugin tests
1413

1514
```
16-
cd plugins/fusioninventory/
15+
cd plugins/glpiinventory/
1716
php vendor/bin/phpunit --testdox tests/
1817
```

RoboFile.php

-14
This file was deleted.

ajax/cancel_job.php

+32-42
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,33 @@
11
<?php
2-
3-
/*
4-
------------------------------------------------------------------------
5-
FusionInventory
6-
Copyright (C) 2010-2011 by the FusionInventory Development Team.
7-
8-
http://www.fusioninventory.org/ http://forge.fusioninventory.org/
9-
------------------------------------------------------------------------
10-
11-
LICENSE
12-
13-
This file is part of FusionInventory project.
14-
15-
FusionInventory is free software: you can redistribute it and/or modify
16-
it under the terms of the GNU Affero General Public License as published by
17-
the Free Software Foundation, either version 3 of the License, or
18-
(at your option) any later version.
19-
20-
FusionInventory is distributed in the hope that it will be useful,
21-
but WITHOUT ANY WARRANTY; without even the implied warranty of
22-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23-
GNU Affero General Public License for more details.
24-
25-
You should have received a copy of the GNU Affero General Public License
26-
along with FusionInventory. If not, see <http://www.gnu.org/licenses/>.
27-
28-
------------------------------------------------------------------------
29-
30-
@package FusionInventory
31-
@author Walid Nouh
32-
@co-author
33-
@copyright Copyright (c) 2010-2011 FusionInventory team
34-
@license AGPL License 3.0 or (at your option) any later version
35-
http://www.gnu.org/licenses/agpl-3.0-standalone.html
36-
@link http://www.fusioninventory.org/
37-
@link http://forge.fusioninventory.org/projects/fusioninventory-for-glpi/
38-
@since 2010
39-
40-
------------------------------------------------------------------------
2+
/**
3+
* ---------------------------------------------------------------------
4+
* GLPI Inventory Plugin
5+
* Copyright (C) 2021 Teclib' and contributors.
6+
*
7+
* http://glpi-project.org
8+
*
9+
* based on FusionInventory for GLPI
10+
* Copyright (C) 2010-2021 by the FusionInventory Development Team.
11+
*
12+
* ---------------------------------------------------------------------
13+
*
14+
* LICENSE
15+
*
16+
* This file is part of GLPI Inventory Plugin.
17+
*
18+
* GLPI Inventory Plugin is free software: you can redistribute it and/or modify
19+
* it under the terms of the GNU Affero General Public License as published by
20+
* the Free Software Foundation, either version 3 of the License, or
21+
* (at your option) any later version.
22+
*
23+
* GLPI Inventoruy Plugin is distributed in the hope that it will be useful,
24+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
25+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26+
* GNU Affero General Public License for more details.
27+
*
28+
* You should have received a copy of the GNU Affero General Public License
29+
* along with GLPI Inventory Plugin. If not, see <https://www.gnu.org/licenses/>.
30+
* ---------------------------------------------------------------------
4131
*/
4232

4333
include ("../../../inc/includes.php");
@@ -47,9 +37,9 @@
4737
Html::header_nocache();
4838

4939
if (isset($_REQUEST['jobstate_id'])) {
50-
$jobstate = new PluginFusioninventoryTaskjobstate();
40+
$jobstate = new PluginGlpiinventoryTaskjobstate();
5141
$jobstate->getFromDB($_REQUEST['jobstate_id']);
5242

53-
$job = new PluginFusioninventoryTaskjob();
54-
$job->delete(['id' => $jobstate->fields['plugin_fusioninventory_taskjobs_id']], true);
43+
$job = new PluginGlpiinventoryTaskjob();
44+
$job->delete(['id' => $jobstate->fields['plugin_glpiinventory_taskjobs_id']], true);
5545
}

0 commit comments

Comments
 (0)