This file is indexed.

/usr/share/perl5/CipUX/RPC/Client.pm is in libcipux-rpc-client-perl 3.4.0.7-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
# +========================================================================+
# || module: CipUX::RPC::Client                                           ||
# ||                                                                      ||
# || Base Class for CipUX XML-RPC clients.                                ||
# ||                                                                      ||
# || Copyright (C) 2009 by Christian Kuelker                              ||
# ||                                                                      ||
# || License: GNU General Public License - GNU GPL version 2              ||
# ||          or (at your opinion) any later version.                     ||
# ||                                                                      ||
# +========================================================================+
#  ID:       $Id$
#  Revision: $Revision$
#  Head URL: $HeadURL$
#  Date:     $Date$
#  Source:   $Source$

package CipUX::RPC::Client;

use 5.008001;
use warnings;
use strict;
use Carp;
use Class::Std;
use Data::Dumper;
use English qw( -no_match_vars);
use Frontier::Client;
use Log::Log4perl qw(get_logger :levels);
use Readonly;

use base qw(CipUX);

{    # BEGIN CLASS

    # CONSTRUCTOR
    # DESTRUCTOR
    # MAIN
    # * RPC COMMANDS
    #   - rpc_ping
    #   - rpc_login
    #   - rpc_logout
    #   - rpc_ttl                   (rpc_intern)
    #   - rpc_cat_module_cache_size (rpc_intern)
    #   - rpc_rpc_intern_cache_size (rpc_intern)
    #   - rpc_task_cache_size       (rpc_intern)
    #   - rpc_flush                 (rpc_intern)
    #   - rpc_check_access
    # * RPC HELPER SUBS
    #   - rpcev
    #   - xmlrpc
    #   - extract_data_for_tpl

    use version; our $VERSION = qv('3.4.0.7');
    use re 'taint';    # Keep data captured by parens tainted
    delete @ENV{qw(PATH IFS CDPATH ENV BASH_ENV)};    # Make %ENV safer

    # +======================================================================+
    # || CONST                                                              ||
    # +======================================================================+
    Readonly::Scalar my $EMPTY_STRING => q{};
    Readonly::Scalar my $L4PCONF      => '/etc/cipux/log4perl.conf';

    # +======================================================================+
    # || OBJECT                                                             ||
    # +======================================================================+
    my %url_of : ATTR( :name<url> :default('http://localhost:8001/RPC2') );
    my %client_of : ATTR( :name<client>);
    my %version_of : ATTR( :name<version> );
    my %login_of : ATTR( :set<login> :get<login> :default 'rc_dummy');
    my %ticket_of : ATTR(  :set<ticket> :default('rc_dummy') :get<ticket> );
    my %password_of : ATTR( :default(undef) );

    # +======================================================================+
    # || GLOBAL                                                             ||
    # +======================================================================+
    my $rpc_ttl                   = 0;
    my $rpc_cat_module_cache_size = 0;
    my $rpc_rpc_intern_cache_size = 0;
    my $rpc_task_cache_size       = 0;

    # +======================================================================+
    # || CONSTRUCTOR                                                        ||
    # +======================================================================+
    sub BUILD {

        # +------------------------------------------------------------------+
        # | API
        my ( $self, $ident, $arg_r ) = @_;

        # +------------------------------------------------------------------+
        # | main

        # not needed, is already sub class
        #$cipux         = CipUX->new();

        # TODO: make that cfg aware
        #Log::Log4perl::init_once('/etc/cipux-cat-web/log4perl.conf');

        # +------------------------------------------------------------------+
        # | API
        return;

    }

    # +======================================================================+
    # || DESTRUCTOR                                                         ||
    # +======================================================================+
    sub DEMOLISH {

        # +------------------------------------------------------------------+
        # | API
        my ( $self, $ident ) = @_;

        # +------------------------------------------------------------------+
        # | main
        #undef $cipux;
        delete $url_of{ ident $self};
        delete $client_of{ ident $self};
        delete $version_of{ ident $self};

        # +------------------------------------------------------------------+
        # | API
        return;

    }

    # +======================================================================+
    # || RPC methods                                                        ||
    # +======================================================================+
    sub rpc_selfpasswd {

        # +------------------------------------------------------------------
        # | API
        my ( $self, $arg_r ) = @_;

        my $password
            = ( exists $arg_r->{password} )
            ? $self->l( $arg_r->{password} )
            : $self->perr('password');

        my $logger = get_logger(__PACKAGE__);
        $logger->debug('going to change the password');

        my $task = 'cipux_task_change_own_password_interactive';

        my $answer_hr = $self->xmlrpc(
            {
                cmd      => $task,
                param_hr => {
                    object       => $login_of{ ident $self},
                    userPassword => $password,
                },

            }
        );

        my $status = $answer_hr->{status} || 'UNKNOWN';

        $logger->debug( 'the status of the XML-RPC server is: ',
            $status, "\n" );

        if ( $status eq 'FALSE' ) {
            my $msg
                = "EXCEPTION: Setting password via server $url_of{ident $self} failed!\n";
            $msg .= "($answer_hr->{msg})\n";

            croak $msg;
        }
        elsif ( $status eq 'UNKNOWN' ) {
            my $msg = 'EXCEPTION: Server status UNKNOWN' . "\n";
            croak $msg;
        }
        elsif ( $status eq 'TRUE' ) {
            return 1;
        }
        return 0;

    }

    sub rpc_ping {

        # +------------------------------------------------------------------
        # | API
        my ( $self, $arg_r ) = @_;

        my $logger = get_logger(__PACKAGE__);
        $logger->debug('going to ping the XML-RPC server');

        my $answer_hr = $self->xmlrpc(
            {
                login => 'rc_pingdummy',
                cmd   => 'ping',
            }
        );

        my $status = $answer_hr->{status} || 'UNKNOWN';

        $logger->debug( 'the status of the XML-RPC server is: ',
            $status, "\n" );

        if ( $status eq 'FALSE' ) {
            my $msg
                = "EXCEPTION: Server $url_of{ident $self} not responding\n";

            croak $msg;
        }
        elsif ( $status eq 'UNKNOWN' ) {
            my $msg = 'EXCEPTION: Server status UNKNOWN' . "\n";
            croak $msg;
        }
        elsif ( $status eq 'TRUE' ) {
            return 1;
        }
        return 0;

    }

    sub rpc_login {

        # +------------------------------------------------------------------
        # | API
        my ( $self, $arg_r ) = @_;

        my $logger = get_logger(__PACKAGE__);
        $logger->debug('BEGIN');

        # prompt 1 login
        my $lstr = "$client_of{ ident $self}: Enter login: ";

        # prompt 2 password
        my $pstr = "$client_of{ ident $self}: Enter password: ";

        $login_of{ ident $self}
            = ( exists $arg_r->{login} )
            ? $self->l( $arg_r->{login} )
            : $self->l( $self->login_prompt( { prompt => $lstr } ) );

        $logger->debug("login: $login_of{ident $self}");

        $password_of{ ident $self}
            = ( exists $arg_r->{password} )
            ? $arg_r->{password}
            : $self->lp( $self->password_prompt( { prompt => $pstr } ) );

        #$logger->debug("password: $password_of{ident $self}");

        # +------------------------------------------------------------------
        # | main
        my $answer_hr = $self->xmlrpc(
            {
                ticket   => 'rc_logindummy',
                cmd      => 'login',
                param_hr => { password => $password_of{ ident $self}, },
            }
        );

        if ( $answer_hr->{status} eq 'TRUE' ) {
            $logger->debug('login successful');

            # +--------------------------------------------------------------
            # | API
            return 1;
        }

        $logger->debug('login NOT successful');

        # +------------------------------------------------------------------
        # | API
        return 0;

    }

    sub rpc_logout {

        # +------------------------------------------------------------------
        # | API
        my ( $self, $arg_r ) = @_;

        my $answer_hr = $self->xmlrpc( { cmd => 'logout', } );

        if ( $answer_hr->{status} eq 'TRUE' ) {
            return 1;
        }
        return 0;

    }

    sub rpc_session {

        my ( $self, $arg_r ) = @_;

        my $answer_hr = $self->xmlrpc( { cmd => 'session', } );

        my $t = $self->get_ticket;

        if ( $answer_hr->{status} eq 'TRUE' ) {
            return $t;
        }
        else {
            $ticket_of{ ident $self} = 0;
        }
        return 0;
    }

    # rpc_intern
    # +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    # | SHELL RPC COMMANDS                                                   |
    # +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+

    sub rpc_ttl {

        # +------------------------------------------------------------------
        # | API
        my ( $self, $arg_r ) = @_;

        # +------------------------------------------------------------------
        # | main
        my $answer_hr = $self->xmlrpc( { cmd => 'ttl', } );

        if ( $answer_hr->{status} ne 'TRUE' ) {
            croak "XML-RPC server ERRROR: $answer_hr->{msg}";
        }

        $rpc_ttl = $answer_hr->{cmdres_r}->{ttl};

        return $rpc_ttl;
    }

    sub rpc_cat_module_cache_size {

        # +------------------------------------------------------------------
        # | API
        my ( $self, $arg_r ) = @_;

        # +------------------------------------------------------------------
        # | main
        my $answer_hr = $self->xmlrpc(
            {
                cmd      => 'rpc_intern',
                param_hr => { subcmd => 'cat_module_cache_size', },
            }
        );

        if ( $answer_hr->{status} ne 'TRUE' ) {
            my $msg = 'XML-RPC server ERRROR:';
            $msg .= ' Can not retrieve cache cat_module cache size.';
            croak "$msg [$answer_hr->{msg}]";
        }

        $rpc_cat_module_cache_size
            = $answer_hr->{cmdres_r}->{cat_module_cache_size};

        return $rpc_cat_module_cache_size;

    }

    sub rpc_rpc_intern_cache_size {

        # +------------------------------------------------------------------
        # | API
        my ( $self, $arg_r ) = @_;

        # +------------------------------------------------------------------
        # | main
        my $answer_hr = $self->xmlrpc(
            {
                cmd      => 'rpc_intern',
                param_hr => { subcmd => 'rpc_intern_cache_size', },
            }
        );

        if ( $answer_hr->{status} ne 'TRUE' ) {
            my $msg = 'XML-RPC server ERRROR:';
            $msg .= ' Can not retrieve cache rpc_intern cache size.';
            croak "$msg [$answer_hr->{msg}]";
        }

        $rpc_rpc_intern_cache_size
            = $answer_hr->{cmdres_r}->{rpc_intern_cache_size};

        return $rpc_rpc_intern_cache_size;

    }

    sub rpc_task_cache_size {

        # +------------------------------------------------------------------
        # | API
        my ( $self, $arg_r ) = @_;

        # +------------------------------------------------------------------
        # | main
        my $answer_hr = $self->xmlrpc(
            {
                cmd      => 'rpc_intern',
                param_hr => { subcmd => 'task_cache_size', },
            }
        );

        if ( $answer_hr->{status} ne 'TRUE' ) {
            my $msg = 'XML-RPC server ERRROR:';
            $msg .= ' Can not retrieve cache task cache size.';
            croak "$msg [$answer_hr->{msg}]";
        }

        $rpc_task_cache_size = $answer_hr->{cmdres_r}->{task_cache_size};

        return $rpc_task_cache_size;

    }

    sub rpc_flush {

        # +------------------------------------------------------------------
        # | API
        my ( $self, $arg_r ) = @_;

        # +------------------------------------------------------------------
        # | main
        my $answer_hr = $self->xmlrpc(
            {
                cmd      => 'rpc_intern',
                param_hr => { subcmd => 'flush', },
            }
        );

        if ( $answer_hr->{status} ne 'TRUE' ) {
            my $msg = 'XML-RPC server ERRROR:';
            $msg .= ' Can not flush cache.';
            croak "$msg [$answer_hr->{msg}]";
        }

        return 1;

    }

    sub rpc_check_access {

        # subcmd:   user_task_access       | user_task_access_survey       |
        #           user_cat_module_access | user_cat_module_access_survey |
        #           user_rpc_intern_access | user_rpc_intern_access_survey
        # rpc_mode: rpc_info               | rpc_intern
        # entity:   task                   | rpc_intern      | cat_module
        # scope:    single                 | manifold
        # param_ar: array reference of to be tested modules

        # +------------------------------------------------------------------
        # | API
        my ( $self, $arg_r ) = @_;

        # rpc_info  | rpc_intern
        my $rpcmode
            = exists $arg_r->{rpcmode}
            ? $self->l( $arg_r->{rpcmode} )
            : $self->perr('rpcmode');

        # task   | rpc_intern | cat_module
        my $entity
            = exists $arg_r->{entity}
            ? $self->l( $arg_r->{entity} )
            : $self->perr('entity');

        # single | manifold
        my $scope
            = exists $arg_r->{scope}
            ? $self->l( $arg_r->{scope} )
            : $self->perr('scope');

        my $subcmd
            = exists $arg_r->{subcmd}
            ? $self->l( $arg_r->{subcmd} )
            : $login_of{ ident $self};

        my $param_ar
            = exists $arg_r->{param_ar}
            ? $self->a( $arg_r->{param_ar} )
            : $self->perr('param_ar');

        my $logger = get_logger(__PACKAGE__);

        # dispatch shell logic and rpc server logic
        # rpc shell     rpcmode        xml-rpc server command
        # ---------------------------------------------------
        # rbac      ->  rpc_info    -> rpc_info
        # rpc       ->  rpc_intern  -> rpc_intern
        my $cmd
            = ( $rpcmode eq 'rpc_info' ) ? 'rpc_info'
            : ( $rpcmode eq 'rpc_intern' ) ? 'rpc_intern'
            :   croak "CipUX shell Error: invalid mode [$rpcmode]\n";
        $logger->debug("cmd [$cmd]");

        my $from = (
                   $subcmd eq 'user_task_access'
                or $subcmd eq 'user_task_access_survey'
                or $subcmd eq 'user_cat_module_access'
                or $subcmd eq 'user_cat_module_access_survey'
                or $subcmd eq 'user_rpc_intern_access'
                or $subcmd eq 'user_rpc_intern_access_survey'
        ) ? shift @{$param_ar} : undef;
        if ( defined $from ) {
            $logger->debug("from [$from]");
        }
        else {
            $logger->debug("from [UNDEF]");
        }

        if ( $cmd ne 'rpc_intern' ) {
            $from = $login_of{ ident $self};
        }
        if ( defined $from ) {
            $logger->debug("from [$from]");
        }
        else {
            $logger->debug("from [UNDEF]");
        }

        my $answer_hr = $self->xmlrpc(
            {
                cmd      => $cmd,
                param_hr => {
                    subcmd  => $subcmd,
                    rpcmode => $rpcmode,
                    entity  => $entity,
                    scope   => $scope,
                    from    => $from,
                    to_ar   => $param_ar,
                },
            }
        );

        if ( $answer_hr->{status} ne 'TRUE' ) {
            croak "XML-RPC server ERRROR: $answer_hr->{msg}";
        }

        if (    exists $answer_hr->{cmdres_r}->{access_hr}
            and exists $answer_hr->{cmdres_r}->{from} )
        {

            my $r_hr = $answer_hr->{cmdres_r}->{access_hr};
            my $from = $answer_hr->{cmdres_r}->{from};

            if ( defined $r_hr and ref $r_hr eq 'HASH' ) {
                $logger->debug("return from [$from]");
                $logger->debug( 'return r_hr: ',
                    { filter => \&Dumper, value => $r_hr } );

                return ( $from, $r_hr );
            }

        }

        return ( undef, {} );

    }

    # +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    # | RPC HELPER METHOD                                                    |
    # +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    sub rpcev {
        my $self = shift;    # obj
        my $c    = shift;    # code_ref to be evaluated
        my $p    = shift;    # param_hr | undef
        my $a    = undef;    # answer (scalar or hash reference)
        if ( defined $p ) {
            eval { $a = $c->($p) };
        }
        else {
            eval { $a = $c };
        }
        if ($EVAL_ERROR) {
            croak "Server is down: $EVAL_ERROR\n";
        }
        return $a;
    }

    sub xmlrpc {

        my ( $self, $arg_r ) = @_;

        my $cmd
            = exists $arg_r->{cmd}
            ? $self->l( $arg_r->{cmd} )
            : $self->perr('cmd');

        my $tmp_login
            = exists $arg_r->{login}
            ? $self->l( $arg_r->{login} )
            : $login_of{ ident $self};

        my $tmp_ticket
            = exists $arg_r->{ticket}
            ? $self->l( $arg_r->{ticket} )
            : $ticket_of{ ident $self};

        my $param_hr
            = exists $arg_r->{param_hr}
            ? $self->h( $arg_r->{param_hr} )
            : {};

        my $logger = get_logger(__PACKAGE__);

        my $header_hr = {
            'cipux_version'  => "$VERSION",
            'client_name'    => "$client_of{ident $self}",
            'client_version' => "$version_of{ident $self}",
            'rpc_version'    => '2.0',
            'client_key'     => $EMPTY_STRING,
            'client_cred'    => $EMPTY_STRING,
            'gmt_time'       => time(),
        };

        my $pay_hr = {
            header_hr => $header_hr,
            login     => $tmp_login,
            ticket    => $tmp_ticket,
            cmd       => $cmd,
            param_hr  => $param_hr
        };

        my $socket = Frontier::Client->new( url => $url_of{ ident $self} );

        my $call = $cmd;
        if ( $cmd =~ m/^cipux_task/smx ) { $call = 'task'; }
        $logger->debug("cmd [$cmd]");
        $logger->debug("call [$call]");

        my $answer_hr = $socket->call( $call, $pay_hr );

        # if we got a new ticket explicitly (login, session): use it
        if ( ref( $answer_hr->{cmdres_r} ) eq 'HASH' ) {
            my $t = $answer_hr->{cmdres_r}->{ticket};
            if ( defined $t and $t ne $EMPTY_STRING ) {
                $ticket_of{ ident $self} = $t;
                $logger->debug("set new ticket [$t]");
            }
        }

        if (wantarray) {
            $logger->debug("wantarray!");
            confess "depricated wantarray in xmlrpc call!";
            return $answer_hr, $ticket_of{ ident $self};
        }
        else {
            return $answer_hr;
        }

    }

    sub extract_data_for_tpl {

        my ( $self, $arg_r ) = @_;

        my $letter      = ( exists $arg_r->{letter} )      ? 1 : 0;
        my $use_ltarget = ( exists $arg_r->{use_ltarget} ) ? 1 : 0;

        my $answer_hr
            = exists $arg_r->{answer_hr}
            ? $self->h( $arg_r->{answer_hr} )
            : $self->perr('answer_hr');

        # +------------------------------------------------------------------+
        # | prepare
        my $logger = get_logger(__PACKAGE__);

        # We have to deal with 2 different data formats
        # [1] traditional _list_ data
        # 'cmdres_r' => {
        #      pupil' => {
        #           'uid' => [ 'pupil' ]
        #      },
        #      'bilbo' => {
        #           'uid' => [ 'bilbo' ]
        #      },
        # }
        # Results in:
        # data_ar $VAR1 = [
        #  { 'uid' => 'pupil' },
        #  { 'uid' => 'bilbo'
        #  ]
        #
        # [2] And second the _member_ list format
        # 'cmdres_r' => {
        #     'students' => {
        #         'cn' => [ 'students' ],
        #         'memberUid' => [
        #                         'bilbo',
        #                         'frmeier'
        #                        ]
        #     }
        # },
        # Results FALLBACK (good for 'retrieve' bad for 'list member'):
        # data_ar $VAR1 = [
        #  {
        #    'cn' => 'students',
        #    'memberUid' => 'bilbo, frodo, mytest, mytest2, frmeier'
        #  }
        #];
        # Results LTARGET in (bad for 'retrieve' good for 'list member'):
        # if '{answer_hr=>answer_hr,use_ltarget=>1}'
        # data_ar $VAR1 = [
        #  { 'memberUid' => 'bilbo' },
        #  { 'memberUid' => 'frmeier'
        #  ]

        # +------------------------------------------------------------------+
        # | main
        $logger->debug("use_ltarget [$use_ltarget]");
        $logger->debug("letter [$letter]");
        my $return_hr = {};
        my @tpl_data  = ();

        #my @sorted = sort keys %{ $answer_hr->{cmdres_r}};

        my %firstletter = ();
        foreach my $obj ( sort keys %{ $answer_hr->{cmdres_r} } ) {

            #$logger->debug("extract obj [$obj]");

            # if we want an analysis for the first letter
            # here it comes: (what else do we want?)
            if ($letter) {
                my $l = uc( substr( $obj, 0, 1 ) );

                #$logger->debug("letter [$l]");
                if ( not defined $firstletter{$l} ) {
                    $firstletter{$l} = 1;
                }
                else {
                    $firstletter{$l}++;
                }
            }

            # create an array of hash_refs
            my $data_hr = $answer_hr->{cmdres_r}->{$obj};

            # the ltarget from the task layer
            my $ltarget
                = (     exists $answer_hr->{ltarget}
                    and defined $answer_hr->{ltarget}
                    and $use_ltarget )
                ? $answer_hr->{ltarget}
                : 'NULL';
            $logger->debug("ltarget [$ltarget]");

            # test if we get a hint from the task layer
            if ( $ltarget eq 'NULL' ) {

                # no help, FALLBACK
                my %data = ();

                # key = uid, cipuxFirstname, cipuxLastname, ...
                foreach my $key ( keys %{$data_hr} ) {
                    $data{$key} = join q{, }, @{ $data_hr->{$key} };
                    utf8::encode( $data{$key} );
                }
                push @tpl_data, \%data;
            }
            else {

                # LTARGET
                $return_hr->{ltarget} = $ltarget;

                # for  'bilbo', 'frodo', ...
                foreach my $value ( @{ $data_hr->{$ltarget} } ) {

                    #$logger->debug("ltarget [$ltarget]");
                    utf8::encode($value);

                    #$logger->debug("value [$value]");
                    push @tpl_data, { $ltarget => $value };
                }
            }
        }

        # Ah, oh yes here it comes it again: if we want to have an
        # analyses for the first letter, we should give it back
        if ($letter) {
            my @firstletter = sort keys %firstletter;
            my $fl          = $firstletter[0];

            #$logger->debug("fristletter [$fl]");
            #$logger->debug('END');
            #        data        lettercount    firstletter
            $return_hr->{firstletter_hr} = \%firstletter;
            $return_hr->{firstletter}    = $fl;
        }
        $return_hr->{tpl_data_ar} = \@tpl_data;

        # +------------------------------------------------------------------+
        # | API
        # [1] default:
        #   returns always { tpl_data_ar }
        # [2] letter=>1
        #   returns additionally to [1]: { firstletter_hr, firstletter }
        # [3] use_ltarget=>1
        #   returns additionally to [1]: { ltarget }
        return $return_hr;    # $extract_answer_hr
    }

}

1;                            # Magic true value required at end of module

__END__

=pod

=for stopwords login uid rpc UTF UTF-8 CipUX XML-RPC Destructor xmlrpc webpage Kuelker TTL subcommands

=head1 NAME

CipUX::RPC::Client - XML-RPC client call library


=head1 VERSION

This document describes CipUX::RPC::Client version 3.4.0.7


=head1 SYNOPSIS

 use warnings;
 use strict;
 use CipUX::RPC::Client;
 use version; our $VERSION = qv('3.4.0.0');

 my $rpc = CipUX::RPC::Client->new({
               url=>'http://localhost:8001/RPC2',
               client=>'clientname', # name of client
               version=>'3.4.0.0', # version of client
          });

 if ( $rpc->rpc_ping() ) { print "OK\n" }else{ exit 1; }

 if ( $rpc->rpc_login() ) { print "OK\n" }else{ exit 1; }

 # probably do some other calls

 if ( $rpc->rpc_logout() ) { print "OK\n" }else{ exit 1; }

 exit 0;

=head1 DESCRIPTION


=head1 SUBROUTINES/METHODS

=head2 BUILD

Constructor (Not used at the moment)

=head2 DEMOLISH

Destructor

=head2 get_login

Retrieve the login (uid) of the rpc client object.

  $login = $rpc->get_login();

=head2 rpc_selfpasswd

Set own password.

  1|0 = $rpc->rpc_login( { password=>$password } );

=head2 rpc_ping

Test if the server is up.

  1|0 = $rpc->rpc_ping();

=head2 rpc_login

Perform a log in.

  1|0 = $rpc->rpc_login();

=head2 rpc_logout

Perform a log out.

  1|0 = $rpc->rpc_logout();

=head2 rpc_ttl

Returns the TTL via rpc_intern.

  $ttl = $rpc->rpc_ttl();

=head2 rpc_session

Returns a ticket or 0;

  my $ticket = $rpc->rpc_session();

=head2 rpc_cat_module_cache_size

Returns the cache size via rpc_intern.

  $integer = $rpc->rpc_cat_module_cache_size();

=head2 rpc_rpc_intern_cache_size

Returns the cache size via rpc_intern.

  $integer = $rpc->rpc_rpc_intern_cache_size();

=head2 rpc_task_cache_size

Returns the cache size via rpc_intern.

  $integer = $rpc->rpc_task_cache_size();

=head2 rpc_flush

Flush the cache via rpc_intern.

  0|1 = $rpc->rpc_flush();

=head2 rpc_check_access

Aggregate several check access subcommands.


  ( $from, $r_hr ) = $rpc->rpc_check_access({
     rpcmode    => rpc_intern|rpc_info,
     entity     => task   | rpc_intern | cat_module
     scope      => single | manifold,
     subcommand => user_task_access
                   | user_task_access_survey
                   | user_cat_module_access
                   | user_cat_module_access_survey
                   | user_rpc_intern_access
                   | user_rpc_intern_access_survey

     param_ar   => (rest send as to_ar)
  });

=head2 rpcev

Helper routine to evaluate calls.

     $ok   = $rpc->rpcev( 'ping',  \&{ $rpc->rpc_ping } );
     $ok   = $rpc->rpcev( 'login', \&{ $rpc->rpc_login } );
     $code = sub { return $rpc->xmlrpc(@_); }; # remains the same
     $a_hr = $rpc->rpcev 'list', $code, {cmd => 'cipux_task_list_student_accounts'} );
     $d_ar = $rpc->extract_data_for_tpl( {answer_hr => $a_hr, use_ltarget=>1} );
     print "Students on the system:\n";
     foreach my $l (@{$d_ar->{tpl_data_ar}}){ print "\t$l->{$d_ar->{ltarget}}\n";}
     $ok   = $rpc->rpcev( 'logout',\&{ $rpc->rpc_logout }, );


=head2 xmlrpc

Helper subroutine to executing XML-RPC calls.


  ($answer_hr, $ticket) = $rpc->xmlrpc({
        cmd    => 'cipux_task_*|rpc_intern|...',  # mandatory
        login  => $login,
        ticket => $ticket,
        param_hr => {},
  });

=head2 extract_data_for_tpl

Helper subroutine to extract data for using in web templates.
Encode it into UTF-8.

 $tpl_data_ar = $rpc->extract_data_for_tpl({answer_hr=>$answer_hr});

=head1 DIAGNOSTICS

=over

=item C<< EXCEPTION: Setting password via server %url failed! >>


=item C<< EXCEPTION: Server %url not responding >>


=item C<< EXCEPTION: Server status UNKNOWN >>


=back


=head1 CONFIGURATION AND ENVIRONMENT

CipUX::RPC::Client requires no configuration files or environment
variables.


=head1 DEPENDENCIES

        Carp
        CipUX
        Class::Std
        Data::Dumper
        English
        Frontier::Client
        Log::Log4perl
        Readonly
        version


=head1 INCOMPATIBILITIES

None reported.


=head1 BUGS AND LIMITATIONS

No bugs have been reported.


=head1 SEE ALSO

See the CipUX webpage and the manual at L<http://www.cipux.org>

See the mailing list L<http://sympa.cipworx.org/wws/info/cipux-devel>


=head1 AUTHOR

Christian Kuelker  E<lt>christian.kuelker@cipworx.orgE<gt>

=head1 LICENSE AND COPYRIGHT

Copyright (C) 2009 by Christian Kuelker. All rights reserved.

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2, or (at
your option) any later version.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA

=head1 DISCLAIMER OF WARRANTY

BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH
YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
NECESSARY SERVICING, REPAIR, OR CORRECTION.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE
LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL,
OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE
THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

=cut