Skip to content

Commit 8af33b0

Browse files
committed
Doc and CS fixes;
Added scanoptions.php; Regenerated package.xml.
1 parent 0eaac86 commit 8af33b0

13 files changed

+277
-94
lines changed

.gitattributes

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
.gitignore export-ignore
77
.scrutinizer.yml export-ignore
88
.travis.yml export-ignore
9-
README.md export-ignore
109
README export-ignore
10+
README.md export-ignore
1111
CREDITS export-ignore
1212
RELEASE-* export-ignore
13+
extrasetup.php export-ignore
1314
package.xml export-ignore
1415
packagexmlsetup.php export-ignore
15-
extrasetup.php export-ignore
16+
scanoptions.php export-ignore

docs/wiki

Submodule wiki updated from fc21ecb to 5025c7d
File renamed without changes.

examples/Script/prepare.php

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
use PEAR2\Net\RouterOS;
3+
require_once 'PEAR2/Autoload.php';
4+
5+
$util = new RouterOS\Util(
6+
$client = new RouterOS\Client('192.168.88.1', 'admin', 'password')
7+
);
8+
$util->setMenu('/system scheduler')->add(
9+
array(
10+
'name' => 'logger',
11+
'interval' => '1m',
12+
'on-event' => RouterOS\Script::prepare(
13+
'/log info $phpver',
14+
array(
15+
'phpver' => phpversion()
16+
)
17+
)
18+
)
19+
);

examples/Util/edit.php

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
use PEAR2\Net\RouterOS;
3+
4+
require_once 'PEAR2/Autoload.php';
5+
6+
$util = new RouterOS\Util(
7+
$client = new RouterOS\Client('192.168.88.1', 'admin', 'password')
8+
);
9+
$util->setMenu('/ip arp');
10+
$util->edit(0, 'address', '192.168.88.103');

examples/Util/set-multiple.php

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
$util->setMenu('/ip arp');
1010
$util->set(
1111
$util->find(
12+
0,
1213
function ($response) {
1314
//Matches any item with a comment that starts with two digits
1415
return preg_match('/^\d\d/', $response->getArgument('comment'));

extrasetup.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
'pear2.php.net' => array(
1919
'PEAR2_Autoload',
2020
'PEAR2_Cache_SHM',
21+
'PEAR2_Net_Transmitter',
2122
'PEAR2_Console_CommandLine',
2223
'PEAR2_Console_Color'
2324
)
@@ -33,7 +34,6 @@
3334
foreach ($channelPackages as $package) {
3435
foreach ($registry->toPackage($package, $channel)->installcontents
3536
as $file => $info) {
36-
var_dump($package, $file);
3737
if (strpos($file, 'php/') === 0 || strpos($file, 'src/') === 0) {
3838
$filename = substr($file, 4);
3939
$extrafiles['src/' . $filename]

package.xml

+41-5
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<email>[email protected]</email>
1212
<active>yes</active>
1313
</lead>
14-
<date>2016-11-07</date>
15-
<time>03:50:39</time>
14+
<date>2017-05-22</date>
15+
<time>15:41:15</time>
1616
<version>
1717
<release>1.0.0b6</release>
1818
<api>1.0.0</api>
@@ -37,6 +37,8 @@
3737
- newRequest()
3838
* Script::escapeString() no longer escapes bytes above 0x7F. This means that parameter string values are now influenced by charset settings, and thus no additional conversion is necessary. A new second argument can be set to TRUE to escape all bytes, including the previously untouched ASCII alphanumeric characters and underscores.
3939
* Stream parameters in Script::append() (and inherently, Script::prepare() and Util::exec()) now have ALL bytes escaped.
40+
* Script::escapeValue() converts NULL to &quot;nil&quot; instead of &quot;nothing&quot;.
41+
* The $params array in Script::append() can declare variables with a value of type &quot;nothing&quot; by using numeric keys, and the variable names as values.
4042
* Script::parseValue() now supports letter notation for time (1h2m3s), not just double colon notation (01:02:03), modeled after RouterOS. Related to that is also that leading zeroes, and zero minutes and seconds are now optional (e.g. &quot;1:&quot; is a valid way of saying 1 hour). Sub-second information is rounded up to the nearest second on current PHP versions (future versions are expected to support sub-second information in DateInterval by allowing seconds to be a double; The code currently attempts to give DateInterval a double, falling back to rounding to a second).
4143
* Script::parseValue() now recognizes dates in the &quot;M/d/Y H:i:s&quot; format (used across RouterOS), and turns that into a DateTime object for that time (or midnight in UTC if the time part is omitted).
4244
* Util::getAll() now throws a NotSupportedException if the arguments &quot;follow&quot;, &quot;follow-only&quot; or &quot;count-only&quot; are used. The first two, because PHP would hang (since Client::sendSync() is used under the hood), and the last one because it's unredable in the returned output (use Util::count() instead).
@@ -58,6 +60,21 @@
5860
</file>
5961
</dir>
6062
<dir name="docs" baseinstalldir="/">
63+
<dir name="wiki">
64+
<file role="doc" name="Approaches-with-Client.md"/>
65+
<file role="doc" name="Getting-started.md"/>
66+
<file role="doc" name="Home.md"/>
67+
<file role="doc" name="Manipulating-RouterOS-data-using-Client.md"/>
68+
<file role="doc" name="Optional-features.md"/>
69+
<file role="doc" name="Roscon.md"/>
70+
<file role="doc" name="Script-composition-and-parsing.md"/>
71+
<file role="doc" name="Shortcuts.md"/>
72+
<file role="doc" name="Using-queries.md"/>
73+
<file role="doc" name="Util-basics.md"/>
74+
<file role="doc" name="Util-extras.md"/>
75+
<file role="doc" name="_Footer.md"/>
76+
<file role="doc" name="_Sidebar.md"/>
77+
</dir>
6178
<file role="doc" name="apigen.neon">
6279
<tasks:replace type="pear-config" to="php_dir" from="../src"/>
6380
</file>
@@ -79,9 +96,14 @@
7996
<file role="doc" name="sync-request-arguments.php"/>
8097
<file role="doc" name="sync-request-simple.php"/>
8198
</dir>
99+
<dir name="Script">
100+
<file role="doc" name="parseValue.php"/>
101+
<file role="doc" name="prepare.php"/>
102+
</dir>
82103
<dir name="Util">
83104
<file role="doc" name="add.php"/>
84105
<file role="doc" name="count.php"/>
106+
<file role="doc" name="edit.php"/>
85107
<file role="doc" name="enable_disable_remove.php"/>
86108
<file role="doc" name="exec-basic.php"/>
87109
<file role="doc" name="exec-params.php"/>
@@ -94,7 +116,6 @@
94116
<file role="doc" name="get-number.php"/>
95117
<file role="doc" name="getAll.php"/>
96118
<file role="doc" name="move.php"/>
97-
<file role="doc" name="parseValue.php"/>
98119
<file role="doc" name="set-multiple.php"/>
99120
<file role="doc" name="set-single.php"/>
100121
</dir>
@@ -381,7 +402,7 @@
381402
<package>
382403
<name>PEAR2_Console_CommandLine</name>
383404
<channel>pear2.php.net</channel>
384-
<min>0.2.1</min>
405+
<min>0.2.2</min>
385406
</package>
386407
<package>
387408
<name>PEAR2_Console_Color</name>
@@ -400,14 +421,30 @@
400421
<install name="docs/doxygen.ini" as="doxygen.ini"/>
401422
<install name="docs/phpdoc.dist.xml" as="phpdoc.dist.xml"/>
402423
<install name="docs/sami.php" as="sami.php"/>
424+
<install name="docs/wiki/Approaches-with-Client.md" as="wiki/Approaches-with-Client.md"/>
425+
<install name="docs/wiki/Getting-started.md" as="wiki/Getting-started.md"/>
426+
<install name="docs/wiki/Home.md" as="wiki/Home.md"/>
427+
<install name="docs/wiki/Manipulating-RouterOS-data-using-Client.md" as="wiki/Manipulating-RouterOS-data-using-Client.md"/>
428+
<install name="docs/wiki/Optional-features.md" as="wiki/Optional-features.md"/>
429+
<install name="docs/wiki/Roscon.md" as="wiki/Roscon.md"/>
430+
<install name="docs/wiki/Script-composition-and-parsing.md" as="wiki/Script-composition-and-parsing.md"/>
431+
<install name="docs/wiki/Shortcuts.md" as="wiki/Shortcuts.md"/>
432+
<install name="docs/wiki/Using-queries.md" as="wiki/Using-queries.md"/>
433+
<install name="docs/wiki/Util-basics.md" as="wiki/Util-basics.md"/>
434+
<install name="docs/wiki/Util-extras.md" as="wiki/Util-extras.md"/>
435+
<install name="docs/wiki/_Footer.md" as="wiki/_Footer.md"/>
436+
<install name="docs/wiki/_Sidebar.md" as="wiki/_Sidebar.md"/>
403437
<install name="examples/Client/callback-and-loop.php" as="examples/Client/callback-and-loop.php"/>
404438
<install name="examples/Client/loop-and-extract.php" as="examples/Client/loop-and-extract.php"/>
405439
<install name="examples/Client/send-and-complete.php" as="examples/Client/send-and-complete.php"/>
406440
<install name="examples/Client/send-and-forget.php" as="examples/Client/send-and-forget.php"/>
407441
<install name="examples/Client/sync-request-arguments.php" as="examples/Client/sync-request-arguments.php"/>
408442
<install name="examples/Client/sync-request-simple.php" as="examples/Client/sync-request-simple.php"/>
443+
<install name="examples/Script/parseValue.php" as="examples/Script/parseValue.php"/>
444+
<install name="examples/Script/prepare.php" as="examples/Script/prepare.php"/>
409445
<install name="examples/Util/add.php" as="examples/Util/add.php"/>
410446
<install name="examples/Util/count.php" as="examples/Util/count.php"/>
447+
<install name="examples/Util/edit.php" as="examples/Util/edit.php"/>
411448
<install name="examples/Util/enable_disable_remove.php" as="examples/Util/enable_disable_remove.php"/>
412449
<install name="examples/Util/exec-basic.php" as="examples/Util/exec-basic.php"/>
413450
<install name="examples/Util/exec-params.php" as="examples/Util/exec-params.php"/>
@@ -420,7 +457,6 @@
420457
<install name="examples/Util/get-number.php" as="examples/Util/get-number.php"/>
421458
<install name="examples/Util/getAll.php" as="examples/Util/getAll.php"/>
422459
<install name="examples/Util/move.php" as="examples/Util/move.php"/>
423-
<install name="examples/Util/parseValue.php" as="examples/Util/parseValue.php"/>
424460
<install name="examples/Util/set-multiple.php" as="examples/Util/set-multiple.php"/>
425461
<install name="examples/Util/set-single.php" as="examples/Util/set-single.php"/>
426462
<install name="scripts/roscon" as="roscon"/>

packagexmlsetup.php

+9-3
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@
104104

105105
$oldCwd = getcwd();
106106
chdir(__DIR__);
107+
$package->setRawRelease('php', '');
108+
$release = $package->getReleaseToInstall('php');
107109
foreach (new RecursiveIteratorIterator(
108110
new RecursiveDirectoryIterator(
109111
'.',
@@ -112,8 +114,12 @@
112114
),
113115
RecursiveIteratorIterator::LEAVES_ONLY
114116
) as $path) {
115-
$filename = substr($path->getPathname(), 2);
116-
$cFilename = str_replace('src/', 'php/', $filename);
117+
if ('.git' === $path->getFilename()) {
118+
continue;
119+
}
120+
121+
$filename = substr($path->getPathname(), 2);
122+
$cFilename = str_replace('src/', 'php/', $filename);
117123

118124
if (isset($package->files[$filename])) {
119125
$parsedFilename = pathinfo($filename);
@@ -135,7 +141,7 @@
135141
$as = substr($as, 0, -4);
136142
}
137143
}
138-
$package->getReleaseToInstall('php')->installAs($filename, $as);
144+
$release->installAs($filename, $as);
139145

140146
$contents = file_get_contents($filename);
141147
foreach ($config['replace'] as $from => $attribs) {

scanoptions.php

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?php
2+
3+
/**
4+
* File scanoptions.php for PEAR2_Net_RouterOS.
5+
*
6+
* PHP version 5.3
7+
*
8+
* @category Net
9+
* @package PEAR2_Net_RouterOS
10+
* @author Vasil Rangelov <[email protected]>
11+
* @copyright 2011 Vasil Rangelov
12+
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
13+
* @version GIT: $Id$
14+
* @link http://pear2.php.net/PEAR2_Net_RouterOS
15+
*/
16+
17+
$scanoptions = array(
18+
'ignore' => array()
19+
);
20+
$oldCwd = getcwd();
21+
chdir(__DIR__);
22+
foreach (new RecursiveIteratorIterator(
23+
new RecursiveDirectoryIterator(
24+
'.',
25+
RecursiveDirectoryIterator::UNIX_PATHS
26+
| RecursiveDirectoryIterator::SKIP_DOTS
27+
),
28+
RecursiveIteratorIterator::LEAVES_ONLY
29+
) as $path) {
30+
if ('.git' === $path->getFilename()) {
31+
$scanoptions['ignore'][$path->getRealPath()]
32+
= $path->isDir() ? 'dir' : 'file';
33+
}
34+
}
35+
chdir($oldCwd);
36+
return $scanoptions;

0 commit comments

Comments
 (0)