summaryrefslogtreecommitdiff
path: root/FS/FS/ClientAPI.pm
blob: 1677fcc5d0d26ca063525e274663f3496f372dad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package FS::ClientAPI;

use strict;
use base 'Exporter';
use vars qw( @EXPORT_OK %handler $domain $DEBUG );

@EXPORT_OK = qw( load_clientapi_modules );

$DEBUG = 0;

%handler = ();

sub load_clientapi_modules {

  #find modules
  foreach my $INC ( @INC ) {
    my $glob = "$INC/FS/ClientAPI/*.pm";
    warn "FS::ClientAPI: searching $glob" if $DEBUG;
    foreach my $file ( glob($glob) ) {
      $file =~ /\/(\w+)\.pm$/ or do {
        warn "unrecognized ClientAPI file: $file";
        next
      };
      my $mod = $1;
      warn "using FS::ClientAPI::$mod" if $DEBUG;
      eval "use FS::ClientAPI::$mod;";
      die "error using FS::ClientAPI::$mod: $@" if $@;
    }
  }

}

sub dispatch {
  my ( $self, $name ) = ( shift, shift );
  $name =~ s(/)(::)g;
  my $sub = "FS::ClientAPI::$name";
  no strict 'refs';
  &{$sub}(@_);
}

1;