summaryrefslogblamecommitdiff
path: root/lib/Net/Riak/Link.pm
blob: 980aabbc4e3257b997effa18e59c888dbf86d929 (plain) (tree)
1
2
3
4
5
6
7
8
9





                                                                                 


                                                                               









                     
                                          




                             

                              


                                   
                                       
                                         
                              



                 
 
package Net::Riak::Link;

# ABSTRACT: the riaklink object represents a link from one Riak object to another

use Moose;

with 'Net::Riak::Role::Base' => {classes =>
      [{name => 'client', required => 0}, {name => 'bucket', required => 1},]};

has key => (
    is      => 'rw',
    isa     => 'Str',
    lazy    => 1,
    default => '_',
);
has tag => (
    is      => 'rw',
    isa     => 'Str',
    lazy    => 1,
    default => sub {(shift)->bucket->name}
);

sub to_link_header {
    my ($self, $client) = @_;

    $client ||= $self->client;

    my $link = '';
    $link .= '</';
    $link .= $client->prefix . '/';
    $link .= $self->bucket->name . '/';
    $link .= $self->key . '>; riaktag="';
    $link .= $self->tag . '"';
    return $link;
}

1;