Community discussions

MikroTik App
 
marting
Member Candidate
Member Candidate
Topic Author
Posts: 172
Joined: Thu Aug 21, 2014 2:07 pm

Object-Oriented Perl API at CPAN

Wed Dec 09, 2015 7:58 pm

Hi,

I reworked the existing perl API implementation from cheesegrits and some other guys (see http://forum.mikrotik.com/viewtopic.php?f=9&t=22744) and ported it to Moose.

It will available at CPAN: http://search.cpan.org/~martingo/MikroTik-API/
and the repository is at github: https://github.com/martin8883/MikroTik-API


Feel free to ask if you have any questions or issues.

Regards
Martin
Last edited by marting on Thu Jul 25, 2019 7:01 pm, edited 1 time in total.
 
kheeva
just joined
Posts: 3
Joined: Thu Dec 17, 2015 9:14 pm

Re: Object-Oriented Perl API

Thu Dec 17, 2015 9:19 pm

connection timeout doesn't work..

add to API.pm

sub connect {
....
SSL_cipher_list => 'HIGH',
+ Timeout => $self->get_timeout()
...
}

=head1 ACCESSORS
...
+ =head2 $api->get_timeout(), $api->set_timeout( $timeout )

+ =cut

+ has 'timeout' => ( is => 'ro', reader => 'get_timeout', writer => 'set_timeout', isa => 'Int' );
...
 
marting
Member Candidate
Member Candidate
Topic Author
Posts: 172
Joined: Thu Aug 21, 2014 2:07 pm

Re: Object-Oriented Perl API

Fri Dec 18, 2015 11:22 am

Hi kheeva,
thank you and sorry. I already implemented the timeout and some type of connection probing (useful for long lasting connections).
I will push it to github and CPAN later this day.
Regards
Martin
 
kheeva
just joined
Posts: 3
Joined: Thu Dec 17, 2015 9:14 pm

Re: Object-Oriented Perl API

Fri Dec 18, 2015 1:11 pm

Hi, Martin.

Thanks a lot for your job :)

Is it possible to run cmd through API like that:

/ip/firewall/filter/remove [/ip firewall filter find]

?
 
marting
Member Candidate
Member Candidate
Topic Author
Posts: 172
Joined: Thu Aug 21, 2014 2:07 pm

Re: Object-Oriented Perl API

Fri Dec 18, 2015 1:13 pm

Version 1.0.2 is available at github and uploaded to cpan. I guess it will be listed in the next hours.
 
marting
Member Candidate
Member Candidate
Topic Author
Posts: 172
Joined: Thu Aug 21, 2014 2:07 pm

Re: Object-Oriented Perl API

Fri Dec 18, 2015 1:39 pm

Is it possible to run cmd through API like that:

/ip/firewall/filter/remove [/ip firewall filter find]

?
No, not as far as I know. Not because of limitations in the Perl implementation but the way how the API works. I´m not an expert for this API, but if I look here at how the API works, I cannot imagine a way to do this:
http://wiki.mikrotik.com/wiki/Manual:API

I would do it this way (of course, this could cause many many calls but I don´t think, they hurt):
my ( $ret, @rules ) = $api->query( '/ip/firewall/filter/find', {}, {} );
foreach my $ule ( @rules ) {
	$api->cmd( '/ip/firewall/filter/remove', {
		'.id' => $rule->{'.id'},
	});
}
But you can also have a look to other API implementations (C/PHP/Python/...) - if you find a possibility there, it will also be possible with the Perl API. Or I can implement it as soon as I know how the API calls have to be.

Edit: It is definitly not possible because find is no API command, see: http://wiki.mikrotik.com/wiki/API_comma ... g_commands

If you often have to to run the same command, you could either place a static script at the router or dynamically build the script, upload it and then run it by API /system/script/run
 
User avatar
boen_robot
Forum Guru
Forum Guru
Posts: 2400
Joined: Thu Aug 31, 2006 4:43 pm
Location: europe://Bulgaria/Plovdiv

Re: Object-Oriented Perl API

Fri Dec 18, 2015 4:31 pm

That notes section is a little outdated... I updated it to reflect the real situation with "find", or least, as it was last I checked. And the situation is that "find" is supported, but without support for queries. Results are in the "ret" property of the !done reply.
 
marting
Member Candidate
Member Candidate
Topic Author
Posts: 172
Joined: Thu Aug 21, 2014 2:07 pm

Re: Object-Oriented Perl API

Fri Dec 18, 2015 4:41 pm

Ah, thank you for information.
So do you think something like kheeva wants to do (remove all Firewall rules: /ip/firewall/filter/remove [/ip firewall filter find] ) is possible by API?

As find is so useless by API, I would not put much effort in this if there are changes in the implementation required.
 
User avatar
boen_robot
Forum Guru
Forum Guru
Posts: 2400
Joined: Thu Aug 31, 2006 4:43 pm
Location: europe://Bulgaria/Plovdiv

Re: Object-Oriented Perl API

Fri Dec 18, 2015 4:47 pm

Yes, but with two API calls.

One for "/ip/firewall/filter/find", and another one with "/ip/firewall/filter/remove" that has "numbers" set to the value of "ret".

Oh, and BTW, some RouterOS versions use ";" as a separator, while others use ","... You should replace any ";" to "," prior to using the "ret" value.
 
User avatar
boen_robot
Forum Guru
Forum Guru
Posts: 2400
Joined: Thu Aug 31, 2006 4:43 pm
Location: europe://Bulgaria/Plovdiv

Re: Object-Oriented Perl API

Fri Dec 18, 2015 5:19 pm

I was looking at the reference page, and I have a question...
$api->query(_$command,_\%attributes,_\%conditions_)
How are the %conditions chained? AND? OR? Do you allow for custom operator query words (You know, the "?#..." kind) or otherwise allow different logical operations as part of the conditions?
 
marting
Member Candidate
Member Candidate
Topic Author
Posts: 172
Joined: Thu Aug 21, 2014 2:07 pm

Re: Object-Oriented Perl API

Fri Dec 18, 2015 5:48 pm

The query is based on this commit: https://github.com/elcamlost/mikrotik-p ... 97251f666e
So it is no complete implementation of all possibilites of query. It is a very simple AND.

For example
die Dumper( $api->query('/interface/print', {}, { type => 'ether', slave => 'true', 'fast-path' => 'true', running => 'true' } ) );
results in
?type=ether
?slave=true
?fast-path=true
?running=true

No possibility at the moment to work with ?#.
Perhaps I will rework this if I need it at some time. But then the whole data structure of query must be reworked, because at the moment it is a hash, that is not ordered. A good syntax would be similar to DBIx::Class::ResultSet: http://search.cpan.org/dist/DBIx-Class/ ... .pm#search
This has a simple syntax like before, but also possible to use logical operators
{ -or => { type => 'ether', type => 'vlan', fast-path => 'true' }, slave => 'true' }

Everything else is possible except ?#, so no chance to query something other than AND.
{ '>tx-errors' => 0, '<tx-errors' => 17 }
 
User avatar
boen_robot
Forum Guru
Forum Guru
Posts: 2400
Joined: Thu Aug 31, 2006 4:43 pm
Location: europe://Bulgaria/Plovdiv

Re: Object-Oriented Perl API

Fri Dec 18, 2015 7:03 pm

It is a very simple AND.

For example
die Dumper( $api->query('/interface/print', {}, { type => 'ether', slave => 'true', 'fast-path' => 'true', running => 'true' } ) );
results in
?type=ether
?slave=true
?fast-path=true
?running=true
Last I checked, having no operators is supposed to OR the criteria. Then again, I've never used "operator"-less queries (not with multiple criteria that is), so I could be wrong on that one.

Anyway...

IMHO, a class with a fluent interface that chains one operand against the result of everything before it is better, in that it allows for more cases to be addressed
(See my PHP client's Query class for a PHP analog)

And a string parser (that parses a line like the one you'd have in CLI) would be best (but that one's haaard, especially if you want to parse braces too).
 
marting
Member Candidate
Member Candidate
Topic Author
Posts: 172
Joined: Thu Aug 21, 2014 2:07 pm

Re: Object-Oriented Perl API

Wed Jan 13, 2016 1:38 pm

I checked it and without operators, the conditions were seen as AND.

Nevertheless, at the moment I have no need to implement advanced operators. I will if I need them or if I have really boredom. But this won´t be in the next weeks. If someone else wants to implement - feel free to do so, I will accept pull requests.
 
lavv17
Member Candidate
Member Candidate
Posts: 120
Joined: Sat Sep 01, 2007 9:01 am

Re: Object-Oriented Perl API

Fri Jan 29, 2016 2:54 pm

marting
Please consider applying the patch from my bug report:
https://rt.cpan.org/Public/Bug/Display.html?id=111476
 
marting
Member Candidate
Member Candidate
Topic Author
Posts: 172
Joined: Thu Aug 21, 2014 2:07 pm

Re: Object-Oriented Perl API

Fri Jan 29, 2016 3:21 pm

Hi lavv,
I already merged it, thank you!
Regards
Martin
 
artemk
newbie
Posts: 26
Joined: Wed Jun 20, 2012 8:06 pm
Location: Kyiv, Ukraine

Re: Object-Oriented Perl API

Sun Jun 24, 2018 8:31 pm

@marting

Hi Martin,

Please consider merging a fix for post-v6.43 login method.

Thanks!
Artem
 
marting
Member Candidate
Member Candidate
Topic Author
Posts: 172
Joined: Thu Aug 21, 2014 2:07 pm

Re: Object-Oriented Perl API

Thu Jul 25, 2019 6:58 pm

Sorry, I missed the fact that the old method has been removed with 6.45.
The changes (previously only on GitHub) are now also available with CPAN: https://metacpan.org/pod/MikroTik::API (v1.1.0). It precedencs new method and falls back to the old one.
Please test it carefully before production use, there were many PullRequests (thank you very much for those!!!) included in this release. Also some changed error handling (not dying so fast but use of errorcodes).

Also not very happy with plaintext auth method introduced with 6.43 (why???). So I postponed the release quite long.
 
marting
Member Candidate
Member Candidate
Topic Author
Posts: 172
Joined: Thu Aug 21, 2014 2:07 pm

Re: Object-Oriented Perl API at CPAN

Thu Sep 26, 2019 3:58 pm

New release 2.0.0 with change from Moose to Moo. Should have a little less compile time:
https://metacpan.org/release/MikroTik-API
https://github.com/martin8883/MikroTik- ... tag/v2.0.0
 
savage
Forum Guru
Forum Guru
Posts: 1263
Joined: Mon Oct 18, 2004 12:07 am
Location: Cape Town, South Africa
Contact:

Re: Object-Oriented Perl API at CPAN

Thu Oct 31, 2019 11:21 am

  Adding route: 100.100.0.0/24 
>>> /ip/route/add
>>> =type=blackhole
>>> =bgp-origin=igp
>>> =bgp-communities=65000:5002
>>> =dst-address=100.100.0.0/24 
start read_len
read_len got 5
recv 5
<<< !trap
start read_len
read_len got 64
recv 64
<<< =message=value of dst-address must have number address after '/'
start read_len
read_len got 0
start read_len
read_len got 5
recv 5

This should be working?? Or, am I being stupid?

Who is online

Users browsing this forum: No registered users and 38 guests