summary refs log tree commit diff
path: root/lib/Net/Riak/Link.pm
blob: c5ed86376dd4b1552b8cef4b210b5af55e11c4a0 (plain) (blame)
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
package Net::Riak::Link;

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

use Moose;

has client => (
    is       => 'ro',
    isa      => 'Net::Riak::Client',
    required => 0,
);
has bucket => (
    is       => 'ro',
    isa      => 'Net::Riak::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;