• This repository has been archived on 02/Dec/2019
  • Stars
    star
    131
  • Rank 274,265 (Top 6 %)
  • Language
    PHP
  • License
    GNU General Publi...
  • Created over 12 years ago
  • Updated about 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Go to >> https://github.com/LeonardoCardoso/Link-Preview

Facebook-Like Link Preview (no longer maintained)

Disclaimer: I will no longer maintain this project because it's an old code and hard to maintain, but I'm exporting this logic to Angularjs and Bootstrap. I believe this a great solution for an easy comprehension of the code and will allow the project to evolve even further. You can found this new project here >> https://github.com/LeonardoCardoso/Link-Preview

Build Status

Developed by @LeonardoCardoso.

How this works

The algorithm keeps tracking what you are typing in the status field and through regular expressions identifies a url. Thereafter, the text is in the field is passed to PHP that does all the work to analyze all the source code of the url found. If you enter more than one url, it will consider that the first one is the more relevant and it will create a preview. Once the source code of the url is obtained, regular expressions begin to seek out and capture relevant information on it. This information is basically the title page, the images contained therein, and a brief description of the content covered in the page.

Link Preview

=======

HTTP Server

  • Apache (must support mod_php)

How to add it to your project

1 • Scripts

	<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'></script>

	<script src='js/linkPreview.js' ></script>

 	<!-- 
		If you are saving and fetching results from database using FLP,
		you can customize the layout on this script
	-->
	<script src='js/linkPreviewRetrieve.js' ></script>

2 • Stylesheets

	<!-- 
		This stylesheet is provides the layout of Facebook's former textarea. 
		You can totally customize this!
	-->
	<link rel="stylesheet" type="text/css" href="css/linkPreview.css" />

3 • Configuration

Just create your own textarea (or multiple textareas) and bind it to jQuery like this:

	<script>
		$(document).ready(function() {
			$('#lp1').linkPreview();

			// changing placeholder
			$('#lp2').linkPreview({placeholder: "Second Field"});
			
			// bind to a tag the results brought from database
			$('#retrieveFromDatabase').linkPreviewRetrieve();
		});
	</script>
	

4 • Database

To custom your database configurations, you just need to change the following values in php/classes/Database.php

	$host = "localhost";
    $user = "";
    $password = "";
    $database = "linkpreview";

Make sure your columns are the same as those ones in linkpreview.sql.

Result Format

	{  
	   "title":"title",
	   "url":"original url",
	   "pageUrl":"page url",
	   "canonicalUrl":"cannonical url",
	   "description":"description",
	   "images": "img1|img2|...",
	   "video":"yes|no",
	   "videoIframe":"video iframe if it is video"
	}

Parameters

option default value possible values function
imageQuantity -1 any integer set the max amount of images to be brought (-1 for illimited)
placeholder What's in your mind any string set the placeholder of textarea

Important

Make sure the library php5-curl is installed and enabled on the server, either locally or remotely.

  • Linux
$ sudo apt-get install php5-curl
$ sudo service apache2 restart
$ sudo port install php5-curl 
$ sudo apachectl restart

Contact

Contact me either by Twitter @leocardz or emailing me to [email protected].

License

Copyright (c) 2014 Leonardo Cardoso (http://leocardz.com)
Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.

More Repositories

1

SwiftLinkPreview

It makes a preview from an URL, grabbing all the information such as title, relevant texts and images.
Swift
1,372
star
2

NFDownloadButton

Revamped Download Button. It's kinda a reverse engineering of Netflix's app download button.
Swift
434
star
3

Android-Link-Preview

It makes a preview from an url, grabbing all the information such as title, relevant texts and images. This a version for Android of my web link preview https://github.com/LeonardoCardoso/Link-Preview
Java
420
star
4

SectionedSlider

iOS 11 Control Center Slider
Swift
369
star
5

AudioIndicatorBars

AIB indicates for your app users which audio is playing. Just like the Podcasts app.
Swift
288
star
6

Link-Preview

AngularJS + Bootstrap Version of https://github.com/LeonardoCardoso/Facebook-Link-Preview
PHP
163
star
7

Animated-Expanding-ListView

Animated Expanding ListView provides a fancy animation on expanding or collapsing the content of a listview item.
Java
130
star
8

SendIndicator

Yet another task indicator
Swift
62
star
9

InitMacro

Swift
41
star
10

BLE

Swift
28
star
11

gsrd

GitHub Starred Repos Downloader
Ruby
26
star
12

Colorblinding

An extension for Google Chrome (and Chromium) that simulates the website as a color vision impaired person would see.
JavaScript
25
star
13

Multitouch-Test

A simple app to test the touch of your device. It measures and shows how accurate is the touch of your device, how many touches it supports, and there are some options to personalize the exhibition.
Java
17
star
14

BedtimeClock

Swift
14
star
15

RevealTextField

Simple extension to add a reveal button to your boring UITextField
Swift
14
star
16

Sorting-Algorithms

Quick set of sorting algorithms using Java.
Java
11
star
17

UILabelSearchHighlighter

Swift
9
star
18

Unshorten-It

A simple, beautiful, fast and useful url unshortener with link preview.
Java
7
star
19

Multiple-Layout-ListView

Multiple Layout ListView
Java
7
star
20

UITableViewFiltering

Swift
6
star
21

Android-Audio-Recorder

A simple Android app to record an audio.
Java
6
star
22

Silence-Please

Control the ambient sound by a sound level limit. When it is exceeded, the "Silence Please" will alert!
Java
5
star
23

GitAliases

Some useful Git aliases to optimise your time
Shell
5
star
24

Genetic-Algorithm

This project is about the functionality of a genetic algorithm.
Java
5
star
25

Xcode-Snippets

4
star
26

Folder

Shell
3
star
27

Clipboarded

Have you ever copied an image but couldn't find a way to save it to the Camera Roll?! That's why!
Swift
3
star
28

Movement

A funny way to interact with the mouse
JavaScript
3
star
29

AnnotationsOff

An extension for Google Chrome (and Chromium) that removes all unwanted annotations in Youtube videos.
JavaScript
3
star
30

mvn-repo

A simple maven repository
3
star
31

Trees

Set of many algorithms related to Trees with lexicographical ordering.
Java
3
star
32

Separate-Compilation-Unit

Single Compilation Unit, also known as Separate Compilation.
C++
3
star
33

What-coding-style-is-Leo-Using

For everyone who wants to know more about how I'm structuring my projects.
3
star
34

i18n-PHP-AngularJS

Easy i18n localization with PHP and AngularJS
PHP
2
star
35

Hashing-Algorithms

It's designed to keep insertion, deletion and search with O(1) complexity.
Java
2
star
36

Rotate-and-Scale-jQuery

A mix of Rotate and Scale.
JavaScript
2
star
37

dotfiles

My .files
Shell
2
star
38

Pix-Color-Analyzer

Image pixel color analyzer
Java
2
star
39

Priority-Queue

Set of many algorithms related to Priority Queues.
Java
2
star
40

gitcase

Share your complete GitHub contribution graph
CSS
2
star
41

Scale-jQuery

Scale whatever elements you want with jQuery
JavaScript
2
star
42

Rotate-jQuery

Rotate whatever elements you want with jQuery
HTML
2
star
43

Android-Audio-Preview

A simple app to stream a song by url for pre(view|listen)ing it.
Java
2
star
44

Android-Custom-Font

Two ways to use custom fonts without memory leak, even if you use in a ListView.
Java
2
star
45

What-terminal-is-Leo-using

For everyone who wants to know more about the terminal I'm using
2
star
46

Font-Awesomed-Android

Example code of how to use Font Awesome on Android native and programatically
Java
1
star
47

Primitive-Recursive-Functions

A class with the common Math operations using recursion.
Java
1
star
48

LeonardoCardoso

1
star