Diogo Peralta Cordeiro 6e031d623a [VersionBump] 2.0.0beta0 2 years ago
..
actions 8bbbb890e3 [Media] Fix issues with database file storage 2 years ago
classes 0c20d35206 [Embed] Refactoring and bug fixing 4 years ago
lib a244f3ba4d [Embed] Removed old oEmbed and OpenGraph implementation 4 years ago
locale 6e031d623a [VersionBump] 2.0.0beta0 2 years ago
scripts d71eea1ba4 [DATABASE] Fix use of ORDER BY with DISTINCT 2 years ago
tests 165edc2609 [CORE] Add GNUSOCIAL_ENGINE_REPO_URL and increase usage of GNUSOCIAL_ENGINE_URL 2 years ago
CONFIGURE 52819d39d9 [OEmbed][Embed] Renamed OEmbed plugin to Embed 4 years ago
EmbedPlugin.php 0eb96d4805 [Embed] Apply encoding and increased type strictness patches from StoreRemoteMedia 2 years ago
README.md a500277dca [Embed] Revert defaults and fix Readme example 2 years ago

README.md

The Embed plugin for using and representing both Open Graph and oEmbed data.

See: https://ogp.me/ and https://www.oembed.com/

Installation

This plugin is enabled by default.

Settings

  • domain_whitelist: Array of regular expressions. Always escape your dots and end your strings.
  • check_whitelist: Whether to check the domain_whitelist.
  • thumbnail_width: Maximum width of the thumbnail in pixels. Defaults to 128. Setting as null makes it use global [thumbnail][width].
  • thumbnail_height: Maximum height of the thumbnail in pixels. Defaults to 128. Setting as null makes it use global [thumbnail][height].
  • crop: Crop to the size (not preserving aspect ratio). Defaults to true. Setting as null makes it use global [thumbnail][crop].
  • max_size: Max media size. Anything bigger than this is rejected. Defaults to global [attachments][file_quota].

Relevant GNU social global settings

  • [attachments][show_html]: Whether to show HTML oEmbed data. Defaults to false.

Example

$config['attachments']['show_html'] = true;
addPlugin('Embed', [
    'thumbnail_width' => 42,
    'thumbnail_height' => 42,
    'domain_whitelist' => [
        '^i\d*\.ytimg\.com$' => 'YouTube',
        '^i\d*\.vimeocdn\.com$' => 'Vimeo'
    ],
    'check_whitelist' => true
    ]
);