Ejemplo n.º 1
0
function Publicacion_Aprobar($id_publicacion)
{
    $id_usuario = db_obtener('ventas_publicaciones', 'id_usuario', "id_publicacion={$id_publicacion}");
    $DiasDeVigencia = db_obtener('ventas_usuarios', 'nDiasVigencia', "id_usuario={$id_usuario}");
    $c = "UPDATE ventas_publicaciones SET tipo=" . _A_aceptado . ", fecha_fin=date_add(CURDATE(), INTERVAL {$DiasDeVigencia} DAY) WHERE id_publicacion='{$id_publicacion}' AND id_usuario='{$id_usuario}' LIMIT 1";
    $r = db_consultar($c);
    $db_afectados_buffer = db_afectados();
    if ($db_afectados_buffer > 0) {
        require_once 'PHP/anunciadores.php';
        $c = "SELECT id_publicacion, titulo FROM ventas_publicaciones WHERE id_publicacion={$id_publicacion}";
        $r = db_consultar($c);
        $f = mysql_fetch_assoc($r);
        tweet('Nueva publicacion: ' . $f['titulo'] . ' | http://www.yomachete.com/clasificados-en-el-salvador-vendo-' . $f['id_publicacion'] . "_" . SEO($f['titulo']));
    }
    return $db_afectados_buffer;
}
Ejemplo n.º 2
0
        return TRUE;
    } else {
        // En cours de dév, afficher les informations retournées :
        //$tmhOAuth->pr(htmlentities($tmhOAuth->response['response']));
        print_r($tmhOAuth->response['response']);
        return FALSE;
    }
}
$tweetLevel = 3;
// Niveau à partir duquel on tweet l'alerte
$niveau_alerte = array(1 => 'vert', 2 => 'jaune', 3 => 'orange', 4 => 'rouge');
$alea = time();
$indexURL = "http://vigilance.meteofrance.com/data/NXFR34_LFPW_.xml?{$alea}";
$imgURL = "http://vigilance.meteofrance.com/data/QGFR17_LFPW_.gif?{$alea}";
$meteo = new vigilancemeteo($indexURL, $imgURL, $niveau_alerte);
$tab = $meteo->getListByLevel();
$tweeted = false;
foreach ($niveau_alerte as $level => $lib) {
    if (isset($tab[$level]) && count($tab[$level]) > 0) {
        $msg = "Alerte {$lib} sur " . implode(", ", $tab[$level]);
        echo $msg . "<br>" . "\n";
        echo $level . " " . $tweetLevel . "<br> \n";
        if ($level >= $tweetLevel) {
            tweet($msg);
            $tweeted = true;
        }
    }
}
if (!$tweeted) {
    echo "Aucune alerte de niveau " . $niveau_alerte[$tweetLevel] . " ou supérieur actuellement (donc pas de tweet)." . "<br>" . "\n";
}
Ejemplo n.º 3
0
function tweet()
{
    global $APIsettings;
    $categoryCodes = array('w', 'n', 'b', 'tc', 'e', 's');
    $firstIdx = array_rand($categoryCodes);
    $firstCat = $categoryCodes[$firstIdx];
    unset($categoryCodes[$firstIdx]);
    $categoryCodes = array_values($categoryCodes);
    $topics = getTopics($firstCat);
    if (count($topics) > 0) {
        $firstTopic = $topics[array_rand($topics)];
        $headline = getHeadline($firstTopic);
        if ($headline != null && strstr($headline, $firstTopic->name) !== false) {
            $secondCat = $categoryCodes[array_rand($categoryCodes)];
            $newTopics = getTopics($secondCat);
            if (count($newTopics) > 0) {
                $secondTopic = $newTopics[array_rand($newTopics)];
                $newHeadline = str_replace($firstTopic->name, $secondTopic->name, $headline);
                if (strlen($newHeadline) < 141) {
                    // Post the tweet
                    $postfields = array('status' => $newHeadline);
                    $url = "https://api.twitter.com/1.1/statuses/update.json";
                    $requestMethod = "POST";
                    $twitter = new TwitterAPIExchange($APIsettings);
                    echo $twitter->buildOauth($url, $requestMethod)->setPostfields($postfields)->performRequest();
                } else {
                    tweet();
                }
            } else {
                tweet();
            }
        } else {
            tweet();
        }
    } else {
        tweet();
    }
}
Ejemplo n.º 4
0
function db_store_article($article, $PageID = 0, $updating = false)
{
    global $db;
    global $config;
    $update = false;
    $id = 0;
    // If we are editing an existing reference then we already know its id
    if (isset($article->reference_id)) {
        $id = $article->reference_id;
    } else {
        $id = db_find_article($article);
    }
    if ($id != 0) {
        if ($updating) {
            $update = true;
        } else {
            return $id;
        }
    }
    // Try and trap empty references
    if ($id == 0) {
        $ok = false;
        if (isset($article->title)) {
            $ok = $article->title != '';
        }
        if (!$ok) {
            return 0;
        }
    }
    if (!isset($article->genre)) {
        $article->genre = 'article';
    }
    $keys = array();
    $values = array();
    // Article metadata
    foreach ($article as $k => $v) {
        switch ($k) {
            // Ignore as it's an array
            case 'authors':
                break;
            case 'date':
                $keys[] = 'date';
                $values[] = $db->qstr($v);
                if (!isset($article->year)) {
                    $keys[] = 'year';
                    $values[] = $db->qstr(year_from_date($v));
                }
                break;
                // Don't store BHL URL here
            // Don't store BHL URL here
            case 'url':
                if (preg_match('/^http:\\/\\/(www\\.)?biodiversitylibrary.org\\/page\\/(?<pageid>[0-9]+)/', $v)) {
                } else {
                    // extract Handle if it exists
                    if (preg_match('/^http:\\/\\/hdl.handle.net\\/(?<hdl>.*)$/', $v, $m)) {
                        $keys[] = 'hdl';
                        $values[] = $db->qstr($m['hdl']);
                    } else {
                        $keys[] = $k;
                        $values[] = $db->qstr($v);
                    }
                }
                break;
                // Things we store as is
            // Things we store as is
            case 'title':
            case 'secondary_title':
            case 'volume':
            case 'series':
            case 'issue':
            case 'spage':
            case 'epage':
            case 'year':
            case 'date':
            case 'issn':
            case 'genre':
            case 'doi':
            case 'hdl':
            case 'lsid':
            case 'oclc':
            case 'pdf':
            case 'abstract':
            case 'pmid':
                $keys[] = $k;
                $values[] = $db->qstr($v);
                break;
                // Things we ignore
            // Things we ignore
            default:
                break;
        }
    }
    // Date
    if (!isset($article->date) && isset($article->year)) {
        $keys[] = 'date';
        $values[] = $db->qstr($article->year . '-00-00');
    }
    // BHL PageID
    if ($PageID != 0) {
        $keys[] = 'PageID';
        $values[] = $PageID;
    }
    // SICI
    $s = new Sici();
    $sici = $s->create($article);
    if ($sici != '') {
        $keys[] = 'sici';
        $values[] = $db->qstr($sici);
    }
    if ($update) {
        // Versioning?
        // Delete links	(author, pages, etc)
        // Don't delete page range as we may loose plates, etc. outside range
        /*
        $sql = 'DELETE FROM rdmp_reference_page_joiner WHERE reference_id=' . $id;
        $result = $db->Execute($sql);
        if ($result == false) die("failed [" . __FILE__ . ":" . __LINE__ . "]: " . $sql);
        */
        $sql = 'DELETE FROM rdmp_author_reference_joiner WHERE reference_id = ' . $id;
        $result = $db->Execute($sql);
        if ($result == false) {
            die("failed [" . __FILE__ . ":" . __LINE__ . "]: " . $sql);
        }
        // update (updated timestamp will be automatically updated)
        $sql = 'UPDATE rdmp_reference SET ';
        $num_values = count($keys);
        for ($i = 0; $i < $num_values; $i++) {
            if ($i > 0) {
                $sql .= ', ';
            }
            $sql .= $keys[$i] . '=' . $values[$i];
        }
        $sql .= ' WHERE reference_id=' . $id;
        /*		$cache_file = @fopen('/tmp/update.sql', "w+") or die("could't open file");
        		@fwrite($cache_file, $sql);
        		fclose($cache_file);
        */
        $result = $db->Execute($sql);
        if ($result == false) {
            die("failed [" . __FILE__ . ":" . __LINE__ . "]: " . $sql);
        }
    } else {
        // Adding article for first time so add 'created' and 'updated' timestamp
        $keys[] = 'created';
        $values[] = 'NOW()';
        $keys[] = 'updated';
        $values[] = 'NOW()';
        $sql = 'INSERT INTO rdmp_reference (' . implode(",", $keys) . ') VALUES (' . implode(",", $values) . ')';
        $result = $db->Execute($sql);
        if ($result == false) {
            die("failed [" . __FILE__ . ":" . __LINE__ . "]: " . $sql);
        }
        $id = $db->Insert_ID();
        // Store reference_cluster_id which we can use to group duplicates, by default
        // reference_cluster_id = reference_id
        $sql = 'UPDATE rdmp_reference SET reference_cluster_id=' . $id . ' WHERE reference_id=' . $id;
        $result = $db->Execute($sql);
        if ($result == false) {
            die("failed [" . __FILE__ . ":" . __LINE__ . "]: " . $sql);
        }
    }
    // Indexing-------------------------------------------------------------------------------------
    if (1) {
        // solr
        // this code is redundant with code in reference.php but I use different objects
        // here and there (doh!). Also once we've added old stuff to solr this is the only place we
        // should be calling solr
        $solr = new Apache_Solr_Service('localhost', '8983', '/solr');
        if (!$solr->ping()) {
            echo 'Solr service not responding.';
            exit;
        }
        $item = array();
        $item['id'] = 'reference/' . $id;
        $item['title'] = $article->title;
        $item['publication_outlet'] = $article->secondary_title;
        $item['year'] = $article->year;
        $authors = array();
        foreach ($article->authors as $a) {
            $authors[] = $a->forename . ' ' . $a->surname;
        }
        $item['authors'] = $authors;
        $citation = '';
        $citation .= ' ' . $article->year;
        $citation .= ' ' . $article->title;
        $citation .= ' ' . $article->secondary_title;
        $citation .= ' ' . $article->volume;
        if (isset($article->issue)) {
            $citation .= '(' . $article->issue . ')';
        }
        $citation .= ':';
        $citation .= ' ';
        $citation .= $article->spage;
        if (isset($article->epage)) {
            $citation .= '-' . $article->epage;
        }
        $item['citation'] = $citation;
        $text = '';
        $num_authors = count($article->authors);
        $count = 0;
        if ($num_authors > 0) {
            foreach ($article->authors as $author) {
                $text .= $author->forename . ' ' . $author->lastname;
                if (isset($author->suffix)) {
                    $text .= ' ' . $author->suffix;
                }
                $count++;
                if ($count == 2 && $num_authors > 3) {
                    $text .= ' et al.';
                    break;
                }
                if ($count < $num_authors - 1) {
                    $text .= ', ';
                } else {
                    if ($count < $num_authors) {
                        $text .= ' and ';
                    }
                }
            }
        }
        $item['citation'] = $text . ' ' . $citation;
        $parts = array();
        $parts[] = $item;
        //print_r($parts);
        // add to solr
        $documents = array();
        foreach ($parts as $item => $fields) {
            $part = new Apache_Solr_Document();
            foreach ($fields as $key => $value) {
                if (is_array($value)) {
                    foreach ($value as $datum) {
                        $part->setMultiValue($key, $datum);
                    }
                } else {
                    $part->{$key} = $value;
                }
            }
            $documents[] = $part;
        }
        //
        //
        // Load the documents into the index
        //
        try {
            $solr->addDocuments($documents);
            $solr->commit();
            $solr->optimize();
        } catch (Exception $e) {
            echo $e->getMessage();
        }
    } else {
        $sql = 'DELETE FROM rdmp_text_index WHERE (object_uri=' . $db->qstr($config['web_root'] . 'reference/' . $id) . ')';
        $result = $db->Execute($sql);
        if ($result == false) {
            die("failed [" . __FILE__ . ":" . __LINE__ . "]: " . $sql);
        }
        // Only do this if we have a title, as sometimes we don't (e.g. CrossRef lacks metadata)
        if (isset($article->title)) {
            $sql = 'INSERT INTO rdmp_text_index(object_type, object_id, object_uri, object_text)
			VALUES ("title"' . ', ' . $id . ', ' . $db->qstr($config['web_root'] . 'reference/' . $id) . ', ' . $db->qstr($article->title) . ')';
            $result = $db->Execute($sql);
            if ($result == false) {
                die("failed [" . __FILE__ . ":" . __LINE__ . "]: " . $sql);
            }
        }
    }
    // Versioning-----------------------------------------------------------------------------------
    // Store this object in version table so we can recover it if we overwrite item
    $ip = getip();
    $sql = 'INSERT INTO rdmp_reference_version(reference_id, ip, json) VALUES(' . $id . ', ' . 'INET_ATON(\'' . $ip . '\')' . ',' . $db->qstr(json_encode($article)) . ')';
    $result = $db->Execute($sql);
    if ($result == false) {
        die("failed [" . __FILE__ . ":" . __LINE__ . "]: " . $sql);
    }
    // Author(s)------------------------------------------------------------------------------------
    // Store author as and link to the article
    if (isset($article->authors)) {
        db_store_authors($id, $article->authors);
    }
    // Store page range (only if not updating, otherwise we may loose plates, etc.
    // that aren't in page range)
    if ($PageID != 0 && !$update) {
        $page_range = array();
        if (isset($article->spage) && isset($article->epage)) {
            $page_range = bhl_page_range($PageID, $article->epage - $article->spage + 1);
        } else {
            // No epage, so just get spage (to do: how do we tell user we don't have page range?)
            $page_range = bhl_page_range($PageID, 0);
        }
        //print_r($page_range);
        $count = 0;
        foreach ($page_range as $page) {
            $sql = 'INSERT INTO rdmp_reference_page_joiner (reference_id, PageID, page_order) 
			VALUES (' . $id . ',' . $page . ',' . $count++ . ')';
            $result = $db->Execute($sql);
            if ($result == false) {
                die("failed [" . __FILE__ . ":" . __LINE__ . "]: " . $sql);
            }
        }
    }
    // Tweet----------------------------------------------------------------------------------------
    if (!$update) {
        if ($config['twitter']) {
            $url = $config['web_root'] . 'reference/' . $id . ' ' . '#bhlib';
            // url + hashtag
            $url_len = strlen($url);
            $status = '';
            if (isset($article->title)) {
                $status = $article->title;
                $status_len = strlen($status);
                $extra = 140 - $status_len - $url_len - 1;
                if ($extra < 0) {
                    $status_len += $extra;
                    $status_len -= 1;
                    $status = substr($status, 0, $status_len);
                    $status .= '…';
                }
            }
            $status .= ' ' . $url;
            tweet($status);
        }
    }
    return $id;
}
Ejemplo n.º 5
0
/**
 * @brief Handle OpenURL request
 *
 * We may have more than one parameter with same name, so need to access QUERY_STRING, not _GET
 * http://stackoverflow.com/questions/353379/how-to-get-multiple-parameters-with-same-name-from-a-url-in-php
 *
 */
function main()
{
    global $config;
    global $debug;
    global $format;
    $id = 0;
    $callback = '';
    // If no query parameters
    if (count($_GET) == 0) {
        display_form();
        exit(0);
    }
    if (isset($_GET['format'])) {
        switch ($_GET['format']) {
            case 'html':
                $format = 'html';
                break;
            case 'json':
                $format = 'json';
                break;
            default:
                $format = 'html';
                break;
        }
    }
    if (isset($_GET['callback'])) {
        $callback = $_GET['callback'];
    }
    $debug = false;
    if (isset($_GET['debug'])) {
        $debug = true;
    }
    // Handle query and display results.
    $query = explode('&', html_entity_decode($_SERVER['QUERY_STRING']));
    $params = array();
    foreach ($query as $param) {
        list($key, $value) = explode('=', $param);
        $key = preg_replace('/^\\?/', '', urldecode($key));
        $params[$key][] = trim(urldecode($value));
    }
    if ($debug) {
        echo '<h1>Params</h1>';
        echo '<pre>';
        print_r($params);
        echo '</pre>';
    }
    // This is what we got from user
    $referent = new stdclass();
    parse_openurl($params, $referent);
    // Flesh it out
    // If we are looking for an article we need an ISSN, or at least an OCLC
    // Ask whether have this in our database (assumes we have ISSN)
    if (!isset($referent->issn)) {
        // Try and get ISSN from bioGUID
        $issn = issn_from_title($referent->secondary_title);
        if ($issn != '') {
            $referent->issn = $issn;
        } else {
            // No luck with ISSN, look for OCLC
            if (!isset($referent->oclc)) {
                $oclc = oclc_for_title($referent->secondary_title);
                if ($oclc != 0) {
                    $referent->oclc = $oclc;
                }
            }
        }
    }
    if ($debug) {
        echo '<h1>Referent</h1>';
        echo '<pre>';
        print_r($referent);
        echo '</pre>';
    }
    // Handle identifiers
    if (isset($referent->url)) {
        // BHL URL, for example if we have already mapped article to BHL
        // in Zotero,
        if (preg_match('/^http:\\/\\/(www\\.)?biodiversitylibrary.org\\/page\\/(?<pageid>[0-9]+)/', $referent->url, $matches)) {
            //print_r($matches);
            $PageID = $matches['pageid'];
            $references = bhl_reference_from_pageid($PageID);
            //print_r($references);
            if (count($references) == 0) {
                // We don't have an article for this PageID
                $search_hit = bhl_score_page($PageID, $referent->title);
                // Store
                $id = db_store_article($referent, $PageID);
            } else {
                // Have a reference with this PageID already
                // Will need to handle case where > 1 article on same page, e.g.
                // http://www.biodiversitylibrary.org/page/3336598
                $id = $references[0];
            }
            // Did we get a hit?
            if ($id != 0) {
                // We have this reference in our database
                switch ($format) {
                    case 'json':
                        // Display object
                        $reference = db_retrieve_reference($id);
                        header("Content-type: text/plain; charset=utf-8\n\n");
                        if ($callback != '') {
                            echo $callback . '(';
                        }
                        echo json_format(json_encode($reference));
                        if ($callback != '') {
                            echo ')';
                        }
                        break;
                    case 'html':
                    default:
                        // Redirect to reference display
                        header('Location: ' . $config['web_root'] . 'reference/' . $id . "\n\n");
                        break;
                }
                exit;
            }
        }
    }
    // OK, we're not forcing a match to BHL, so do we have this article?
    $id = db_find_article($referent);
    //echo "<b>id=$id</b><br/>";
    if ($id != 0) {
        // We have this reference in our database
        switch ($format) {
            case 'json':
                // Display object
                $reference = db_retrieve_reference($id);
                header("Content-type: text/plain; charset=utf-8\n\n");
                if ($callback != '') {
                    echo $callback . '(';
                }
                echo json_format(json_encode($reference));
                if ($callback != '') {
                    echo ')';
                }
                break;
            case 'html':
            default:
                // Twitter as log
                if ($config['twitter']) {
                    $tweet_this = false;
                    $tweet_this = isset($_GET['rfr_id']);
                    if ($tweet_this) {
                        $url = $config['web_root'] . 'reference/' . $id . ' ';
                        //  . '#openurl'; // url + hashtag
                        $url = $id;
                        $url_len = strlen($url);
                        $status = '';
                        //$text = $_GET['rfr_id'];
                        $text = '#openurl ' . $_SERVER["HTTP_REFERER"];
                        //$text .= ' @rdmpage';
                        if (isset($article->title)) {
                        }
                        $status = $text;
                        $status_len = strlen($status);
                        $extra = 140 - $status_len - $url_len - 1;
                        if ($extra < 0) {
                            $status_len += $extra;
                            $status_len -= 1;
                            $status = substr($status, 0, $status_len);
                            $status .= '…';
                        }
                        $status .= ' ' . $url;
                        tweet($status);
                    }
                }
                // Redirect to reference display
                header('Location: reference/' . $id . "\n\n");
                break;
        }
        exit;
    }
    // OK, not found, so let's go look for it...
    // Search BHL
    $atitle = '';
    if (isset($referent->title)) {
        $atitle = $referent->title;
    }
    $search_hits = bhl_find_article($atitle, $referent->secondary_title, $referent->volume, isset($referent->spage) ? $referent->spage : $referent->pages, isset($referent->series) ? $referent->series : '', isset($referent->date) ? $referent->date : '', isset($referent->issn) ? $referent->issn : '');
    if (count($search_hits) == 0) {
        // try alternative way of searching using article title
        $search_hits = bhl_find_article_from_article_title($referent->title, $referent->secondary_title, $referent->volume, isset($referent->spage) ? $referent->spage : $referent->pages, isset($referent->series) ? $referent->series : '', isset($referent->issn) ? $referent->issn : '');
    }
    // At this point if we haven't found it in BHL we could go elsewhere, e.g. bioGUID,
    // in which case we'd need to take this into account when displaying HTML and JSON
    if ($debug) {
        echo '<h3>Search hits</h3>';
        echo '<pre>';
        print_r($search_hits);
        echo '</pre>';
    }
    if (1) {
        // Check whether we already have an article that starts on this
        foreach ($search_hits as $hit) {
            $references = bhl_reference_from_pageid($hit->PageID);
            //print_r($references);
            if (count($references) != 0) {
                // We have this reference in our database
                switch ($format) {
                    case 'json':
                        // Display object
                        $reference = db_retrieve_reference($references[0]);
                        header("Content-type: text/plain; charset=utf-8\n\n");
                        if ($callback != '') {
                            echo $callback . '(';
                        }
                        echo json_format(json_encode($reference));
                        if ($callback != '') {
                            echo ')';
                        }
                        break;
                    case 'html':
                    default:
                        // Redirect to reference display
                        header('Location: reference/' . $references[0] . "\n\n");
                        break;
                }
                exit;
            }
        }
    }
    // Output search results in various formats...
    switch ($format) {
        case 'json':
            display_bhl_result_json($referent, $search_hits, $callback);
            break;
        case 'html':
        default:
            display_bhl_result_html($referent, $search_hits);
            break;
    }
}
Ejemplo n.º 6
0
{
    $bdd = new PDO('mysql:host=XXXX;dbname=XXXX', 'XXXX', 'XXXX');
    // 1ère phrase
    $query = $bdd->query('SELECT * FROM lyrics ORDER BY RAND() LIMIT 1');
    $randomline[0] = $query->fetch();
    $phrase[0] = $randomline[0]['phrase'];
    $id[0] = $randomline[0]['id'];
    $song_slug[0] = $randomline[0]['song_slug'];
    // 2e phrase
    $query = $bdd->prepare('SELECT * FROM lyrics WHERE id = ? + 1 AND song_slug = ?');
    $query->execute(array($id[0], $song_slug[0]));
    $randomline[1] = $query->fetch();
    // Si critères pas validés, récursion
    $longueur = strlen($phrase[0]) + strlen($randomline[1]['phrase']) + 1;
    $firstword = substr($phrase[0], 0, strpos($phrase[0], ' '));
    if ($randomline[1] == false or $longueur > 140 or $firstword == 'Mais' or $firstword == 'Et') {
        random_extract();
    } else {
        $phrase[1] = $randomline[1]['phrase'];
        $finalstring = "{$phrase['0']}\n{$phrase['1']}";
        return utf8_encode($finalstring);
    }
}
/* Choix de paroles au hasard */
$random_extract = random_extract();
echo $random_extract;
/* Envoi du tweet */
tweet($connection, $random_extract);
?>

</html>
Ejemplo n.º 7
0
<?php

require_once 'twitterAPI.php';
function tweet($conn, $message)
{
    if (!$conn) {
        return;
    }
    $conn->request('POST', 'https://api.twitter.com/1.1/statuses/update.json', array('status' => $message), true, true);
}
function tweet_photo($conn, $message, $photo)
{
    if (!$conn) {
        echo "Conn is null\n";
        return;
    }
    $conn->request('POST', 'https://api.twitter.com/1.1/statuses/update_with_media.json', array('media[]' => "@{$photo};type=image/jpg;filename={$photo}", 'status' => $message), true, true);
}
$connection = new tmhOAuth(array('user_token' => "2845164320-kStYbmCCNIDCJayEjuateXlrv6cl2UHpayyb0xU", 'user_secret' => "TZmyy82NO48oQ4fii7BDmI0qgQhW6khTRlE8Kqiw9t1ha", 'consumer_key' => "zw1p29O8r3wuDAqWpGssk2xew", 'consumer_secret' => "lnZImZhBZObEmP6GE471QkTFy8kUKlD9rywuCSjgwEOR9TZe2C"));
if (isset($_FILES['file']) && isset($_POST['tweet'])) {
    move_uploaded_file($_FILES['file']['tmp_name'], $_FILES['file']['name']);
    tweet_photo($connection, $_POST['tweet'], $_FILES['file']['name']);
} else {
    if ($_GET['tweet']) {
        tweet($connection, $_GET['tweet']);
    }
}
Ejemplo n.º 8
0
 }
 $log = "#transaction";
 if ($sudden_mode == 1) {
     $log = "#suddenmode";
 }
 if ($balancing == 1) {
     $log = "#unbalancing";
 }
 $infodata = get_infodataf($fake);
 $info = get_infodata($infodata, $fake);
 $wallet_amount = "[btc:" . round($info["btc_balance"], 4) . "/usd:" . round($info["usd_balance"], 2) . "]";
 $line = "\$" . $transa["type"] . " " . $wallet_amount . " @ \$" . $transa["price"] . " (" . $transa["prem"] . ") {$log}";
 wfile($lastfile_clean, $line);
 if ($balancing != 1) {
     if ($enable_tweet) {
         tweet($tmhOAuth, $line . " {$twitter_users}");
     }
     if ($wall == 1) {
         wfilew($lastfile, $transa["type"] . "," . $wallet_amount . "," . $transa["price"] . "," . $transa["datetime"] . "," . $transa["prem"] . ",{$log},\r\n");
     } else {
         wfilew($lastfile, $transa["type"] . "," . $wallet_amount . "," . $transa["price"] . "," . $transa["datetime"] . "," . $transa["prem"] . ",{$log},\r\n");
     }
     $dt = date("Y-m-d H:i:s");
     if ($fake == true and $paper == false) {
         $dt = $ticker["datetime"];
     }
     $hora_new = date("i");
     $pre = $transa["prem"];
     $vol = $ticker["ticker_vol"];
     $type = $transa["type"];
     $line = $dt . ",," . $transa["price"] . ",{$type},{$pre},{$vol}," . $lastema["short"] . "," . $lastema["long"] . ",\r\n";
Ejemplo n.º 9
0
    Route::get('event', function () {
        logit('created a test event');
    });
    Route::get('tester', function () {
        return view('pages.tester');
    });
    Route::get('notifier', function () {
        notify(Auth::user()->id, '2', 'Angelina Jole just friended you.');
        return 'Notification Saved!';
    });
    Route::get('sms/{phone}', function ($phone) {
        Twilio::message($phone, 'Hi, I am Echo from the AeroEco software. I can now send but not receive text messages. Pretty cool, huh?');
        return 'Message sent';
    });
    Route::get('messenger', function () {
        tweet('2', 'Dude, why are you sending yourself a message? Are you some kind of freak? Oh, you are just testing.');
        return 'Message Saved!';
    });
    Route::get('systemic', function () {
        $user = Auth::user();
        Activity::log(['contentId' => null, 'contentType' => 'User', 'action' => 'LogIn', 'description' => 'Logged In', 'details' => 'Username: '******'updated' => (bool) $user->id]);
        return 'Activity logged';
    });
    Route::get('welcome_page', function () {
        flash()->overlay('Hello, World!', 'This is the message');
        return view('pages.welcome');
    });
});
// API
Route::group(['prefix' => 'api/'], function () {
    Route::get('aircrafts/list', 'AircraftsController@typelist');
Ejemplo n.º 10
0
    case 6:
        tweet('When I\'m running late, I stay late.');
        break;
    case 7:
        tweet('The driver behind me may not have Adaptive Cruise Control,but I can still fix that space cushion!');
        break;
    case 8:
        tweet('I understand the limited technical skills of a meat-piloted vehicle,and act accordingly.');
        break;
    case 9:
        tweet('I count how many seconds I\'m behind the car in front of me,I know what 3 or more seconds looks like.');
        break;
    case 10:
        tweet('I know that NO impairment is safe behind the wheel!');
        break;
    case 11:
        tweet('I don\'t allow emotion to put me into an altered state behind the wheel!');
        break;
    case 12:
        tweet('I know that even when autonomous vehicles begin appearing,I\'ll need to be the sober human failsafe.');
        break;
    case 13:
        tweet('I will be too afraid to scan my mirrors if my following distance is too short!');
        break;
    case 14:
        tweet('I know that new safety features don\'t replace old safety habits, they add to them.');
        break;
    case 15:
        tweet('If I\'m too fast or too furious at the green light,I may be hit by the sadly common red light runner.');
        break;
}
Ejemplo n.º 11
0
<?php

//exit;
require_once "PHP/vital.php";
set_time_limit(0);
$c = 'SELECT codigo_producto, titulo, descripcion FROM flores_producto_contenedor WHERE twitted=0 ORDER BY codigo_producto ASC LIMIT 1';
$r = db_consultar($c);
if (mysql_num_rows($r) == 0) {
    exit;
}
$f = mysql_fetch_assoc($r);
$status = preg_replace(array('/Medida.*/i', '/Tamaño.*/i'), '', PROY_URL . 'arreglos-florales-floristerias-en-el-salvador-' . SEO($f['titulo'] . '-' . $f['codigo_producto']) . ' - ' . $f['descripcion']);
tweet($status);
$datos['twitted'] = "1";
db_actualizar_datos(db_prefijo . 'producto_contenedor', $datos, 'codigo_producto=' . $f['codigo_producto']);
exit($status);
Ejemplo n.º 12
0
	margin: 0 0 10px 0;
}
</style>

<ul>
<?php 
/**
 * @param $text The text of a Twitter status update
 * @return The status with typical linking to users and URLs
 */
function tweet($text)
{
    $text = preg_replace('#http://[^ ]+#i', '<a href="\\0">\\0</a>', $text);
    $text = preg_replace('/@([a-z0-9_]+)/i', '<a href="http://twitter.com/\\1">\\0</a>', $text);
    return $text;
}
// foreach status update in the feed
foreach ($api->get('status') as $status) {
    // start a list item
    echo '<li>';
    // spit out the text of the status update
    echo tweet($status->get('text'));
    // create a link to the tweet
    $author = $status->get('user/screen_name');
    $id = $status->get('id');
    echo " <a href=\"http://twitter.com/{$author}/statuses/{$id}\">&raquo;</a>";
    // close the list item
    echo '</li>';
}
?>
</ul>