Changeset 910
- Timestamp:
- 08/17/17 17:46:33 (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r904 r910 27 27 28 28 DESTDIR = 29 30 GENDOCS = \ 31 docs/search-rpc.html 29 32 30 33 HTML = \ … … 77 80 cgi-bin/extras/network.tmpl 78 81 79 DIRS = images templates cgi-bin cgi-bin/extras82 DIRS = docs images templates cgi-bin cgi-bin/extras 80 83 81 84 MANIFEST = Makefile COPYING \ 85 $(GENDOCS) \ 82 86 $(HTML) \ 83 87 $(JS) \ … … 94 98 95 99 list: 96 echo Makefile \ 100 echo Makefile COPYING \ 101 $(GENDOCS) \ 97 102 $(HTML) \ 98 103 $(JS) \ … … 128 133 dist: 129 134 mkdir $(PKGNAME)-$(VERSION) 135 pod2html cgi-bin/search-rpc.cgi > docs/search-rpc.html 130 136 tar cf - $(MANIFEST) | (cd $(PKGNAME)-$(VERSION); tar xf -) 131 137 /usr/bin/perl -p -e 's/#VERSION#/$(VERSION)/g;s/#RELEASE#/$(RELEASE)/g;s/#BETA#//g' < $(PKGNAME).spec > $(PKGNAME)-$(VERSION)/$(PKGNAME).spec -
trunk/cgi-bin/search-rpc.cgi
r909 r910 275 275 return $result; 276 276 } # rpc_search() 277 278 279 __END__ 280 281 =pod 282 283 =head1 IPDB XMLRPC Search 284 285 This is a general-purpose search API for IPDB. It is currently being extended based on requirements from other tools needing to 286 search for data in IPDB. 287 288 It supports one XMLRPC sub, "search". 289 290 The calling URL for this API should end with "/search-rpc.cgi". If you are doing many requests, you should use the FastCGI variant 291 with .fcgi instead of .cgi. 292 293 =head2 Calling conventions 294 295 IPDB RPC services use "XMLRPC", http://xmlrpc.com, for data exchange. 296 297 Arguments are passed in as a key-value list, and data is returned as an array of hashes in some form. 298 299 =over 4 300 301 =item Perl 302 303 use Frontier::Client; 304 my $server = Frontier::Client->new( 305 url => "http://server/path/search-rpc.cgi", 306 ); 307 my %args = ( 308 rpcsystem => 'somesystem', 309 rpcuser => 'someuser', 310 arg1 => 'val1', 311 arg2 => 'val2', 312 ); 313 my $result = $server->call('ipdb.search', %args); 314 315 =item Python 2 316 317 import xmlrpclib 318 server = xmlrpclib.Server("http://server/path/search-rpc.cgi") 319 result = server.ipdb.search( 320 'rpcsystem', 'comesystems', 321 'rpcuser', 'someuser', 322 'arg1', 'val1', 323 'arg2', 'val2', 324 ) 325 326 =item Python 3 327 328 import xmlrpc.client 329 server = xmlrpc.client.ServerProxy("http://server/path/search-rpc.cgi") 330 result = server.ipdb.search( 331 'rpcsystem', 'somesystem', 332 'rpcuser', 'someuser', 333 'arg1', 'val1', 334 'arg2', 'val2', 335 ) 336 337 =back 338 339 =head3 Standard arguments 340 341 The C<rpcsystem> argument is required, and C<rpcuser> is strongly recommended as it may be used for access control in some future 342 updates. 343 344 C<rpcsystem> must match a configuration entry in the IPDB configuration, and a given string may only be used from an IP listed under 345 that configuration entry. 346 347 =head2 Search fields and metaoperators 348 349 Not all fields are exposed for search. For most purposes these should be sufficient. 350 351 =over 4 352 353 =item cidr 354 355 A full or partial CIDR network or IP address. Valid formats include: 356 357 =over 4 358 359 =item Complete CIDR network, eg 192.168.2.0/24 360 361 Returns an exact match for the passed CIDR network. 362 363 If prefixed with "CONTAINS:", the containing netblocks up to the master block 364 will also be returned. 365 366 If prefixed with "WITHIN:", any suballocations in that IP range will be returned. 367 368 =item Partial/short CIDR specification with mask length, eg 192.168.3/27 369 370 Returns all /27 assignments within 192.168.3.0/24. 371 372 =item Partial/short CIDR specification, eg 192.168.4 373 374 Returns all assignments matching that leading partial string. Note that 192.168.4 will also return 192.168.40.0/24 through 375 192.168.49.0/24 as well as the obvious 192.168.4.0/24. 376 377 =item Bare IP address with no mask, eg 192.168.5.42 378 379 Returns all assignments containing that IP. 380 381 =back 382 383 =item custid 384 385 Match on a customer ID. Defaults to a partial match. 386 387 =item type 388 389 Match the two-character internal allocation type identifier. 390 391 Defaults to an exact match. Replace the first character with a dot or underscore, or leave it off, to match all subtypes of a 392 class; eg .i will return all types of static IP assignments. 393 394 A full list of current allocation types is available from the main RPC API's getTypeList sub. 395 396 =item city 397 398 Matches in the city string. 399 400 =item description 401 402 Matches in the description string. 403 404 =item notes 405 406 Matches in the notes field. 407 408 =item available 409 410 Only useful for static IPs. For historic and architectural reasons, unallocated static IPs are included in general search results. 411 Specify 'y' or 'n' to return only unallocated or allocated static IPs respectively. 412 413 To search for a free block, use the main RPC API's listFree or findAllocateFrom subs. 414 415 =item order 416 417 Sort order specification. Send a string of comma-separated field names for subsorting. Valid sort fields are cidr, custid, type, 418 city, and description. 419 420 =back 421
Note:
See TracChangeset
for help on using the changeset viewer.