GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( cb3474...dcda12 )
by Zordius
02:34
created

Context::updateHelperTable()   C

Complexity

Conditions 8
Paths 2

Size

Total Lines 22
Code Lines 15

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 12
CRAP Score 8

Importance

Changes 2
Bugs 0 Features 1
Metric Value
c 2
b 0
f 1
dl 0
loc 22
ccs 12
cts 12
cp 1
rs 6.6037
cc 8
eloc 15
nc 2
nop 3
crap 8
1
<?php
2
/*
3
4
Copyrights for code authored by Yahoo! Inc. is licensed under the following terms:
5
MIT License
6
Copyright (c) 2013-2016 Yahoo! Inc. All Rights Reserved.
7
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
9
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
10
11
Origin: https://github.com/zordius/lightncandy
12
*/
13
14
/**
15
 * file to handle LightnCandy Context
16
 *
17
 * @package    LightnCandy
18
 * @author     Zordius <[email protected]>
19
 */
20
21
namespace LightnCandy;
22
23
use \LightnCandy\Flags;
24
25
/**
26
 * LightnCandy class to handle Context
27
 */
28
class Context extends Flags
29
{
30
    /**
31
     * Create a context from options
32
     *
33
     * @param array<string,array|string|integer> $options input options
34
     *
35
     * @return array<string,array|string|integer> Context from options
36
     */
37 745
    public static function create($options) {
38 745
        if (!is_array($options)) {
39 7
            $options = array();
40
        }
41
42 745
        $flags = isset($options['flags']) ? $options['flags'] : static::FLAG_BESTPERFORMANCE;
43
44
        $context = array(
45
            'flags' => array(
46 745
                'errorlog' => $flags & static::FLAG_ERROR_LOG,
47 745
                'exception' => $flags & static::FLAG_ERROR_EXCEPTION,
48 745
                'skippartial' => $flags & static::FLAG_ERROR_SKIPPARTIAL,
49 745
                'standalone' => $flags & static::FLAG_STANDALONEPHP,
50 745
                'noesc' => $flags & static::FLAG_NOESCAPE,
51 745
                'jstrue' => $flags & static::FLAG_JSTRUE,
52 745
                'jsobj' => $flags & static::FLAG_JSOBJECT,
53 745
                'jslen' => $flags & static::FLAG_JSLENGTH,
54 745
                'hbesc' => $flags & static::FLAG_HBESCAPE,
55 745
                'this' => $flags & static::FLAG_THIS,
56 745
                'nohbh' => $flags & static::FLAG_NOHBHELPERS,
57 745
                'parent' => $flags & static::FLAG_PARENT,
58 745
                'echo' => $flags & static::FLAG_ECHO,
59 745
                'advar' => $flags & static::FLAG_ADVARNAME,
60 745
                'namev' => $flags & static::FLAG_NAMEDARG,
61 745
                'spvar' => $flags & static::FLAG_SPVARS,
62 745
                'slash' => $flags & static::FLAG_SLASH,
63 745
                'else' => $flags & static::FLAG_ELSE,
64 745
                'exhlp' => $flags & static::FLAG_EXTHELPER,
65 745
                'lambda' => $flags & static::FLAG_HANDLEBARSLAMBDA,
66 745
                'mustlok' => $flags & static::FLAG_MUSTACHELOOKUP,
67 745
                'mustlam' => $flags & static::FLAG_MUSTACHELAMBDA,
68 745
                'noind' => $flags & static::FLAG_PREVENTINDENT,
69 745
                'debug' => $flags & static::FLAG_RENDER_DEBUG,
70 745
                'prop' => $flags & static::FLAG_PROPERTY,
71 745
                'method' => $flags & static::FLAG_METHOD,
72 745
                'runpart' => $flags & static::FLAG_RUNTIMEPARTIAL,
73 745
                'rawblock' => $flags & static::FLAG_RAWBLOCK,
74 745
                'partnc' => $flags & static::FLAG_PARTIALNEWCONTEXT,
75 745
                'nostd' => $flags & static::FLAG_IGNORESTANDALONE,
76 745
                'strpar' => $flags & static::FLAG_STRINGPARAMS,
77 745
                'knohlp' => $flags & static::FLAG_KNOWNHELPERSONLY,
78 745
            ),
79
            'delimiters' => array(
80 745
                isset($options['delimiters'][0]) ? $options['delimiters'][0] : '{{',
81 745
                isset($options['delimiters'][1]) ? $options['delimiters'][1] : '}}',
82
            ),
83 745
            'level' => 0,
84
            'stack' => array(),
85
            'currentToken' => null,
86
            'error' => array(),
87
            'elselvl' => array(),
88
            'elseif' => false,
89
            'tokens' => array(
90
                'standalone' => true,
91
                'ahead' => false,
92
                'current' => 0,
93
                'count' => 0,
94
                'partialind' => '',
95
            ),
96
            'usedPartial' => array(),
97
            'partialStack' => array(),
98
            'partialCode' => array(),
99
            'usedFeature' => array(
100
                'rootthis' => 0,
101
                'enc' => 0,
102
                'raw' => 0,
103
                'sec' => 0,
104
                'isec' => 0,
105
                'if' => 0,
106
                'else' => 0,
107
                'unless' => 0,
108
                'each' => 0,
109
                'this' => 0,
110
                'parent' => 0,
111
                'with' => 0,
112
                'comment' => 0,
113
                'partial' => 0,
114
                'dynpartial' => 0,
115
                'inlpartial' => 0,
116
                'helper' => 0,
117
                'delimiter' => 0,
118
                'subexp' => 0,
119
                'rawblock' => 0,
120
                'pblock' => 0,
121
                'lookup' => 0,
122
                'log' => 0,
123
            ),
124
            'usedCount' => array(
125
                'var' => array(),
126
                'helpers' => array(),
127
                'runtime' => array(),
128
            ),
129
            'compile' => false,
130
            'parsed' => array(),
131 745
            'partials' => (isset($options['partials']) && is_array($options['partials'])) ? $options['partials'] : array(),
132
            'partialblock' => array(),
133
            'inlinepartial' => array(),
134
            'helpers' => array(),
135 745
            'renderex' => isset($options['renderex']) ? $options['renderex'] : '',
136 745
            'prepartial' => (isset($options['prepartial']) && is_callable($options['prepartial'])) ? $options['prepartial'] : false,
137 745
            'helperresolver' => (isset($options['helperresolver']) && is_callable($options['helperresolver'])) ? $options['helperresolver'] : false,
138 745
            'partialresolver' => (isset($options['partialresolver']) && is_callable($options['partialresolver'])) ? $options['partialresolver'] : false,
139 745
            'runtime' => isset($options['runtime']) ? $options['runtime'] : '\\LightnCandy\\Runtime',
140 745
            'runtimealias' => 'LR',
141 745
            'safestring' => isset($options['safestring']) ? $options['safestring'] : '\\LightnCandy\\SafeString',
142 745
            'safestringalias' => 'LS',
143
            'rawblock' => false,
144 745
            'funcprefix' => uniqid('lcr'),
145
        );
146
147 745
        $context['ops'] = $context['flags']['echo'] ? array(
148 23
            'seperator' => ',',
149
            'f_start' => 'echo ',
150
            'f_end' => ';',
151
            'op_start' => 'ob_start();echo ',
152
            'op_end' => ';return ob_get_clean();',
153
            'cnd_start' => ';if ',
154
            'cnd_then' => '{echo ',
155
            'cnd_else' => ';}else{echo ',
156
            'cnd_end' => ';}echo ',
157
            'cnd_nend' => ';}',
158
        ) : array(
159 722
            'seperator' => '.',
160
            'f_start' => 'return ',
161
            'f_end' => ';',
162
            'op_start' => 'return ',
163
            'op_end' => ';',
164
            'cnd_start' => '.(',
165
            'cnd_then' => ' ? ',
166
            'cnd_else' => ' : ',
167
            'cnd_end' => ').',
168
            'cnd_nend' => ')',
169
        );
170
171 745
        $context['ops']['enc'] = $context['flags']['hbesc'] ? 'encq' : 'enc';
172 745
        static::updateHelperTable($context, $options);
173
174 745
        if ($context['flags']['partnc'] && ($context['flags']['runpart'] == 0)) {
175
            $context['error'][] = 'The FLAG_PARTIALNEWCONTEXT requires FLAG_RUNTIMEPARTIAL! Fix your compile options please';
176
        }
177
178 745
        return $context;
179
    }
180
181
    /**
182
     * update specific custom helper table from options
183
     *
184
     * @param array<string,array|string|integer> $context prepared context
185
     * @param array<string,array|string|integer> $options input options
186
     * @param string $tname helper table name
187
     *
188
     * @return array<string,array|string|integer> context with generated helper table
189
     *
190
     * @expect array() when input array(), array()
191
     * @expect array('flags' => array('exhlp' => 1), 'helpers' => array('abc' => 1)) when input array('flags' => array('exhlp' => 1)), array('helpers' => array('abc'))
192
     * @expect array('error' => array('You provide a custom helper named as \'abc\' in options[\'helpers\'], but the function abc() is not defined!'), 'flags' => array('exhlp' => 0)) when input array('error' => array(), 'flags' => array('exhlp' => 0)), array('helpers' => array('abc'))
193
     * @expect array('flags' => array('exhlp' => 1), 'helpers' => array('\\LightnCandy\\Runtime::raw' => '\\LightnCandy\\Runtime::raw')) when input array('flags' => array('exhlp' => 1), 'helpers' => array()), array('helpers' => array('\\LightnCandy\\Runtime::raw'))
194
     * @expect array('flags' => array('exhlp' => 1), 'helpers' => array('test' => '\\LightnCandy\\Runtime::raw')) when input array('flags' => array('exhlp' => 1), 'helpers' => array()), array('helpers' => array('test' => '\\LightnCandy\\Runtime::raw'))
195
     */
196 746
    protected static function updateHelperTable(&$context, $options, $tname = 'helpers') {
197 746
        if (isset($options[$tname]) && is_array($options[$tname])) {
198 460
            foreach ($options[$tname] as $name => $func) {
199 198
                $tn = is_int($name) ? $func : $name;
200 198
                if (is_callable($func)) {
201 196
                    $context[$tname][$tn] = $func;
202
                } else {
203 4
                    if (is_array($func)) {
204 1
                        $context['error'][] = "I found an array in $tname with key as $name, please fix it.";
205
                    } else {
206 3
                        if ($context['flags']['exhlp']) {
207
                            // Regist helper names only
208 2
                            $context[$tname][$tn] = 1;
209
                        } else {
210 198
                            $context['error'][] = "You provide a custom helper named as '$tn' in options['$tname'], but the function $func() is not defined!";
211
                        }
212
                    }
213
                }
214
            }
215
        }
216 746
        return $context;
217
    }
218
219
    /**
220
     * Merge a context into another
221
     *
222
     * @param array<string,array|string|integer> $context master context
223
     * @param array<string,array|string|integer> $tmp another context will be overwrited into master context
224
     */
225 82
    public static function merge(&$context, $tmp) {
226 82
        $context['error'] = $tmp['error'];
227 82
        $context['partials'] = $tmp['partials'];
228 82
        $context['partialCode'] = $tmp['partialCode'];
229 82
        $context['partialStack'] = $tmp['partialStack'];
230 82
        $context['usedCount'] = $tmp['usedCount'];
231 82
        $context['usedFeature'] = $tmp['usedFeature'];
232 82
        $context['usedPartial'] = $tmp['usedPartial'];
233 82
    }
234
}
235
236