VersionChecks   A
last analyzed

Complexity

Total Complexity 20

Size/Duplication

Total Lines 126
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 67
dl 0
loc 126
rs 10
c 0
b 0
f 0
wmc 20

3 Methods

Rating   Name   Duplication   Size   Complexity  
A checkVerXoops() 0 23 4
A checkVerPhp() 0 24 5
B checkVerModule() 0 52 11
1
<?php declare(strict_types=1);
2
3
namespace XoopsModules\Myiframe\Common;
4
5
/*
6
 You may not change or alter any portion of this comment or credits
7
 of supporting developers from this source code or any supporting source code
8
 which is considered copyrighted (c) material of the original comment or credit authors.
9
10
 This program is distributed in the hope that it will be useful,
11
 but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
 */
14
15
/**
16
 * @copyright   XOOPS Project (https://xoops.org)
17
 * @license     https://www.fsf.org/copyleft/gpl.html GNU public license
18
 * @author      mamba <[email protected]>
19
 */
20
trait VersionChecks
21
{
22
    /**
23
     * Verifies XOOPS version meets minimum requirements for this module
24
     * @static
25
     * @param \XoopsModule|null $module
26
     *
27
     * @param null|string       $requiredVer
28
     * @return bool true if meets requirements, false if not
29
     */
30
    public static function checkVerXoops(\XoopsModule $module = null, $requiredVer = null): bool
31
    {
32
        $moduleDirName      = \basename(\dirname(__DIR__, 2));
33
        $moduleDirNameUpper = \mb_strtoupper($moduleDirName);
34
        if (null === $module) {
35
            $module = \XoopsModule::getByDirname($moduleDirName);
36
        }
37
        \xoops_loadLanguage('admin', $moduleDirName);
38
        \xoops_loadLanguage('common', $moduleDirName);
39
40
        //check for minimum XOOPS version
41
        $currentVer = mb_substr(\XOOPS_VERSION, 6); // get the numeric part of string
42
        if (null === $requiredVer) {
43
            $requiredVer = '' . $module->getInfo('min_xoops'); //making sure it's a string
0 ignored issues
show
Bug introduced by
Are you sure $module->getInfo('min_xoops') of type array|string can be used in concatenation? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

43
            $requiredVer = '' . /** @scrutinizer ignore-type */ $module->getInfo('min_xoops'); //making sure it's a string
Loading history...
44
        }
45
        $success = true;
46
47
        if (\version_compare($currentVer, $requiredVer, '<')) {
48
            $success = false;
49
            $module->setErrors(\sprintf(\constant('CO_' . $moduleDirNameUpper . '_ERROR_BAD_XOOPS'), $requiredVer, $currentVer));
50
        }
51
52
        return $success;
53
    }
54
55
    /**
56
     * Verifies PHP version meets minimum requirements for this module
57
     * @static
58
     * @param \XoopsModule|bool|null $module
59
     *
60
     * @return bool true if meets requirements, false if not
61
     */
62
    public static function checkVerPhp(\XoopsModule $module = null): bool
63
    {
64
        $moduleDirName      = \basename(\dirname(__DIR__, 2));
65
        $moduleDirNameUpper = \mb_strtoupper($moduleDirName);
66
        if (null === $module) {
67
            $module = \XoopsModule::getByDirname($moduleDirName);
68
        }
69
        \xoops_loadLanguage('admin', $moduleDirName);
70
        \xoops_loadLanguage('common', $moduleDirName);
71
72
        // check for minimum PHP version
73
        $success = true;
74
75
        $verNum = \PHP_VERSION;
76
        $reqVer = &$module->getInfo('min_php');
77
78
        if (false !== $reqVer && '' !== $reqVer) {
79
            if (\version_compare($verNum, $reqVer, '<')) {
0 ignored issues
show
Bug introduced by
It seems like $reqVer can also be of type array; however, parameter $version2 of version_compare() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

79
            if (\version_compare($verNum, /** @scrutinizer ignore-type */ $reqVer, '<')) {
Loading history...
80
                $module->setErrors(\sprintf(\constant('CO_' . $moduleDirNameUpper . '_ERROR_BAD_PHP'), $reqVer, $verNum));
0 ignored issues
show
Bug introduced by
It seems like $reqVer can also be of type array; however, parameter $values of sprintf() does only seem to accept double|integer|string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

80
                $module->setErrors(\sprintf(\constant('CO_' . $moduleDirNameUpper . '_ERROR_BAD_PHP'), /** @scrutinizer ignore-type */ $reqVer, $verNum));
Loading history...
81
                $success = false;
82
            }
83
        }
84
85
        return $success;
86
    }
87
88
    /**
89
     * compares current module version with the latest GitHub release
90
     * @static
91
     *
92
     * @return string|array info about the latest module version, if newer
93
     */
94
    public static function checkVerModule(\Xmf\Module\Helper $helper, ?string $source = 'github', ?string $default = 'master'): ?array
95
    {
96
        $moduleDirName      = \basename(\dirname(__DIR__, 2));
97
        $moduleDirNameUpper = \mb_strtoupper($moduleDirName);
98
        $update             = '';
99
        $repository         = 'XoopsModules25x/' . $moduleDirName;
100
        //        $repository         = 'XoopsModules25x/publisher'; //for testing only
101
        $ret             = null;
102
        $infoReleasesUrl = "https://api.github.com/repos/$repository/releases";
103
        if ('github' === $source) {
104
            if (\function_exists('curl_init') && false !== ($curlHandle = \curl_init())) {
105
                \curl_setopt($curlHandle, \CURLOPT_URL, $infoReleasesUrl);
106
                \curl_setopt($curlHandle, \CURLOPT_RETURNTRANSFER, true);
107
                \curl_setopt($curlHandle, \CURLOPT_SSL_VERIFYPEER, true); //TODO: how to avoid an error when 'Peer's Certificate issuer is not recognized'
108
                \curl_setopt($curlHandle, \CURLOPT_HTTPHEADER, ["User-Agent:Publisher\r\n"]);
109
                $curlReturn = \curl_exec($curlHandle);
110
                if (false === $curlReturn) {
111
                    \trigger_error(\curl_error($curlHandle));
112
                } elseif (false !== \mb_strpos($curlReturn, 'Not Found')) {
0 ignored issues
show
Bug introduced by
It seems like $curlReturn can also be of type true; however, parameter $haystack of mb_strpos() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

112
                } elseif (false !== \mb_strpos(/** @scrutinizer ignore-type */ $curlReturn, 'Not Found')) {
Loading history...
113
                    \trigger_error('Repository Not Found: ' . $infoReleasesUrl);
114
                } else {
115
                    $file              = json_decode($curlReturn, false);
0 ignored issues
show
Bug introduced by
It seems like $curlReturn can also be of type true; however, parameter $json of json_decode() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

115
                    $file              = json_decode(/** @scrutinizer ignore-type */ $curlReturn, false);
Loading history...
116
                    $latestVersionLink = \sprintf("https://github.com/$repository/archive/%s.zip", $file ? \reset($file)->tag_name : $default);
117
                    $latestVersion     = $file[0]->tag_name;
118
                    $prerelease        = $file[0]->prerelease;
119
                    if ('master' !== $latestVersionLink) {
120
                        $update = \constant('CO_' . $moduleDirNameUpper . '_' . 'NEW_VERSION') . $latestVersion;
121
                    }
122
                    //"PHP-standardized" version
123
                    $latestVersion = \mb_strtolower($latestVersion);
124
                    if (false !== mb_strpos($latestVersion, 'final')) {
125
                        $latestVersion = \str_replace('_', '', \mb_strtolower($latestVersion));
126
                        $latestVersion = \str_replace('final', '', \mb_strtolower($latestVersion));
127
                    }
128
                    $moduleVersion = ($helper->getModule()
0 ignored issues
show
Bug introduced by
Are you sure $helper->getModule()->getInfo('version') of type array|string can be used in concatenation? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

128
                    $moduleVersion = (/** @scrutinizer ignore-type */ $helper->getModule()
Loading history...
129
                                             ->getInfo('version') . '_' . $helper->getModule()
0 ignored issues
show
Bug introduced by
Are you sure $helper->getModule()->getInfo('module_status') of type array|string can be used in concatenation? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

129
                                             ->getInfo('version') . '_' . /** @scrutinizer ignore-type */ $helper->getModule()
Loading history...
130
                                                                                 ->getInfo('module_status'));
131
                    //"PHP-standardized" version
132
                    $moduleVersion = \str_replace(' ', '', \mb_strtolower($moduleVersion));
133
                    //                    $moduleVersion = '1.0'; //for testing only
134
                    //                    $moduleDirName = 'publisher'; //for testing only
135
                    if (!$prerelease && \version_compare($moduleVersion, $latestVersion, '<')) {
136
                        $ret   = [];
137
                        $ret[] = $update;
138
                        $ret[] = $latestVersionLink;
139
                    }
140
                }
141
                \curl_close($curlHandle);
142
            }
143
        }
144
145
        return $ret;
146
    }
147
}
148