Hi dr_death,

I personally use Moo rather than Moose as I find the latter has lots of power tools I never need. However, I believe the answer is mostly the same for the two systems. You probably want to use default or builder as described at http://search.cpan.org/~ether/Moose-2.2004/lib/Moose/Manual/Attributes.pod#Default_and_builder_methods. Since you'll presumably need one of the other attributes to use in the DB query, you'll probably have to make the attribute lazy and use builder. Something like:

has 'email' => ( is => 'rw', isa => 'Str', lazy => 1, builder => '_lookup_email', ); sub _lookup_email { my $self = shift; return $self->_dbh->selectall_array( 'select email from users where name = ?', {}, $self->name, )->[0]; );
Obviously you'll have to supply the DB connection, error handling if the email is not found, etc. Also note that the Moo[se] Type libraries should be able to provide an email address type, so your isa could be email or similar and the value will be checked.

Edit: On re-reading I see that you maybe want to supply the email address and return the DB ID after adding a record? If so, just change the builder sub to do what you want!

Hope this helps!


The way forward always starts with a minimal test.

In reply to Re: How do I process then return something in Moose? by 1nickt
in thread How do I process then return something in Moose? by dr_death

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.