2017 © Pedro Peláez
 

library skype-history

Skype history viewer

image

silverslice/skype-history

Skype history viewer

  • Friday, December 29, 2017
  • by silverslice
  • Repository
  • 1 Watchers
  • 1 Stars
  • 24 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

SkypeHistory

Easy library to view your skype conversation history, (*1)

What for?

After update skype in Ubuntu your can find that all your skype conversation history is empty. Your can try to use this small library to get unavailable history., (*2)

Installation

  1. Require library as a dependency using Composer:, (*3)

    php composer.phar require silverslice/skype-history:dev-master, (*4)

  2. Install SkypeHistory:, (*5)

    php composer.phar install, (*6)

Usage

Look at the examples/history.php file in the installed library. You can copy it or write your own page to display history., (*7)

All you need is to find skype's main.db file in ~/.Skype/your_login/ directory, place it in your project directory and open page in browser., (*8)

Example of usage

// require composer autoload file
require __DIR__ . '/vendor/autoload.php';

use Silverslice\SkypeHistory\Reader;

// create reader passing the path to main.db skype file
$reader = new Reader('data/main.db');

// get all contacts having messages in history
$contacts = $reader->getActiveContacts();

// get all conversation history for contact with login 'silver_slice' for last 1 year
$messages = $reader->getHistory('silver_slice', strtotime('-1 year'), time());

The Versions

29/12 2017

dev-master

9999999-dev

Skype history viewer

  Sources   Download

MIT

The Requires

  • php >=5.3.3
  • ext-pdo *
  • ext-pdo_sqlite *

 

by Igor Mikheev

skype