summaryrefslogtreecommitdiff
path: root/lib/DeWeave/WBO.pm
blob: 56bc3e1f9694d25f7d318ef4092d154e1072e3f8 (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
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
package DeWeave::WBO;{ 
use Moose;
use namespace::autoclean;
use MooseX::Types::Moose qw(Int Str Num);
use JSON::Any;
use Try::Tiny;
use Data::Dump 'pp';
 
has id => (
    isa => Str,
    required => 1,
    is => 'ro',
);
 
has modified => (
    isa => Num,
    required => 1,
    is => 'ro',
);
 
has sortindex => (
    isa => Num,
    required => 0,
    is => 'ro',
);
 
has payload => (
    traits => ['WBOInternal'],
    isa => Str,
    required => 1,
    is => 'ro',
);
 
has ttl => (
    isa => Int,
    required => 0,
    is => 'ro',
);
 
sub from_json {
    my ($class,$json,$crypt)=@_;
 
    my $j = JSON::Any->new;
 
    my $args = $j->decode($json);
 
    if (defined $args->{payload}) {
        $args->{__crypt}=$crypt;
    }
 
    return $class->new($args);
}
 
around BUILDARGS => sub {
    my $orig = shift;
    my $class = shift;
 
    my $args = $class->$orig(@_);
 
    return $args unless defined $args->{payload};
 
    my $j = JSON::Any->new;
    my $extra_args = $j->decode($args->{payload});
 
    @$args{keys %$extra_args} =
        values %$extra_args;
 
    return $args;
};
 
sub as_string {
    my ($self) = @_;
 
    my $meta = $self->meta;
 
    my $str = '';
 
    for my $attribute ( $meta->get_all_attributes ) {
 
        next if $attribute->does('DeWeave::WBO::Meta::Attribute::Internal');
        next unless $attribute->has_value($self);
 
        my $reader = $attribute->get_read_method;
        $str .= sprintf "%s -> %s\n",
            $attribute->name,
                pp ($self->$reader);
    }
 
    return $str;
}
}
 
package DeWeave::WBO::Meta::Attribute::Internal;{ 
use Moose::Role;
}
 
package Moose::Meta::Attribute::Custom::Trait::WBOInternal;{ 
sub register_implementation 'DeWeave::WBO::Meta::Attribute::Internal' }
}
 
1;