+ Added new config settings for whole page screenshot creation. Please update your config.
See update.md for more details.
See whole-page-snapshot.md for more details.
- + Fixed: Snapshot json result from Google.
+ + Fixed whole page screenshot option. See documentation for more details.
+ + Removed page thumbnail creation.
+ New home screen layout
+ Better logging
+ Changed documentation files to markdown syntax.
- + Removed page thumbnail creation.
version 2.8.2 - Dragon Chapel (2023-09-14)
# Whole page screenshot of a website.
-It uses browserless.io to generate a whole page screenshot of a link.
+It uses `https://www.browserless.io/` to generate a whole page screenshot of a link.
There is a free account which allows ap to 1000 requests per month.
# Usage
To use this feature edit the `config.php` and set `COMPLETE_PAGE_SCREENSHOT` to `true`
-and provide your browserles.io API key to `COMPLETE_PAGE_SCREENSHOT_API_KEY`.
+and provide your browserles.io API key to `COMPLETE_PAGE_SCREENSHOT_BROWSERLESS_API_KEY`.
# Limitations and expectations
# XML import and export
-Any link can be exported as a xml file from the link info view. Login is required to trigger this function.
+Any link can be exported as an xml file from the link info view. Login is required to trigger this function.
The result can be used to import it again at the stats view.
-It exports all the link information, image and its tags and categories.
+It exports all the link information, but not the archive images.
The import can overwrite existing links and import non existing ones.
-A import xml file can contain multiple exports. Make sure the root is still there.
+A import xml file can contain multiple exports. Make sure the xml root is still there.
* Insipid
* Personal web-bookmark-system
*
- * Copyright 2016-2023 Johannes Keßler
+ * Copyright 2016-2025 Johannes Keßler
*
* Development starting from 2011: Johannes Keßler
* https://www.bananas-playground.net/projekt/insipid/
# See whole-page-snapshot.txt for more details
const COMPLETE_PAGE_SCREENSHOT = false;
const COMPLETE_PAGE_SCREENSHOT_BROWSERLESS_API = "https://chrome.browserless.io/screenshot?token=";
-const COMPLETE_PAGE_SCREENSHOT_API_KEY = 'YOUR-API-KEY';
+const COMPLETE_PAGE_SCREENSHOT_BROWSERLESS_API_KEY = 'YOUR-API-KEY';
const COMPLETE_PAGE_SCREEENSHOT_BROWSERLESS_TIMEOUT = 10000; # milliseconds
const COMPLETE_PAGE_SCREEENSHOT_BROWSERLESS_IMAGE_QUALITY = 75; # quality for jpeg
view.links = "Links"
view.random.headline = "Surprise"
view.random.link = "Link"
+view.pagescreenshot = "Full page screenshot"
+view.pagescreenshot.link = "View archived full page screenshot";
stats.view.all = "View all"
stats.moderation = "Moderation"
view.links = "Links"
view.random.headline = "Überraschung"
view.random.link = "Link"
+view.pagescreenshot = "Full page screenshot"
+view.pagescreenshot.link = "View archived full page screenshot";
stats.view.all = "Alle"
stats.moderation = "Moderation"
Summoner::sysLog("ERROR ".__METHOD__." mysql catch: ".$e->getMessage());
}
-
if ($query !== false) {
$catObj = new Category($this->DB);
$tagObj = new Tag($this->DB);
*/
/**
- * class Snapshot
- * create from given ULR a Screenshot for storage
- * right now it uses google pagespeedonline for a simple snapshot
- *
+ * Class Snapshot
+ * Create from given ULR a Screenshot for storage.
+ * Currently only browserless.io is supported.
*
*/
class Snapshot {
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_MAXREDIRS, 2);
- // DEBUG ONLY
+ // manual DEBUG ONLY
//$curl_log = fopen(ABSOLUTE_PATH."/curl.log", 'w');
//curl_setopt($ch, CURLOPT_VERBOSE, true);
//curl_setopt($ch, CURLOPT_STDERR, $curl_log);
if(DEBUG) Summoner::sysLog("DEBUG return ".Summoner::cleanForLog($do));
- // DEBUG ONLY
+ // manual DEBUG ONLY
//fclose($curl_log);
$ret = true;
</p>
</div>
</div>
+ <?php if(defined('COMPLETE_PAGE_SCREENSHOT') && COMPLETE_PAGE_SCREENSHOT === true) { ?>
+ <div class="columns">
+ <div class="column is-one-third">
+ <p>
+ <?php echo $T->t('view.pagescreenshot'); ?>
+ </p>
+ </div>
+ <div class="column is-two-third">
+ <?php if(isset($linkData['pagescreenshotLink'])) { ?>
+ <p><a href="<?php echo $linkData['pagescreenshotLink']; ?>" target="_blank"><?php echo $T->t('view.pagescreenshot.link'); ?></a></p>
+ <?php } ?>
+ </div>
+ </div>
+ <?php } ?>
<div class="columns">
<div class="column is-one-third">
<p><?php echo $T->t('view.date.added'); ?></p>