Project

General

Profile

1
 #
2
 #  '$RCSfile$'
3
 #  Copyright: 2000 Regents of the University of California 
4
 #
5
 #   '$Author: cjones $'
6
 #     '$Date: 2016-02-26 08:34:04 -0800 (Fri, 26 Feb 2016) $'
7
 # '$Revision: 9535 $' 
8
 # 
9
 # This program is free software; you can redistribute it and/or modify
10
 # it under the terms of the GNU General Public License as published by
11
 # the Free Software Foundation; either version 2 of the License, or
12
 # (at your option) any later version.
13
 #
14
 # This program is distributed in the hope that it will be useful,
15
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 # GNU General Public License for more details.
18
 #
19
 # You should have received a copy of the GNU General Public License
20
 # along with this program; if not, write to the Free Software
21
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22
 #
23

    
24
package Metacat;
25

    
26
require 5.005_62;
27
use strict;
28
use warnings;
29

    
30
require Exporter;
31
use AutoLoader qw(AUTOLOAD);
32

    
33
use LWP::UserAgent;
34
use HTTP::Request::Common qw(POST);
35
use HTTP::Cookies;
36

    
37
our @ISA = qw(Exporter);
38

    
39
# Items to export into callers namespace by default. Note: do not export
40
# names by default without a very good reason. Use EXPORT_OK instead.
41
# Do not simply export all your public functions/methods/constants.
42

    
43
# This allows declaration	use Metacat ':all';
44
# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
45
# will save memory.
46
our %EXPORT_TAGS = ( 'all' => [ qw(
47
	
48
) ] );
49

    
50
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
51

    
52
our @EXPORT = qw(
53
	
54
);
55
our $VERSION = '0.01';
56

    
57

    
58
# Preloaded methods go here.
59

    
60
#############################################################
61
# Constructor creates a new class instance and inits all
62
# of the instance variables to their proper default values,
63
# which can later be changed using "set_options"
64
#############################################################
65
sub new {
66
  my($type,$metacatUrl) = @_;
67
  my $cookie_jar = HTTP::Cookies->new;
68

    
69
  my $self = {
70
    metacatUrl     => $metacatUrl,
71
    message        => '',
72
    cookies        => \$cookie_jar
73
  };
74

    
75
  bless $self, $type; 
76
  return $self;
77
}
78

    
79
#############################################################
80
# subroutine to set options for the class, including the URL 
81
# for the Metacat database to which we would connect
82
#############################################################
83
sub set_options {
84
  my $self = shift;
85
  my %newargs = ( @_ );
86

    
87
  my $arg;
88
  foreach $arg (keys %newargs) {
89
    $self->{$arg} = $newargs{$arg};
90
  }
91
}
92

    
93
#############################################################
94
# subroutine to send data to metacat and get the response
95
# return response from metacat
96
#############################################################
97
sub sendData {
98
  my $self = shift;
99
  my %postData = ( @_ );
100

    
101
  $self->{'message'} = '';
102
  my $userAgent = new LWP::UserAgent;
103
  $userAgent->agent("MetacatClient/1.0");
104

    
105
  # determine encoding type
106
  my $contentType = 'application/x-www-form-urlencoded';
107
  if ($postData{'enctype'}) {
108
      $contentType = $postData{'enctype'};
109
      delete $postData{'enctype'};
110
  }
111
  
112
  
113
  my $request;
114
  if ( $self->{'auth_token_header'} ) {
115
      # if available, set the Authorization header from the auth_token_header instance variable
116
      $request = POST("$self->{'metacatUrl'}",
117
                      Content_Type => $contentType,
118
                      Authorization => $self->{'auth_token_header'},
119
                      Content => \%postData
120
                      );
121
      
122
  } else {
123
      $request = POST("$self->{'metacatUrl'}",
124
                      Content_Type => $contentType,
125
                      Content => \%postData
126
                      );      
127
  }
128

    
129
  # set cookies on UA object
130
  my $cookie_jar = $self->{'cookies'};
131
  $$cookie_jar->add_cookie_header($request);
132
  #print "Content_type:text/html\n\n";
133
  #print "request: " . $request->as_string();
134

    
135
  my $response = $userAgent->request($request);
136
  #print "response: " . $response->as_string();
137
   
138
  if ($response->is_success) {
139
    # save the cookies
140
    $$cookie_jar->extract_cookies($response);
141
    # save the metacat response message
142
    $self->{'message'} = $response->content;
143
  } else {
144
    #print "SendData content is: ", $response->content, "\n";
145
    return 0;
146
  } 
147
  return $response;
148
}
149

    
150
#############################################################
151
# subroutine to log into Metacat and save the cookie if the
152
# login is valid.  If not valid, return 0. If valid then send 
153
# following values to indicate user status
154
# 1 - user
155
# 2 - moderator
156
# 3 - administrator
157
# 4 - moderator and administrator
158
#############################################################
159
sub login {
160
  my $self = shift;
161
  my $username = shift;
162
  my $password = shift;
163

    
164
  my $returnval = 0;
165

    
166
  my %postData = ( action => 'login',
167
                   qformat => 'xml',
168
                   username => $username,
169
                   password => $password
170
                 );
171
  my $response = $self->sendData(%postData);
172
  if (($response) && $response->content =~ /<login>/) {
173
    $returnval = 1;
174
  }
175

    
176
  if (($response) && $response->content =~ /<isAdministrator>/) {
177
	if (($response) && $response->content =~ /<isModerator>/) {
178
    		$returnval = 4;
179
	} else {
180
		$returnval = 3;
181
	}
182
  } elsif (($response) && $response->content =~ /<isModerator>/){
183
	$returnval = 2;
184
  }
185

    
186
  return $returnval;
187
}
188

    
189
#############################################################
190
# subroutine to logout of Metacat
191
#############################################################
192
sub logout {
193
    my $self = shift;
194
    
195
    my %postData = (action => 'logout');
196
    
197
    my $response = $self->sendData(%postData);
198
    
199
    my $returnval = 1;
200
    if (($response) && $response->content =~ /<logout>/) {
201
    	$returnval = 0;
202
  	}
203
  	
204
    # clear the cookie
205
    my $cookie_jar = $self->{'cookies'};
206
    $$cookie_jar->clear();
207
    
208
    return $returnval;
209
}
210

    
211
#############################################################
212
# subroutine to log into Metacat and get usr info xml for
213
# a logged in user
214
#############################################################
215
sub getUserInfo {
216
	my $self = shift;
217

    
218
	my %postData = (action => 'getloggedinuserinfo');
219
  
220
	my $response = $self->sendData(%postData);
221

    
222
	return $response->content;
223
}
224

    
225
#############################################################
226
# subroutine to insert an XML document into Metacat
227
# If success, return 1, else return 0
228
#############################################################
229
sub insert {
230
  my $self = shift;
231
  my $docid = shift;
232
  my $xmldocument = shift;
233
  my $dtd = shift;
234

    
235
  my $returnval = 0;
236

    
237
  my %postData = ( action => 'insert',
238
                   docid => $docid,
239
                   doctext => $xmldocument
240
                 );
241
  if ($dtd) {
242
    $postData{'dtdtext'} = $dtd;
243
  }
244

    
245
  my $response = $self->sendData(%postData);
246
  if (($response) && $response->content =~ /<success>/) {
247
    $returnval = 1;
248
  } elsif (($response)) {
249
    $returnval = 0;
250
    #print "Error response from sendData!\n";
251
    #print $response->content, "\n";
252
  } else {
253
    $returnval = 0;
254
    #print "Invalid response from sendData!\n";
255
  }
256

    
257
  return $returnval;
258
}
259

    
260
#############################################################
261
# subroutine to update an XML document in Metacat
262
# If success, return 1, else return 0
263
#############################################################
264
sub update {
265
  my $self = shift;
266
  my $docid = shift;
267
  my $xmldocument = shift;
268
  my $dtd = shift;
269

    
270
  my $returnval = 0;
271

    
272
  my %postData = ( action => 'update',
273
                   docid => $docid,
274
                   doctext => $xmldocument
275
                 );
276
  if ($dtd) {
277
    $postData{'dtdtext'} = $dtd;
278
  }
279

    
280
  my $response = $self->sendData(%postData);
281
  if (($response) && $response->content =~ /<success>/) {
282
    $returnval = 1;
283
  }
284

    
285
  return $returnval;
286
}
287

    
288
############################################################
289
# subroutine to upload an XML document in Metacat
290
# If success, return 1, else return 0
291
#############################################################
292
sub upload {
293
  my $self = shift;
294
  my $docid = shift;
295
  my $datafile = shift;
296
  my $filename = shift;
297

    
298
  my $returnval = 0;
299

    
300
  my %postData = ( action => 'upload',
301
                   docid => $docid,
302
                   datafile => [$datafile, $filename],
303
                   enctype => 'multipart/form-data'
304
                 );
305

    
306
  my $response = $self->sendData(%postData);
307
  #print "response is: $response";
308
  # 
309
  if (($response) && $response->content =~ /<success>/) {
310
    $returnval = $response->content;
311
  }
312

    
313
  return $returnval;
314
}
315

    
316

    
317
#############################################################
318
# subroutine to delete an XML document in Metacat
319
# If success, return 1, else return 0
320
#############################################################
321
sub delete {
322
  my $self = shift;
323
  my $docid = shift;
324

    
325
  my $returnval = 0;
326

    
327
  my %postData = ( action => 'delete',
328
                   docid => $docid
329
                 );
330

    
331
  my $response = $self->sendData(%postData);
332
  if (($response) && $response->content =~ /<success>/) {
333
    $returnval = 1;
334
  }
335

    
336
  return $returnval;
337
}
338

    
339
#############################################################
340
# subroutine to set access for an XML document in Metacat
341
# If success, return 1, else return 0
342
#############################################################
343
sub setaccess {
344
  my $self = shift;
345
  my $docid = shift;
346
  my $principal = shift;
347
  my $permission = shift;
348
  my $permType = shift;
349
  my $permOrder = shift;
350

    
351
  my $returnval = 0;
352

    
353
  my %postData = ( action => 'setaccess',
354
                   docid => $docid,
355
		   principal => $principal,
356
		   permission => $permission,
357
		   permType => $permType,
358
		   permOrder => $permOrder
359
                 );
360

    
361
  my $response = $self->sendData(%postData);
362
  if (($response) && $response->content =~ /<success>/) {
363
    $returnval = 1;
364
  }
365

    
366
  return $returnval;
367
}
368

    
369

    
370
#############################################################
371
# subroutine to read an XML document from Metacat
372
# returns the XML from Metacat, which may be an error response
373
#############################################################
374
sub read {
375
  my $self = shift;
376
  my $docid = shift;
377

    
378
  my %postData = ( action => 'read',
379
                   qformat => 'xml',
380
                   docid => $docid
381
                 );
382

    
383
  my $response = $self->sendData(%postData);
384
  
385
  my $returnval = 0;
386
  if ($response) {
387
    $returnval = $response;
388
  } 
389
    
390
  return $returnval;
391
}
392

    
393
#############################################################
394
# subroutine to query metacat using a structured path query
395
# returns the XML from Metacat, which may be an error response
396
#############################################################
397
sub squery {
398
  my $self = shift;
399
  my $query = shift;
400

    
401
  my %postData = ( action => 'squery',
402
                   qformat => 'xml',
403
                   query => $query
404
                 );
405

    
406
  my $response = $self->sendData(%postData);
407

    
408
  my $returnval = 0;
409
  if ($response) {
410
    $returnval = $response;
411
  } 
412
    
413
  return $returnval;
414
}
415

    
416
#############################################################
417
# subroutine to get the maximimum id in a series
418
# If success, return max id, else return 0
419
#############################################################
420
sub getLastId {
421
  my $self = shift;
422
  my $scope = shift;
423

    
424
  my $returnval = 0;
425

    
426
  my %postData = ( action => 'getlastdocid',
427
                   scope => $scope
428
                 );
429

    
430
  my $response = $self->sendData(%postData);
431
  if (($response) && $response->content =~  /<docid>(.*)<\/docid>/s) {
432
      $returnval = "$1";
433
  } elsif (($response)) {
434
    $returnval = 0;
435
    #print "Error response from sendData!\n";
436
    #print $response->content, "\n";
437
  } else {
438
    $returnval = 0;
439
    #print "Invalid response from sendData!\n";
440
  }
441

    
442
  return $returnval;
443
}
444

    
445
#############################################################
446
# subroutine to get the maximimum id in a series
447
# If success, return max id, else return 0
448
#############################################################
449
sub getLastRevision {
450
  my $self = shift;
451
  my $docid = shift;
452

    
453
  my $returnval = 0;
454

    
455
  my %postData = ( action => 'getrevisionanddoctype',
456
                   docid => $docid
457
                 );
458

    
459
  my $response = $self->sendData(%postData);
460
  if (($response) && $response->content =~ /(.*);(.*)/s)  {
461
      $returnval = "$1";
462
  } elsif (($response)) {
463
    $returnval = 0;
464
    #print "Error response from sendData!\n";
465
    #print $response->content, "\n";
466
  } else {
467
    $returnval = 0;
468
    #print "Invalid response from sendData!\n";
469
  }
470

    
471
  return $returnval;
472
}
473

    
474
#############################################################
475
# subroutine to get the docid for a given PID
476
# If success, return docid, else return -1
477
#############################################################
478
sub getDocid {
479
  my $self = shift;
480
  my $pid = shift;
481

    
482
  my $returnval = 0;
483

    
484
  my %postData = ( action => 'getdocid',
485
                   pid => $pid
486
                 );
487

    
488
  my $response = $self->sendData(%postData);
489
  if (($response) && $response->content =~  /<docid>(.*)<\/docid>/s) {
490
      $returnval = "$1";
491
  } elsif (($response)) {
492
    $returnval = -1;
493
    #print "Error response from sendData!\n";
494
    #print $response->content, "\n";
495
  } else {
496
    $returnval = -1;
497
    #print "Invalid response from sendData!\n";
498
  }
499

    
500
  return $returnval;
501
}
502

    
503
#############################################################
504
# subroutine to get the message returned from the last executed
505
# metacat action.  These are generally XML formatted messages.
506
#############################################################
507
sub getMessage {
508
  my $self = shift;
509

    
510
  return $self->{'message'};
511
}
512

    
513
#############################################################
514
# subroutine to get the cookies returned from the metacat 
515
# server to establish (and pass on) session info (JSESSIONID).
516
#############################################################
517
sub getCookies {
518
  my $self = shift;
519

    
520
  return $self->{'cookies'};
521
}
522

    
523
# Autoload methods go after =cut, and are processed by the autosplit program.
524

    
525
1;
526
__END__
527
# Below is stub documentation for your module. You better edit it!
528

    
529
=head1 NAME
530

    
531
Metacat - Perl extension for communicating with the Metacat XML database
532

    
533
=head1 SYNOPSIS
534

    
535
  use Metacat;
536
  my $metacat = Metacat->new();
537
  my $response = $metacat->login($username, $password); 
538
  print $metacat->getMessage();
539
  $response = $metacat->insert($docid, $xmldoc); 
540
  print $metacat->getMessage();
541
  $response = $metacat->insert($docid, $xmldoc, $dtd); 
542
  print $metacat->getMessage();
543
  $response = $metacat->update($docid, $xmldoc); 
544
  print $metacat->getMessage();
545
  $response = $metacat->upload($docid, $data); 
546
  print $metacat->getMessage();
547
  $htmlResponse = $metacat->read($docid); 
548
  $xmldoc = $htmlResponse->content();
549
  print $xmldoc;
550
  $resultset = $metacat->squery($pathquery); 
551
  print $resultset;
552
  $response = $metacat->delete($docid); 
553
  $response = $metacat->setaccess($docid,$principal,$permission,$permType,$permOrder); 
554
  my $lastid = $metacat->getLastId("obfs");
555
  print $metacat->getMessage();
556
  $response = $metacat->getCookies(); 
557
  print $metacat->getMessage();
558

    
559
=head1 DESCRIPTION
560

    
561
This is a client library for accessing the Metacat XML database.  Metacat
562
is a Java servlet that accepts commands over HTTP and returns XML and
563
HTML responses.  See http://knb.ecoinformatics.org for details about
564
Metacat and its interface.
565

    
566
=head2 EXPORT
567

    
568
None by default.
569

    
570

    
571
=head1 AUTHOR
572

    
573
Matthew B. Jones, jones@nceas.ucsb.edu
574

    
575
=head1 SEE ALSO
576

    
577
perl(1).
578

    
579
=cut
(5-5/7)