weblinks.php ➔ xnewsletter_plugin_getdata_weblinks()   C
last analyzed

Complexity

Conditions 11
Paths 18

Size

Total Lines 58

Duplication

Lines 58
Ratio 100 %

Importance

Changes 0
Metric Value
cc 11
nc 18
nop 4
dl 58
loc 58
rs 6.7696
c 0
b 0
f 0

How to fix   Long Method    Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
/**
3
 * ****************************************************************************
4
 *  - A Project by Developers TEAM For Xoops - ( https://xoops.org )
5
 * ****************************************************************************
6
 *  XNEWSLETTER - MODULE FOR XOOPS
7
 *  Copyright (c) 2007 - 2012
8
 *  Goffy ( wedega.com )
9
 *
10
 *  You may not change or alter any portion of this comment or credits
11
 *  of supporting developers from this source code or any supporting
12
 *  source code which is considered copyrighted (c) material of the
13
 *  original comment or credit authors.
14
 *
15
 *  This program is distributed in the hope that it will be useful,
16
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 *  GNU General Public License for more details.
19
 *  ---------------------------------------------------------------------------
20
 * @copyright  Goffy ( wedega.com )
21
 * @license    GPL 2.0
22
 * @package    xnewsletter
23
 * @author     Goffy ( [email protected] )
24
 *
25
 * ****************************************************************************
26
 */
27
28
use XoopsModules\Xnewsletter;
29
30
// defined("XOOPS_ROOT_PATH") || die("XOOPS root path not defined");
31
require_once dirname(__DIR__) . '/include/common.php';
32
33
/**
34
 * @return array
35
 */
36 View Code Duplication
function xnewsletter_plugin_getinfo_weblinks()
0 ignored issues
show
Duplication introduced by
This function seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
37
{
38
    global $xoopsDB;
39
40
    $pluginInfo         = [];
41
    $pluginInfo['name'] = 'weblinks';
42
    if (file_exists(XOOPS_URL . '/modules/sweblinks/images/weblinks_slogo.png')) {
43
        $pluginInfo['icon'] = XOOPS_URL . '/modules/weblinks/images/weblinks_slogo.png';
44
    } elseif (file_exists(XOOPS_URL . '/modules/subscribers/assets/images/weblinks_slogo.png')) {
45
        $pluginInfo['icon'] = XOOPS_URL . '/modules/subscribers/assets/images/weblinks_slogo.png';
46
    }
47
    //$pluginInfo['modulepath'] = XOOPS_ROOT_PATH . "/modules/weblinks/xoops_version.php";
48
    $pluginInfo['tables'][0] = $xoopsDB->prefix('weblinks_link');
49
    $pluginInfo['descr']     = 'Import from Weblinks';
50
    $pluginInfo['hasform']   = 0;
51
52
    return $pluginInfo;
53
}
54
55
/**
56
 * @param $cat_id
57
 * @param $action_after_read
58
 * @param $limitcheck
59
 * @param $skipcatsubscrexist
60
 *
61
 * @return int
0 ignored issues
show
Documentation introduced by
Should the return type not be null|integer?

This check compares the return type specified in the @return annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.

Loading history...
62
 */
63 View Code Duplication
function xnewsletter_plugin_getdata_weblinks($cat_id, $action_after_read, $limitcheck, $skipcatsubscrexist)
0 ignored issues
show
Duplication introduced by
This function seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
64
{
65
    global $xoopsDB;
66
    $helper = Xnewsletter\Helper::getInstance();
67
68
    //$table_import = $xoopsDB->prefix('xnewsletter_import');
69
    $import_status = 0 == $action_after_read ? true : false;
70
    $i             = 0;
71
    $j             = 0;
72
73
    $sql = 'SELECT `mail`, `name`';
74
    $sql .= ' FROM ' . $xoopsDB->prefix('weblinks_link');
75
    if (!$result_users = $xoopsDB->query($sql)) {
76
        die('MySQL-Error: ' . $GLOBALS['xoopsDB']->error());
77
    }
78
    while (false !== ($lineArray = $xoopsDB->fetchBoth($result_users))) {
79
        ++$i;
80
        $email     = $lineArray[0];
81
        $sex       = '';
82
        $firstname = '';
83
        $lastname  = $lineArray[1];
84
85
        $subscr_id    = xnewsletter_pluginCheckEmail($email);
86
        $catsubscr_id = xnewsletter_pluginCheckCatSubscr($subscr_id, $cat_id);
87
88
        if (1 == $skipcatsubscrexist && $catsubscr_id > 0) {
89
            //skip existing subscriptions
90
        } else {
91
            $currcatid = $catsubscr_id > 0 ? 0 : $cat_id;
92
            $importObj = $helper->getHandler('Import')->create();
93
            $importObj->setVar('import_email', $email);
94
            $importObj->setVar('import_sex', $sex);
95
            $importObj->setVar('import_firstname', $firstname);
96
            $importObj->setVar('import_lastname', $lastname);
97
            $importObj->setVar('import_cat_id', $currcatid);
98
            $importObj->setVar('import_subscr_id', $subscr_id);
99
            $importObj->setVar('import_catsubscr_id', $catsubscr_id);
100
            $importObj->setVar('import_status', $import_status);
101
            if (!$helper->getHandler('Import')->insert($importObj)) {
102
                echo $importObj->getHtmlErrors();
103
                exit();
104
            }
105
            //            $sql = "INSERT INTO {$table_import} (import_email, import_sex, import_firstname, import_lastname, import_cat_id, import_subscr_id, import_catsubscr_id, import_status)";
106
            //            $sql .= " VALUES ('$email', '$sex', '$firstname', '$lastname', $currcatid, $subscr_id, $catsubscr_id, $import_status)";
107
            //            $result_insert = $xoopsDB->query($sql) or die ("MySQL-Error: " . $GLOBALS['xoopsDB']->error());
108
            ++$j;
109
        }
110
        ++$i;
111
        if (100000 == $j) {
112
            break;
113
        } //maximum number of processing to avoid cache overflow
114
        if ($limitcheck > 0 && $j == $limitcheck) {
115
            $import_status = false;
116
        }
117
    }
118
119
    return $j;
120
}
121