miércoles, 24 de marzo de 2010

PHP - Curl a Tuenti (Versión Modificada)

Necesitarás lo mismo que la versión anterior. Esta es la versión actualizada de tuenti.php que cuenta además el cambio en el número de visitas. Recuerda modificar los campos en rojo.
<?php
/*
 *      tuenti.php
 *     
 *      Copyright 2010 Eduardo Ramirez Martinez-Esparza <zeyt@ZeYt>
 *     
 *      This program is free software; you can redistribute it and/or modify
 *      it under the terms of the GNU General Public License as published by
 *      the Free Software Foundation; either version 2 of the License, or
 *      (at your option) any later version.
 *     
 *      This program is distributed in the hope that it will be useful,
 *      but WITHOUT ANY WARRANTY; without even the implied warranty of
 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *      GNU General Public License for more details.
 *     
 *      You should have received a copy of the GNU General Public License
 *      along with this program; if not, write to the Free Software
 *      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 *      MA 02110-1301, USA.
 */

    //MODIFICALO
    $usermail = "example@example.com";
    $password = "tucontraseña";
    $ruta = "/home/TuUsuario/Tuenti/";
    function login($usermail, $password){
        $tcookie="cookie.txt";
        $ch= curl_init();
        curl_setopt($ch, CURLOPT_URL, "https://www.tuenti.com/?m=login&func=do_login");
        curl_setopt ($ch, CURLOPT_POSTFIELDS, "email=$usermail&input_password=$password&timezone=1");
        curl_setopt ($ch, CURLOPT_POST, 1);
        curl_setopt ($ch, CURLOPT_HEADER, 0);
        curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt ($ch, CURLOPT_COOKIEFILE, $tcookie);
        curl_setopt ($ch, CURLOPT_COOKIEJAR, $tcookie);
        curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (X11; U; Linux i686; es-ES; rv:1.9.1.5) Gecko/20091105 Fedora/3.5.5-1.fc11 Firefox/3.5.5");
        $res=curl_exec ($ch);
        curl_close($ch);
        return $res;
    }

    function consult($url){
        $tcookie="cookie.txt";
        $ch= curl_init();
        curl_setopt ($ch, CURLOPT_URL, $url);
        curl_setopt ($ch, CURLOPT_HEADER, 0);
        curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
        curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt ($ch, CURLOPT_COOKIEFILE, $tcookie);
        curl_setopt ($ch, CURLOPT_COOKIEJAR, $tcookie);
        curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (X11; U; Linux i686; es-ES; rv:1.9.1.5) Gecko/20091105 Fedora/3.5.5-1.fc11 Firefox/3.5.5");
        $res = curl_exec ($ch);
        curl_close($ch);
        return $res;
    }
   
    $login=login($usermail, $password);
    $resultado = consult("http://www.tuenti.com/?m=home&func=view_home");
    $trozos = explode('<div class="views"><strong>',$resultado);
    $trozos = explode('</strong>',$trozos[1]);
    $visitas = $trozos[0];
    if (file_exists("visitas.txt")){
        $f = fopen("visitas.txt","r");
        $visitas_old = fread($f,filesize("visitas.txt"));
        fclose($f);
    }
    else{
        $f = fopen("visitas.txt","w");
        fclose($f);
        $visitas_old = 0;
    }
    $mostrar_visitas = FALSE;
    if ($visitas>$visitas_old){
        $f = fopen("visitas.txt","w");
        fwrite($f,$visitas);
        fclose($f);
        $total = $visitas-$visitas_old;
        $mostrar_visitas = TRUE;
        $imprime_visitas = "Has tenido ". $total ." visitas: ".$visitas;
    }
    require_once("clase_tuenti.php");
    $imprime = "Notificaciones tuenti:\n";
    $con = new tuentiAPI($usermail, $password);
    $r = $con->request('getUserNotifications', array());
    $salto=FALSE;
    if ($r['unread_friend_messages']['count'] > 0){
            $imprime .= "Privados de amigos: ".$r['unread_friend_messages']['count']."\n";
            $salto=TRUE;
    }
    if ($r['unread_spam_messages']['count'] > 0){
        $imprime .= "Mensajes de desconocidos: ".$r['unread_spam_messages']['count']."\n";
        $salto=TRUE;
    }
    if ($r['new_profile_wall_posts']['count'] > 0){
        $imprime .= "Comentarios: ".$r['new_profile_wall_posts']['count']."\n";
        $salto=TRUE;
    }   
    if ($r['new_friend_requests']['count'] > 0){
        $imprime .= "Peticiones de amigo: ".$r['new_friend_requests']['count']."\n";
        $salto=TRUE;
    }
    if ($r['new_photo_wall_posts']['count'] > 0){
        $imprime .= "Comentarios en fotos: ".$r['new_photo_wall_posts']['count']."\n";
    }
    if ($r['new_tagged_photos']['count'] > 0){
        $imprime .= "Fotos etiquetadas: ".$r['new_tagged_photos']['count']."\n";
        $salto=TRUE;
    }
    if ($r['new_event_invitations']['count'] > 0){
        $imprime .= "Eventos: ".$r['new_event_invitations']['count'];
        $salto=TRUE;
    }
    if ($salto){       
        exec('zenity --info --window-icon="'.$ruta.'ico.png" --text "'. $imprime .'" --timeout 20 &');
    }
    if ($mostrar_visitas){
        exec('zenity --notification --window-icon="'.$ruta.'ico.png" --text "'. $imprime_visitas .'" --timeout 40 &');
    }
?>

1 comentario:

  1. Hola, al probar el script manda un error, falta el archivo "clase_tuenti.php"

    de donde se puede descargar???

    ResponderEliminar