|
NAMEFirefox::Marionette::Bookmark - Represents a Firefox bookmark retrieved using the Marionette protocol VERSIONVersion 1.64 SYNOPSIS use Firefox::Marionette();
use Firefox::Marionette::Bookmark qw(:all);
use Encode();
use v5.10;
my $firefox = Firefox::Marionette->new();
$firefox->import_bookmarks("/path/to/bookmarks.html");
foreach my $bookmark (reverse $firefox->bookmarks()) {
say "Bookmark guid is :" . $bookmark->guid();
say "Bookmark parent guid is :" . $bookmark->parent_guid();
say "Bookmark date added is :" . localtime($bookmark->date_added());
say "Bookmark last modified is :" . localtime($bookmark->last_modified());
say "Bookmark index is :" . $bookmark->idx();
if ($bookmark->type() == BOOKMARK()) {
say "Bookmark url :" . $bookmark->url();
say "Bookmark title is :" . Encode::encode('UTF-8', $bookmark->title(), 1) if ($bookmark->title());
say "Bookmark icon is :" . $bookmark->icon() if ($bookmark->icon());
say "Bookmark icon url is :" . $bookmark->icon_url() if ($bookmark->icon_url());
say "Bookmark keyword is :" . Encode::encode('UTF-8', $bookmark->keyword(), 1) if ($bookmark->keyword());
say "Bookmark tags are :" . Encode::encode('UTF-8', (join q[, ], $bookmark->tags())) if ($bookmark->tags());
} elsif ($bookmark->type() == FOLDER()) {
given ($bookmark->guid()) {
when (MENU() . q[]) { say "This is the menu folder" }
when (ROOT() . q[]) { say "This is the root folder" }
when (TAGS() . q[]) { say "This is the tags folder" }
when (TOOLBAR() . q[]) { say "This is the toolbar folder" }
when (UNFILED() . q[]) { say "This is the unfiled folder" }
when (MOBILE() . q[]) { say "This is the mobile folder" }
default { say "Folder title is :" . $bookmark->title() }
}
} else {
say "-" x 50;
}
}
DESCRIPTIONThis module handles the implementation of a single Firefox bookmark using the Marionette protocol. CONSTANTSConstants are sourced from toolkit/components/places/Bookmarks.sys.mjs <https://hg.mozilla.org/mozilla-central/file/tip/toolkit/components/places/Bookmarks.sys.mjs>. ROOTreturns the guid of the root of the bookmark hierarchy. This is equal to the string 'root________'. MENUreturn the guid for the menu folder. This is equal to the string 'menu________'. TAGSreturn the guid for the tags folder. This is equal to the string 'tags________'. With bug 424160 <https://bugzilla.mozilla.org/show_bug.cgi?id=424160>, tags will stop being bookmarks. TOOLBARreturn the guid for the toolbar folder. This is equal to the string 'toolbar_____'. UNFILEDreturn the guid for the unfiled folder. This is equal to the string 'unfiled_____'. MOBILEreturn the guid for the mobile folder. This is equal to the string 'mobile______'. BOOKMARKreturns the integer 1. FOLDERreturns the integer 2. SEPARATORreturns the integer 3. SUBROUTINES/METHODSnewaccepts a hash as a parameter. Allowed keys are below;
This method returns a new bookmark object. content_typereturns the content type of the bookmark (for example 'text/x-moz-place-container' for a folder). date_addedreturns the time the bookmark was added in seconds since the UNIX epoch. iconreturns the favicon of the bookmark if known. It will be returned as a data URI object. icon_urlreturns the URL of the favicon of the bookmark if known. It will be returned as a URL object. idxreturns the index of the bookmark. This will be an integer. guidreturns the guid of the bookmark. This will be a unique value for the hierarchy and 12 characters in length. There are special guids, which are the ROOT, MENU, TOOLBAR, UNFILED and MOBILE guids. keywordreturns the keyword <https://support.mozilla.org/en-US/kb/bookmarks-firefox#w_how-to-use-keywords-with-bookmarks> (if any) associated with the bookmark. last_modifiedreturns the time the bookmark was last modified in seconds since the UNIX epoch. parent_guidreturns the guid of the bookmark's parent. tagsreturns the tags <https://support.mozilla.org/en-US/kb/categorizing-bookmarks-make-them-easy-to-find> associated with the bookmark as a list. titlereturns the title of the bookmark. This can be for a folder or a bookmark. TO_JSONrequired to allow JSON serialisation <https://metacpan.org/pod/JSON#OBJECT-SERIALISATION> to work correctly. This method should not need to be called directly. typereturns an integer describing the type of the bookmark. This can be BOOKMARK, FOLDER or SEPARATOR. urlreturns the URL of the bookmark. It will be returned as a URL object. DIAGNOSTICSNone. CONFIGURATION AND ENVIRONMENTFirefox::Marionette::Bookmark requires no configuration files or environment variables. DEPENDENCIESFirefox::Marionette::Bookmark requires the following non-core Perl modules
INCOMPATIBILITIESNone reported. BUGS AND LIMITATIONSTo report a bug, or view the current list of bugs, please visit <https://github.com/david-dick/firefox-marionette/issues> AUTHORDavid Dick "<ddick@cpan.org>" LICENSE AND COPYRIGHTCopyright (c) 2024, David Dick "<ddick@cpan.org>". All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See "perlartistic" in perlartistic. DISCLAIMER OF WARRANTYBECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|