Merge pull request #1 from annando/removed-deprecated

Removed many deprecated addons
This commit is contained in:
Tobias Diekershoff 2017-10-19 09:36:32 +02:00 committed by GitHub
commit 24444adef3
247 changed files with 28554 additions and 0 deletions

1647
appnet/AppDotNet.php Normal file
View file

@ -0,0 +1,1647 @@
<?php
/**
* AppDotNet.php
* App.net PHP library
* https://github.com/jdolitsky/AppDotNetPHP
*
* This class handles a lower level type of access to App.net. It's ideal
* for command line scripts and other places where you want full control
* over what's happening, and you're at least a little familiar with oAuth.
*
* Alternatively you can use the EZAppDotNet class which automatically takes
* care of a lot of the details like logging in, keeping track of tokens,
* etc. EZAppDotNet assumes you're accessing App.net via a browser, whereas
* this class tries to make no assumptions at all.
*/
class AppDotNet {
protected $_baseUrl = 'https://alpha-api.app.net/stream/0/';
protected $_authUrl = 'https://account.app.net/oauth/';
private $_authPostParams=array();
// stores the access token after login
private $_accessToken = null;
// stores the App access token if we have it
private $_appAccessToken = null;
// stores the user ID returned when fetching the auth token
private $_user_id = null;
// stores the username returned when fetching the auth token
private $_username = null;
// The total number of requests you're allowed within the alloted time period
private $_rateLimit = null;
// The number of requests you have remaining within the alloted time period
private $_rateLimitRemaining = null;
// The number of seconds remaining in the alloted time period
private $_rateLimitReset = null;
// The scope the user has
private $_scope = null;
// token scopes
private $_scopes=array();
// debug info
private $_last_request = null;
private $_last_response = null;
// ssl certification
private $_sslCA = null;
// the callback function to be called when an event is received from the stream
private $_streamCallback = null;
// the stream buffer
private $_streamBuffer = '';
// stores the curl handler for the current stream
private $_currentStream = null;
// stores the curl multi handler for the current stream
private $_multiStream = null;
// stores the number of failed connects, so we can back off multiple failures
private $_connectFailCounter = 0;
// stores the most recent stream url, so we can re-connect when needed
private $_streamUrl = null;
// keeps track of the last time we've received a packet from the api, if it's too long we'll reconnect
private $_lastStreamActivity = null;
// stores the headers received when connecting to the stream
private $_streamHeaders = null;
// response meta max_id data
private $_maxid = null;
// response meta min_id data
private $_minid = null;
// response meta more data
private $_more = null;
// response stream marker data
private $_last_marker = null;
// strip envelope response from returned value
private $_stripResponseEnvelope=true;
// if processing stream_markers or any fast stream, decrease $sleepFor
public $streamingSleepFor=20000;
/**
* Constructs an AppDotNet PHP object with the specified client ID and
* client secret.
* @param string $client_id The client ID you received from App.net when
* creating your app.
* @param string $client_secret The client secret you received from
* App.net when creating your app.
*/
public function __construct($client_id,$client_secret) {
$this->_clientId = $client_id;
$this->_clientSecret = $client_secret;
// if the digicert certificate exists in the same folder as this file,
// remember that fact for later
if (file_exists(dirname(__FILE__).'/DigiCertHighAssuranceEVRootCA.pem')) {
$this->_sslCA = dirname(__FILE__).'/DigiCertHighAssuranceEVRootCA.pem';
}
}
/**
* Set whether or not to strip Envelope Response (meta) information
* This option will be deprecated in the future. Is it to allow
* a stepped migration path between code expecting the old behavior
* and new behavior. When not stripped, you still can use the proper
* method to pull the meta information. Please start converting your code ASAP
*/
public function includeResponseEnvelope() {
$this->_stripResponseEnvelope=false;
}
/**
* Construct the proper Auth URL for the user to visit and either grant
* or not access to your app. Usually you would place this as a link for
* the user to client, or a redirect to send them to the auth URL.
* Also can be called after authentication for additional scopes
* @param string $callbackUri Where you want the user to be directed
* after authenticating with App.net. This must be one of the URIs
* allowed by your App.net application settings.
* @param array $scope An array of scopes (permissions) you wish to obtain
* from the user. Currently options are stream, email, write_post, follow,
* messages, and export. If you don't specify anything, you'll only receive
* access to the user's basic profile (the default).
*/
public function getAuthUrl($callback_uri,$scope=null) {
// construct an authorization url based on our client id and other data
$data = array(
'client_id'=>$this->_clientId,
'response_type'=>'code',
'redirect_uri'=>$callback_uri,
);
$url = $this->_authUrl;
if ($this->_accessToken) {
$url .= 'authorize?';
} else {
$url .= 'authenticate?';
}
$url .= $this->buildQueryString($data);
if ($scope) {
$url .= '&scope='.implode('+',$scope);
}
// return the constructed url
return $url;
}
/**
* Call this after they return from the auth page, or anytime you need the
* token. For example, you could store it in a database and use
* setAccessToken() later on to return on behalf of the user.
*/
public function getAccessToken($callback_uri) {
// if there's no access token set, and they're returning from
// the auth page with a code, use the code to get a token
if (!$this->_accessToken && isset($_GET['code']) && $_GET['code']) {
// construct the necessary elements to get a token
$data = array(
'client_id'=>$this->_clientId,
'client_secret'=>$this->_clientSecret,
'grant_type'=>'authorization_code',
'redirect_uri'=>$callback_uri,
'code'=>$_GET['code']
);
// try and fetch the token with the above data
$res = $this->httpReq('post',$this->_authUrl.'access_token', $data);
// store it for later
$this->_accessToken = $res['access_token'];
$this->_username = $res['username'];
$this->_user_id = $res['user_id'];
}
// return what we have (this may be a token, or it may be nothing)
return $this->_accessToken;
}
/**
* Check the scope of current token to see if it has required scopes
* has to be done after a check
*/
public function checkScopes($app_scopes) {
if (!count($this->_scopes)) {
return -1; // _scope is empty
}
$missing=array();
foreach($app_scopes as $scope) {
if (!in_array($scope,$this->_scopes)) {
if ($scope=='public_messages') {
// messages works for public_messages
if (in_array('messages',$this->_scopes)) {
// if we have messages in our scopes
continue;
}
}
$missing[]=$scope;
}
}
// identify the ones missing
if (count($missing)) {
// do something
return $missing;
}
return 0; // 0 missing
}
/**
* Set the access token (eg: after retrieving it from offline storage)
* @param string $token A valid access token you're previously received
* from calling getAccessToken().
*/
public function setAccessToken($token) {
$this->_accessToken = $token;
}
/**
* Deauthorize the current token (delete your authorization from the API)
* Generally this is useful for logging users out from a web app, so they
* don't get automatically logged back in the next time you redirect them
* to the authorization URL.
*/
public function deauthorizeToken() {
return $this->httpReq('delete',$this->_baseUrl.'token');
}
/**
* Retrieve an app access token from the app.net API. This allows you
* to access the API without going through the user access flow if you
* just want to (eg) consume global. App access tokens are required for
* some actions (like streaming global). DO NOT share the return value
* of this function with any user (or save it in a cookie, etc). This
* is considered secret info for your app only.
* @return string The app access token
*/
public function getAppAccessToken() {
// construct the necessary elements to get a token
$data = array(
'client_id'=>$this->_clientId,
'client_secret'=>$this->_clientSecret,
'grant_type'=>'client_credentials',
);
// try and fetch the token with the above data
$res = $this->httpReq('post',$this->_authUrl.'access_token', $data);
// store it for later
$this->_appAccessToken = $res['access_token'];
$this->_accessToken = $res['access_token'];
$this->_username = null;
$this->_user_id = null;
return $this->_accessToken;
}
/**
* Returns the total number of requests you're allowed within the
* alloted time period.
* @see getRateLimitReset()
*/
public function getRateLimit() {
return $this->_rateLimit;
}
/**
* The number of requests you have remaining within the alloted time period
* @see getRateLimitReset()
*/
public function getRateLimitRemaining() {
return $this->_rateLimitRemaining;
}
/**
* The number of seconds remaining in the alloted time period.
* When this time is up you'll have getRateLimit() available again.
*/
public function getRateLimitReset() {
return $this->_rateLimitReset;
}
/**
* The scope the user has
*/
public function getScope() {
return $this->_scope;
}
/**
* Internal function, parses out important information App.net adds
* to the headers.
*/
protected function parseHeaders($response) {
// take out the headers
// set internal variables
// return the body/content
$this->_rateLimit = null;
$this->_rateLimitRemaining = null;
$this->_rateLimitReset = null;
$this->_scope = null;
$response = explode("\r\n\r\n",$response,2);
$headers = $response[0];
if($headers == 'HTTP/1.1 100 Continue') {
$response = explode("\r\n\r\n",$response[1],2);
$headers = $response[0];
}
if (isset($response[1])) {
$content = $response[1];
}
else {
$content = null;
}
// this is not a good way to parse http headers
// it will not (for example) take into account multiline headers
// but what we're looking for is pretty basic, so we can ignore those shortcomings
$headers = explode("\r\n",$headers);
foreach ($headers as $header) {
$header = explode(': ',$header,2);
if (count($header)<2) {
continue;
}
list($k,$v) = $header;
switch ($k) {
case 'X-RateLimit-Remaining':
$this->_rateLimitRemaining = $v;
break;
case 'X-RateLimit-Limit':
$this->_rateLimit = $v;
break;
case 'X-RateLimit-Reset':
$this->_rateLimitReset = $v;
break;
case 'X-OAuth-Scopes':
$this->_scope = $v;
$this->_scopes=explode(',',$v);
break;
}
}
return $content;
}
/**
* Internal function. Used to turn things like TRUE into 1, and then
* calls http_build_query.
*/
protected function buildQueryString($array) {
foreach ($array as $k=>&$v) {
if ($v===true) {
$v = '1';
}
elseif ($v===false) {
$v = '0';
}
unset($v);
}
return http_build_query($array);
}
/**
* Internal function to handle all
* HTTP requests (POST,PUT,GET,DELETE)
*/
protected function httpReq($act, $req, $params=array(),$contentType='application/x-www-form-urlencoded') {
$ch = curl_init($req);
$headers = array();
if($act != 'get') {
curl_setopt($ch, CURLOPT_POST, true);
// if they passed an array, build a list of parameters from it
if (is_array($params) && $act != 'post-raw') {
$params = $this->buildQueryString($params);
}
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
$headers[] = "Content-Type: ".$contentType;
}
if($act != 'post' && $act != 'post-raw') {
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, strtoupper($act));
}
if($act == 'get' && isset($params['access_token'])) {
$headers[] = 'Authorization: Bearer '.$params['access_token'];
}
else if ($this->_accessToken) {
$headers[] = 'Authorization: Bearer '.$this->_accessToken;
}
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLINFO_HEADER_OUT, true);
curl_setopt($ch, CURLOPT_HEADER, true);
if ($this->_sslCA) {
curl_setopt($ch, CURLOPT_CAINFO, $this->_sslCA);
}
$this->_last_response = curl_exec($ch);
$this->_last_request = curl_getinfo($ch,CURLINFO_HEADER_OUT);
$http_status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if ($http_status==0) {
throw new AppDotNetException('Unable to connect to '.$req);
}
if ($http_status<200 || $http_status>=300) {
throw new AppDotNetException('HTTP error '.$this->_last_response);
}
if ($this->_last_request===false) {
if (!curl_getinfo($ch,CURLINFO_SSL_VERIFYRESULT)) {
throw new AppDotNetException('SSL verification failed, connection terminated.');
}
}
$response = $this->parseHeaders($this->_last_response);
$response = json_decode($response,true);
if (isset($response['meta'])) {
if (isset($response['meta']['max_id'])) {
$this->_maxid=$response['meta']['max_id'];
$this->_minid=$response['meta']['min_id'];
}
if (isset($response['meta']['more'])) {
$this->_more=$response['meta']['more'];
}
if (isset($response['meta']['marker'])) {
$this->_last_marker=$response['meta']['marker'];
}
}
// look for errors
if (isset($response['error'])) {
if (is_array($response['error'])) {
throw new AppDotNetException($response['error']['message'],
$response['error']['code']);
}
else {
throw new AppDotNetException($response['error']);
}
}
// look for response migration errors
elseif (isset($response['meta']) && isset($response['meta']['error_message'])) {
throw new AppDotNetException($response['meta']['error_message'],$response['meta']['code']);
}
// if we've received a migration response, handle it and return data only
elseif ($this->_stripResponseEnvelope && isset($response['meta']) && isset($response['data'])) {
return $response['data'];
}
// else non response migration response, just return it
else {
return $response;
}
}
/**
* Get max_id from last meta response data envelope
*/
public function getResponseMaxID() {
return $this->_maxid;
}
/**
* Get min_id from last meta response data envelope
*/
public function getResponseMinID() {
return $this->_minid;
}
/**
* Get more from last meta response data envelope
*/
public function getResponseMore() {
return $this->_more;
}
/**
* Get marker from last meta response data envelope
*/
public function getResponseMarker() {
return $this->_last_marker;
}
/**
* Fetch API configuration object
*/
public function getConfig() {
return $this->httpReq('get',$this->_baseUrl.'config');
}
/**
* Return the Filters for the current user.
*/
public function getAllFilters() {
return $this->httpReq('get',$this->_baseUrl.'filters');
}
/**
* Create a Filter for the current user.
* @param string $name The name of the new filter
* @param array $filters An associative array of filters to be applied.
* This may change as the API evolves, as of this writing possible
* values are: user_ids, hashtags, link_domains, and mention_user_ids.
* You will need to provide at least one filter name=>value pair.
*/
public function createFilter($name='New filter', $filters=array()) {
$filters['name'] = $name;
return $this->httpReq('post',$this->_baseUrl.'filters',$filters);
}
/**
* Returns a specific Filter object.
* @param integer $filter_id The ID of the filter you wish to retrieve.
*/
public function getFilter($filter_id=null) {
return $this->httpReq('get',$this->_baseUrl.'filters/'.urlencode($filter_id));
}
/**
* Delete a Filter. The Filter must belong to the current User.
* @return object Returns the deleted Filter on success.
*/
public function deleteFilter($filter_id=null) {
return $this->httpReq('delete',$this->_baseUrl.'filters/'.urlencode($filter_id));
}
/**
* Process user description, message or post text.
* Mentions and hashtags will be parsed out of the
* text, as will bare URLs. To create a link in the text without using a
* bare URL, include the anchor text in the object text and include a link
* entity in the function call.
* @param string $text The text of the description/message/post
* @param array $data An associative array of optional post data. This
* will likely change as the API evolves, as of this writing allowed keys are:
* reply_to, and annotations. "annotations" may be a complex object represented
* by an associative array.
* @param array $params An associative array of optional data to be included
* in the URL (such as 'include_annotations' and 'include_machine')
* @return array An associative array representing the post.
*/
public function processText($text=null, $data = array(), $params = array()) {
$data['text'] = $text;
$json = json_encode($data);
$qs = '';
if (!empty($params)) {
$qs = '?'.$this->buildQueryString($params);
}
return $this->httpReq('post',$this->_baseUrl.'text/process'.$qs, $json, 'application/json');
}
/**
* Create a new Post object. Mentions and hashtags will be parsed out of the
* post text, as will bare URLs. To create a link in a post without using a
* bare URL, include the anchor text in the post's text and include a link
* entity in the post creation call.
* @param string $text The text of the post
* @param array $data An associative array of optional post data. This
* will likely change as the API evolves, as of this writing allowed keys are:
* reply_to, and annotations. "annotations" may be a complex object represented
* by an associative array.
* @param array $params An associative array of optional data to be included
* in the URL (such as 'include_annotations' and 'include_machine')
* @return array An associative array representing the post.
*/
public function createPost($text=null, $data = array(), $params = array()) {
$data['text'] = $text;
$json = json_encode($data);
$qs = '';
if (!empty($params)) {
$qs = '?'.$this->buildQueryString($params);
}
return $this->httpReq('post',$this->_baseUrl.'posts'.$qs, $json, 'application/json');
}
/**
* Returns a specific Post.
* @param integer $post_id The ID of the post to retrieve
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: include_annotations.
* @return array An associative array representing the post
*/
public function getPost($post_id=null,$params = array()) {
return $this->httpReq('get',$this->_baseUrl.'posts/'.urlencode($post_id)
.'?'.$this->buildQueryString($params));
}
/**
* Delete a Post. The current user must be the same user who created the Post.
* It returns the deleted Post on success.
* @param integer $post_id The ID of the post to delete
* @param array An associative array representing the post that was deleted
*/
public function deletePost($post_id=null) {
return $this->httpReq('delete',$this->_baseUrl.'posts/'.urlencode($post_id));
}
/**
* Retrieve the Posts that are 'in reply to' a specific Post.
* @param integer $post_id The ID of the post you want to retrieve replies for.
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: count, before_id, since_id, include_muted, include_deleted,
* include_directed_posts, and include_annotations.
* @return An array of associative arrays, each representing a single post.
*/
public function getPostReplies($post_id=null,$params = array()) {
return $this->httpReq('get',$this->_baseUrl.'posts/'.urlencode($post_id)
.'/replies?'.$this->buildQueryString($params));
}
/**
* Get the most recent Posts created by a specific User in reverse
* chronological order (most recent first).
* @param mixed $user_id Either the ID of the user you wish to retrieve posts by,
* or the string "me", which will retrieve posts for the user you're authenticated
* as.
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: count, before_id, since_id, include_muted, include_deleted,
* include_directed_posts, and include_annotations.
* @return An array of associative arrays, each representing a single post.
*/
public function getUserPosts($user_id='me', $params = array()) {
return $this->httpReq('get',$this->_baseUrl.'users/'.urlencode($user_id)
.'/posts?'.$this->buildQueryString($params));
}
/**
* Get the most recent Posts mentioning by a specific User in reverse
* chronological order (newest first).
* @param mixed $user_id Either the ID of the user who is being mentioned, or
* the string "me", which will retrieve posts for the user you're authenticated
* as.
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: count, before_id, since_id, include_muted, include_deleted,
* include_directed_posts, and include_annotations.
* @return An array of associative arrays, each representing a single post.
*/
public function getUserMentions($user_id='me',$params = array()) {
return $this->httpReq('get',$this->_baseUrl.'users/'
.urlencode($user_id).'/mentions?'.$this->buildQueryString($params));
}
/**
* Return the 20 most recent posts from the current User and
* the Users they follow.
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: count, before_id, since_id, include_muted, include_deleted,
* include_directed_posts, and include_annotations.
* @return An array of associative arrays, each representing a single post.
*/
public function getUserStream($params = array()) {
return $this->httpReq('get',$this->_baseUrl.'posts/stream?'.$this->buildQueryString($params));
}
/**
* Returns a specific user object.
* @param mixed $user_id The ID of the user you want to retrieve, or the string
* "me" to retrieve data for the users you're currently authenticated as.
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: include_annotations|include_user_annotations.
* @return array An associative array representing the user data.
*/
public function getUser($user_id='me', $params = array()) {
return $this->httpReq('get',$this->_baseUrl.'users/'.urlencode($user_id)
.'?'.$this->buildQueryString($params));
}
/**
* Returns multiple users request by an array of user ids
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: include_annotations|include_user_annotations.
* @return array An associative array representing the users data.
*/
public function getUsers($user_arr, $params = array()) {
return $this->httpReq('get',$this->_baseUrl.'users?ids='.join(',',$user_arr)
.'&'.$this->buildQueryString($params));
}
/**
* Add the specified user ID to the list of users followed.
* Returns the User object of the user being followed.
* @param integer $user_id The user ID of the user to follow.
* @return array An associative array representing the user you just followed.
*/
public function followUser($user_id=null) {
return $this->httpReq('post',$this->_baseUrl.'users/'.urlencode($user_id).'/follow');
}
/**
* Removes the specified user ID to the list of users followed.
* Returns the User object of the user being unfollowed.
* @param integer $user_id The user ID of the user to unfollow.
* @return array An associative array representing the user you just unfollowed.
*/
public function unfollowUser($user_id=null) {
return $this->httpReq('delete',$this->_baseUrl.'users/'.urlencode($user_id).'/follow');
}
/**
* Returns an array of User objects the specified user is following.
* @param mixed $user_id Either the ID of the user being followed, or
* the string "me", which will retrieve posts for the user you're authenticated
* as.
* @return array An array of associative arrays, each representing a single
* user following $user_id
*/
public function getFollowing($user_id='me') {
return $this->httpReq('get',$this->_baseUrl.'users/'.$user_id.'/following');
}
/**
* Returns an array of User objects for users following the specified user.
* @param mixed $user_id Either the ID of the user being followed, or
* the string "me", which will retrieve posts for the user you're authenticated
* as.
* @return array An array of associative arrays, each representing a single
* user following $user_id
*/
public function getFollowers($user_id='me') {
return $this->httpReq('get',$this->_baseUrl.'users/'.$user_id.'/followers');
}
/**
* Return Posts matching a specific #hashtag.
* @param string $hashtag The hashtag you're looking for.
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: count, before_id, since_id, include_muted, include_deleted,
* include_directed_posts, and include_annotations.
* @return An array of associative arrays, each representing a single post.
*/
public function searchHashtags($hashtag=null, $params = array()) {
return $this->httpReq('get',$this->_baseUrl.'posts/tag/'
.urlencode($hashtag).'?'.$this->buildQueryString($params));
}
/**
* Retrieve a list of all public Posts on App.net, often referred to as the
* global stream.
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: count, before_id, since_id, include_muted, include_deleted,
* include_directed_posts, and include_annotations.
* @return An array of associative arrays, each representing a single post.
*/
public function getPublicPosts($params = array()) {
return $this->httpReq('get',$this->_baseUrl.'posts/stream/global?'.$this->buildQueryString($params));
}
/**
* List User interactions
*/
public function getMyInteractions($params = array()) {
return $this->httpReq('get',$this->_baseUrl.'users/me/interactions?'.$this->buildQueryString($params));
}
/**
* Retrieve a user's user ID by specifying their username.
* Now supported by the API. We use the API if we have a token
* Otherwise we scrape the alpha.app.net site for the info.
* @param string $username The username of the user you want the ID of, without
* an @ symbol at the beginning.
* @return integer The user's user ID
*/
public function getIdByUsername($username=null) {
if ($this->_accessToken) {
$res=$this->httpReq('get',$this->_baseUrl.'users/@'.$username);
$user_id=$res['data']['id'];
} else {
$ch = curl_init('https://alpha.app.net/'.urlencode(strtolower($username)));
curl_setopt($ch, CURLOPT_POST, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch,CURLOPT_USERAGENT,
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:7.0.1) Gecko/20100101 Firefox/7.0.1');
$response = curl_exec($ch);
curl_close($ch);
$temp = explode('title="User Id ',$response);
$temp2 = explode('"',$temp[1]);
$user_id = $temp2[0];
}
return $user_id;
}
/**
* Mute a user
* @param integer $user_id The user ID to mute
*/
public function muteUser($user_id=null) {
return $this->httpReq('post',$this->_baseUrl.'users/'.urlencode($user_id).'/mute');
}
/**
* Unmute a user
* @param integer $user_id The user ID to unmute
*/
public function unmuteUser($user_id=null) {
return $this->httpReq('delete',$this->_baseUrl.'users/'.urlencode($user_id).'/mute');
}
/**
* List the users muted by the current user
* @return array An array of associative arrays, each representing one muted user.
*/
public function getMuted() {
return $this->httpReq('get',$this->_baseUrl.'users/me/muted');
}
/**
* Star a post
* @param integer $post_id The post ID to star
*/
public function starPost($post_id=null) {
return $this->httpReq('post',$this->_baseUrl.'posts/'.urlencode($post_id).'/star');
}
/**
* Unstar a post
* @param integer $post_id The post ID to unstar
*/
public function unstarPost($post_id=null) {
return $this->httpReq('delete',$this->_baseUrl.'posts/'.urlencode($post_id).'/star');
}
/**
* List the posts starred by the current user
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: count, before_id, since_id, include_muted, include_deleted,
* include_directed_posts, and include_annotations.
* See https://github.com/appdotnet/api-spec/blob/master/resources/posts.md#general-parameters
* @return array An array of associative arrays, each representing a single
* user who has starred a post
*/
public function getStarred($user_id='me', $params = array()) {
return $this->httpReq('get',$this->_baseUrl.'users/'.urlencode($user_id).'/stars'
.'?'.$this->buildQueryString($params));
}
/**
* List the users who have starred a post
* @param integer $post_id the post ID to get stars from
* @return array An array of associative arrays, each representing one user.
*/
public function getStars($post_id=null) {
return $this->httpReq('get',$this->_baseUrl.'posts/'.urlencode($post_id).'/stars');
}
/**
* Returns an array of User objects of users who reposted the specified post.
* @param integer $post_id the post ID to
* @return array An array of associative arrays, each representing a single
* user who reposted $post_id
*/
public function getReposters($post_id){
return $this->httpReq('get',$this->_baseUrl.'posts/'.urlencode($post_id).'/reposters');
}
/**
* Repost an existing Post object.
* @param integer $post_id The id of the post
* @return not a clue
*/
public function repost($post_id){
return $this->httpReq('post',$this->_baseUrl.'posts/'.urlencode($post_id).'/repost');
}
/**
* Delete a post that the user has reposted.
* @param integer $post_id The id of the post
* @return not a clue
*/
public function deleteRepost($post_id){
return $this->httpReq('delete',$this->_baseUrl.'posts/'.urlencode($post_id).'/repost');
}
/**
* List the posts who match a specific search term
* @param array $params a list of filter, search query, and general Post parameters
* see: https://developers.app.net/reference/resources/post/search/
* @param string $query The search query. Supports
* normal search terms. Searches post text.
* @return array An array of associative arrays, each representing one post.
* or false on error
*/
public function searchPosts($params = array(), $query='', $order='default') {
if (!is_array($params)) {
return false;
}
if (!empty($query)) {
$params['query']=$query;
}
if ($order=='default') {
if (!empty($query)) {
$params['order']='score';
} else {
$params['order']='id';
}
}
return $this->httpReq('get',$this->_baseUrl.'posts/search?'.$this->buildQueryString($params));
}
/**
* List the users who match a specific search term
* @param string $search The search query. Supports @username or #tag searches as
* well as normal search terms. Searches username, display name, bio information.
* Does not search posts.
* @return array An array of associative arrays, each representing one user.
*/
public function searchUsers($search="") {
return $this->httpReq('get',$this->_baseUrl.'users/search?q='.urlencode($search));
}
/**
* Return the 20 most recent posts for a stream using a valid Token
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: count, before_id, since_id, include_muted, include_deleted,
* include_directed_posts, and include_annotations.
* @return An array of associative arrays, each representing a single post.
*/
public function getTokenStream($params = array()) {
if ($params['access_token']) {
return $this->httpReq('get',$this->_baseUrl.'posts/stream?'.$this->buildQueryString($params),$params);
} else {
return $this->httpReq('get',$this->_baseUrl.'posts/stream?'.$this->buildQueryString($params));
}
}
/**
* Get a user object by username
* @param string $name the @name to get
* @return array representing one user
*/
public function getUserByName($name=null) {
return $this->httpReq('get',$this->_baseUrl.'users/@'.$name);
}
/**
* Return the 20 most recent Posts from the current User's personalized stream
* and mentions stream merged into one stream.
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: count, before_id, since_id, include_muted, include_deleted,
* include_directed_posts, and include_annotations.
* @return An array of associative arrays, each representing a single post.
*/
public function getUserUnifiedStream($params = array()) {
return $this->httpReq('get',$this->_baseUrl.'posts/stream/unified?'.$this->buildQueryString($params));
}
/**
* Update Profile Data via JSON
* @data array containing user descriptors
*/
public function updateUserData($data = array(), $params = array()) {
$json = json_encode($data);
return $this->httpReq('put',$this->_baseUrl.'users/me'.'?'.
$this->buildQueryString($params), $json, 'application/json');
}
/**
* Update a user image
* @which avatar|cover
* @image path reference to image
*/
protected function updateUserImage($which = 'avatar', $image = null) {
$data = array($which=>"@$image");
return $this->httpReq('post-raw',$this->_baseUrl.'users/me/'.$which, $data, 'multipart/form-data');
}
public function updateUserAvatar($avatar = null) {
if($avatar != null)
return $this->updateUserImage('avatar', $avatar);
}
public function updateUserCover($cover = null) {
if($cover != null)
return $this->updateUserImage('cover', $cover);
}
/**
* update stream marker
*/
public function updateStreamMarker($data = array()) {
$json = json_encode($data);
return $this->httpReq('post',$this->_baseUrl.'posts/marker', $json, 'application/json');
}
/**
* get a page of current user subscribed channels
*/
public function getUserSubscriptions($params = array()) {
return $this->httpReq('get',$this->_baseUrl.'channels?'.$this->buildQueryString($params));
}
/**
* get user channels
*/
public function getMyChannels($params = array()) {
return $this->httpReq('get',$this->_baseUrl.'channels/me?'.$this->buildQueryString($params));
}
/**
* create a channel
* note: you cannot create a channel with type=net.app.core.pm (see createMessage)
*/
public function createChannel($data = array()) {
$json = json_encode($data);
return $this->httpReq('post',$this->_baseUrl.'channels'.($pm?'/pm/messsages':''), $json, 'application/json');
}
/**
* get channelid info
*/
public function getChannel($channelid, $params = array()) {
return $this->httpReq('get',$this->_baseUrl.'channels/'.$channelid.'?'.$this->buildQueryString($params));
}
/**
* get multiple channels' info by an array of channelids
*/
public function getChannels($channels, $params = array()) {
return $this->httpReq('get',$this->_baseUrl.'channels?ids='.join(',',$channels).'&'.$this->buildQueryString($params));
}
/**
* update channelid
*/
public function updateChannel($channelid, $data = array()) {
$json = json_encode($data);
return $this->httpReq('put',$this->_baseUrl.'channels/'.$channelid, $json, 'application/json');
}
/**
* subscribe from channelid
*/
public function channelSubscribe($channelid) {
return $this->httpReq('post',$this->_baseUrl.'channels/'.$channelid.'/subscribe');
}
/**
* unsubscribe from channelid
*/
public function channelUnsubscribe($channelid) {
return $this->httpReq('delete',$this->_baseUrl.'channels/'.$channelid.'/subscribe');
}
/**
* get all user objects subscribed to channelid
*/
public function getChannelSubscriptions($channelid, $params = array()) {
return $this->httpReq('get',$this->_baseUrl.'channel/'.$channelid.'/subscribers?'.$this->buildQueryString($params));
}
/**
* get all user IDs subscribed to channelid
*/
public function getChannelSubscriptionsById($channelid) {
return $this->httpReq('get',$this->_baseUrl.'channel/'.$channelid.'/subscribers/ids');
}
/**
* get a page of messages in channelid
*/
public function getMessages($channelid, $params = array()) {
return $this->httpReq('get',$this->_baseUrl.'channels/'.$channelid.'/messages?'.$this->buildQueryString($params));
}
/**
* create message
* @param $channelid numeric or "pm" for auto-chanenl (type=net.app.core.pm)
* @param $data array('text'=>'YOUR_MESSAGE') If a type=net.app.core.pm, then "destinations" key can be set to address as an array of people to send this PM too
*/
public function createMessage($channelid,$data) {
$json = json_encode($data);
return $this->httpReq('post',$this->_baseUrl.'channels/'.$channelid.'/messages', $json, 'application/json');
}
/**
* get message
*/
public function getMessage($channelid,$messageid) {
return $this->httpReq('get',$this->_baseUrl.'channels/'.$channelid.'/messages/'.$messageid);
}
/**
* delete messsage
*/
public function deleteMessage($channelid,$messageid) {
return $this->httpReq('delete',$this->_baseUrl.'channels/'.$channelid.'/messages/'.$messageid);
}
/**
* Get Application Information
*/
public function getAppTokenInfo() {
// requires appAccessToken
if (!$this->_appAccessToken) {
$this->getAppAccessToken();
}
// ensure request is made with our appAccessToken
$params['access_token']=$this->_appAccessToken;
return $this->httpReq('get',$this->_baseUrl.'token',$params);
}
/**
* Get User Information
*/
public function getUserTokenInfo() {
return $this->httpReq('get',$this->_baseUrl.'token');
}
/**
* Get Application Authorized User IDs
*/
public function getAppUserIDs() {
// requires appAccessToken
if (!$this->_appAccessToken) {
$this->getAppAccessToken();
}
// ensure request is made with our appAccessToken
$params['access_token']=$this->_appAccessToken;
return $this->httpReq('get',$this->_baseUrl.'apps/me/tokens/user_ids',$params);
}
/**
* Get Application Authorized User Tokens
*/
public function getAppUserTokens() {
// requires appAccessToken
if (!$this->_appAccessToken) {
$this->getAppAccessToken();
}
// ensure request is made with our appAccessToken
$params['access_token']=$this->_appAccessToken;
return $this->httpReq('get',$this->_baseUrl.'apps/me/tokens',$params);
}
public function getLastRequest() {
return $this->_last_request;
}
public function getLastResponse() {
return $this->_last_response;
}
/**
* Registers your function (or an array of object and method) to be called
* whenever an event is received via an open app.net stream. Your function
* will receive a single parameter, which is the object wrapper containing
* the meta and data.
* @param mixed A PHP callback (either a string containing the function name,
* or an array where the first element is the class/object and the second
* is the method).
*/
public function registerStreamFunction($function) {
$this->_streamCallback = $function;
}
/**
* Opens a stream that's been created for this user/app and starts sending
* events/objects to your defined callback functions. You must define at
* least one callback function before opening a stream.
* @param mixed $stream Either a stream ID or the endpoint of a stream
* you've already created. This stream must exist and must be valid for
* your current access token. If you pass a stream ID, the library will
* make an API call to get the endpoint.
*
* This function will return immediately, but your callback functions
* will continue to receive events until you call closeStream() or until
* App.net terminates the stream from their end with an error.
*
* If you're disconnected due to a network error, the library will
* automatically attempt to reconnect you to the same stream, no action
* on your part is necessary for this. However if the app.net API returns
* an error, a reconnection attempt will not be made.
*
* Note there is no closeStream, because once you open a stream you
* can't stop it (unless you exit() or die() or throw an uncaught
* exception, or something else that terminates the script).
* @return boolean True
* @see createStream()
*/
public function openStream($stream) {
// if there's already a stream running, don't allow another
if ($this->_currentStream) {
throw new AppDotNetException('There is already a stream being consumed, only one stream can be consumed per AppDotNetStream instance');
}
// must register a callback (or the exercise is pointless)
if (!$this->_streamCallback) {
throw new AppDotNetException('You must define your callback function using registerStreamFunction() before calling openStream');
}
// if the stream is a numeric value, get the stream info from the api
if (is_numeric($stream)) {
$stream = $this->getStream($stream);
$this->_streamUrl = $stream['endpoint'];
}
else {
$this->_streamUrl = $stream;
}
// continue doing this until we get an error back or something...?
$this->httpStream('get',$this->_streamUrl);
return true;
}
/**
* Close the currently open stream.
* @return true;
*/
public function closeStream() {
if (!$this->_lastStreamActivity) {
// never opened
return;
}
if (!$this->_multiStream) {
throw new AppDotNetException('You must open a stream before calling closeStream()');
}
curl_close($this->_currentStream);
curl_multi_remove_handle($this->_multiStream,$this->_currentStream);
curl_multi_close($this->_multiStream);
$this->_currentStream = null;
$this->_multiStream = null;
}
/**
* Retrieve all streams for the current access token.
* @return array An array of stream definitions.
*/
public function getAllStreams() {
return $this->httpReq('get',$this->_baseUrl.'streams');
}
/**
* Returns a single stream specified by a stream ID. The stream must have been
* created with the current access token.
* @return array A stream definition
*/
public function getStream($streamId) {
return $this->httpReq('get',$this->_baseUrl.'streams/'.urlencode($streamId));
}
/**
* Creates a stream for the current app access token.
*
* @param array $objectTypes The objects you want to retrieve data for from the
* stream. At time of writing these can be 'post', 'star', and/or 'user_follow'.
* If you don't specify, all events will be retrieved.
*/
public function createStream($objectTypes=null) {
// default object types to everything
if (is_null($objectTypes)) {
$objectTypes = array('post','star','user_follow');
}
$data = array(
'object_types'=>$objectTypes,
'type'=>'long_poll',
);
$data = json_encode($data);
$response = $this->httpReq('post',$this->_baseUrl.'streams',$data,'application/json');
return $response;
}
/**
* Update stream for the current app access token
*
* @param integer $streamId The stream ID to update. This stream must have been
* created by the current access token.
* @param array $data allows object_types, type, filter_id and key to be updated. filter_id/key can be omitted
*/
public function updateStream($streamId,$data) {
// objectTypes is likely required
if (is_null($data['object_types'])) {
$data['object_types'] = array('post','star','user_follow');
}
// type can still only be long_poll
if (is_null($data['type'])) {
$data['type']='long_poll';
}
$data = json_encode($data);
$response = $this->httpReq('put',$this->_baseUrl.'streams/'.urlencode($streamId),$data,'application/json');
return $response;
}
/**
* Deletes a stream if you no longer need it.
*
* @param integer $streamId The stream ID to delete. This stream must have been
* created by the current access token.
*/
public function deleteStream($streamId) {
return $this->httpReq('delete',$this->_baseUrl.'streams/'.urlencode($streamId));
}
/**
* Deletes all streams created by the current access token.
*/
public function deleteAllStreams() {
return $this->httpReq('delete',$this->_baseUrl.'streams');
}
/**
* Internal function used to process incoming chunks from the stream. This is only
* public because it needs to be accessed by CURL. Do not call or use this function
* in your own code.
* @ignore
*/
public function httpStreamReceive($ch,$data) {
$this->_lastStreamActivity = time();
$this->_streamBuffer .= $data;
if (!$this->_streamHeaders) {
$pos = strpos($this->_streamBuffer,"\r\n\r\n");
if ($pos!==false) {
$this->_streamHeaders = substr($this->_streamBuffer,0,$pos);
$this->_streamBuffer = substr($this->_streamBuffer,$pos+4);
}
}
else {
$pos = strpos($this->_streamBuffer,"\r\n");
while ($pos!==false) {
$command = substr($this->_streamBuffer,0,$pos);
$this->_streamBuffer = substr($this->_streamBuffer,$pos+2);
$command = json_decode($command,true);
if ($command) {
call_user_func($this->_streamCallback,$command);
}
$pos = strpos($this->_streamBuffer,"\r\n");
}
}
return strlen($data);
}
/**
* Opens a long lived HTTP connection to the app.net servers, and sends data
* received to the httpStreamReceive function. As a general rule you should not
* directly call this method, it's used by openStream().
*/
protected function httpStream($act, $req, $params=array(),$contentType='application/x-www-form-urlencoded') {
if ($this->_currentStream) {
throw new AppDotNetException('There is already an open stream, you must close the existing one before opening a new one');
}
$headers = array();
$this->_streamBuffer = '';
if ($this->_accessToken) {
$headers[] = 'Authorization: Bearer '.$this->_accessToken;
}
$this->_currentStream = curl_init($req);
curl_setopt($this->_currentStream, CURLOPT_HTTPHEADER, $headers);
curl_setopt($this->_currentStream, CURLOPT_RETURNTRANSFER, true);
curl_setopt($this->_currentStream, CURLINFO_HEADER_OUT, true);
curl_setopt($this->_currentStream, CURLOPT_HEADER, true);
if ($this->_sslCA) {
curl_setopt($this->_currentStream, CURLOPT_CAINFO, $this->_sslCA);
}
// every time we receive a chunk of data, forward it to httpStreamReceive
curl_setopt($this->_currentStream, CURLOPT_WRITEFUNCTION, array($this, "httpStreamReceive"));
// curl_exec($ch);
// return;
$this->_multiStream = curl_multi_init();
$this->_lastStreamActivity = time();
curl_multi_add_handle($this->_multiStream,$this->_currentStream);
}
public function reconnectStream() {
$this->closeStream();
$this->_connectFailCounter++;
// if we've failed a few times, back off
if ($this->_connectFailCounter>1) {
$sleepTime = pow(2,$this->_connectFailCounter);
// don't sleep more than 60 seconds
if ($sleepTime>60) {
$sleepTime = 60;
}
sleep($sleepTime);
}
$this->httpStream('get',$this->_streamUrl);
}
/**
* Process an open stream for x microseconds, then return. This is useful if you want
* to be doing other things while processing the stream. If you just want to
* consume the stream without other actions, you can call processForever() instead.
* @param float @microseconds The number of microseconds to process for before
* returning. There are 1,000,000 microseconds in a second.
*
* @return void
*/
public function processStream($microseconds=null) {
if (!$this->_multiStream) {
throw new AppDotNetException('You must open a stream before calling processStream()');
}
$start = microtime(true);
$active = null;
$inQueue = null;
$sleepFor = 0;
do {
// if we haven't received anything within 5.5 minutes, reconnect
// keepalives are sent every 5 minutes (measured on 2013-3-12 by @ryantharp)
if (time()-$this->_lastStreamActivity>=330) {
$this->reconnectStream();
}
curl_multi_exec($this->_multiStream, $active);
if (!$active) {
$httpCode = curl_getinfo($this->_currentStream,CURLINFO_HTTP_CODE);
// don't reconnect on 400 errors
if ($httpCode>=400 && $httpCode<=499) {
throw new AppDotNetException('Received HTTP error '.$httpCode.' check your URL and credentials before reconnecting');
}
$this->reconnectStream();
}
// sleep for a max of 2/10 of a second
$timeSoFar = (microtime(true)-$start)*1000000;
$sleepFor = $this->streamingSleepFor;
if ($timeSoFar+$sleepFor>$microseconds) {
$sleepFor = $microseconds - $timeSoFar;
}
if ($sleepFor>0) {
usleep($sleepFor);
}
} while ($timeSoFar+$sleepFor<$microseconds);
}
/**
* Process an open stream forever. This function will never return, if you
* want to perform other actions while consuming the stream, you should use
* processFor() instead.
* @return void This function will never return
* @see processFor();
*/
public function processStreamForever() {
while (true) {
$this->processStream(600);
}
}
/**
* Upload a file to a user's file store
* @param string $file A string containing the path of the file to upload.
* @param array $data Additional data about the file you're uploading. At the
* moment accepted keys are: mime-type, kind, type, name, public and annotations.
* - If you don't specify mime-type, ADNPHP will attempt to guess the mime type
* based on the file, however this isn't always reliable.
* - If you don't specify kind ADNPHP will attempt to determine if the file is
* an image or not.
* - If you don't specify name, ADNPHP will use the filename of the first
* parameter.
* - If you don't specify public, your file will be uploaded as a private file.
* - Type is REQUIRED.
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: include_annotations|include_file_annotations.
* @return array An associative array representing the file
*/
public function createFile($file, $data, $params=array()) {
if (!$file) {
throw new AppDotNetException('You must specify a path to a file');
}
if (!file_exists($file)) {
throw new AppDotNetException('File path specified does not exist');
}
if (!is_readable($file)) {
throw new AppDotNetException('File path specified is not readable');
}
if (!$data) {
$data = array();
}
if (!array_key_exists('type',$data) || !$data['type']) {
throw new AppDotNetException('Type is required when creating a file');
}
if (!array_key_exists('name',$data)) {
$data['name'] = basename($file);
}
if (array_key_exists('mime-type',$data)) {
$mimeType = $data['mime-type'];
unset($data['mime-type']);
}
else {
$mimeType = null;
}
if (!array_key_exists('kind',$data)) {
$test = @getimagesize($path);
if ($test && array_key_exists('mime',$test)) {
$data['kind'] = 'image';
if (!$mimeType) {
$mimeType = $test['mime'];
}
}
else {
$data['kind'] = 'other';
}
}
if (!$mimeType) {
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$mimeType = finfo_file($finfo, $file);
finfo_close($finfo);
}
if (!$mimeType) {
throw new AppDotNetException('Unable to determine mime type of file, try specifying it explicitly');
}
if (!array_key_exists('public',$data) || !$data['public']) {
$public = false;
}
else {
$public = true;
}
$data['content'] = "@$file;type=$mimeType";
return $this->httpReq('post-raw',$this->_baseUrl.'files', $data, 'multipart/form-data');
}
public function createFilePlaceholder($file = null, $params=array()) {
$name = basename($file);
$data = array('annotations' => $params['annotations'], 'kind' => $params['kind'],
'name' => $name, 'type' => $params['metadata']);
$json = json_encode($data);
return $this->httpReq('post',$this->_baseUrl.'files', $json, 'application/json');
}
public function updateFileContent($fileid, $file) {
$data = file_get_contents($file);
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$mime = finfo_file($finfo, $file);
finfo_close($finfo);
return $this->httpReq('put',$this->_baseUrl.'files/' . $fileid
.'/content', $data, $mime);
}
/**
* Allows for file rename and annotation changes.
* @param integer $file_id The ID of the file to update
* @param array $params An associative array of file parameters.
* @return array An associative array representing the updated file
*/
public function updateFile($file_id=null, $params=array()) {
$data = array('annotations' => $params['annotations'] , 'name' => $params['name']);
$json = json_encode($data);
return $this->httpReq('put',$this->_baseUrl.'files/'.urlencode($file_id), $json, 'application/json');
}
/**
* Returns a specific File.
* @param integer $file_id The ID of the file to retrieve
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: include_annotations|include_file_annotations.
* @return array An associative array representing the file
*/
public function getFile($file_id=null,$params = array()) {
return $this->httpReq('get',$this->_baseUrl.'files/'.urlencode($file_id)
.'?'.$this->buildQueryString($params));
}
public function getFileContent($file_id=null,$params = array()) {
return $this->httpReq('get',$this->_baseUrl.'files/'.urlencode($file_id)
.'/content?'.$this->buildQueryString($params));
}
/** $file_key : derived_file_key */
public function getDerivedFileContent($file_id=null,$file_key=null,$params = array()) {
return $this->httpReq('get',$this->_baseUrl.'files/'.urlencode($file_id)
.'/content/'.urlencode($file_key)
.'?'.$this->buildQueryString($params));
}
/**
* Returns file objects.
* @param array $file_ids The IDs of the files to retrieve
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: include_annotations|include_file_annotations.
* @return array An associative array representing the file data.
*/
public function getFiles($file_ids=array(), $params = array()) {
$ids = '';
foreach($file_ids as $id) {
$ids .= $id . ',';
}
$params['ids'] = substr($ids, 0, -1);
return $this->httpReq('get',$this->_baseUrl.'files'
.'?'.$this->buildQueryString($params));
}
/**
* Returns a user's file objects.
* @param array $params An associative array of optional general parameters.
* This will likely change as the API evolves, as of this writing allowed keys
* are: include_annotations|include_file_annotations|include_user_annotations.
* @return array An associative array representing the file data.
*/
public function getUserFiles($params = array()) {
return $this->httpReq('get',$this->_baseUrl.'users/me/files'
.'?'.$this->buildQueryString($params));
}
/**
* Delete a File. The current user must be the same user who created the File.
* It returns the deleted File on success.
* @param integer $file_id The ID of the file to delete
* @return array An associative array representing the file that was deleted
*/
public function deleteFile($file_id=null) {
return $this->httpReq('delete',$this->_baseUrl.'files/'.urlencode($file_id));
}
}
class AppDotNetException extends Exception {}

View file

@ -0,0 +1,23 @@
-----BEGIN CERTIFICATE-----
MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j
ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL
MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3
LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug
RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm
+9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW
PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM
xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB
Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3
hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg
EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF
MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA
FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec
nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z
eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF
hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2
Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe
vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep
+OkuE6N36B9K
-----END CERTIFICATE-----

15
appnet/README.md Normal file
View file

@ -0,0 +1,15 @@
App.net Plugin
==============
With this addon to friendica you can give your users the possibility to post their *public* messages to App.net and
to import their timeline. The messages will be strapped their rich context and shortened to 256 characters length if
necessary.
Installation
------------
If you have an developer account you can create an Application for all of your users at
[https://account.app.net/developer/apps/](https://account.app.net/developer/apps/). Add the redirect uri
"https://your.server.name/appnet/connect" (Replace "your.server.name" with the hostname of your server)
If you can't create an application (because you only have a free account) this addon still works, but your users have to create individual applications on their own.

29
appnet/appnet.css Executable file
View file

@ -0,0 +1,29 @@
#appnet-import-label, #appnet-disconnect-label, #appnet-token-label,
#appnet-enable-label, #appnet-bydefault-label,
#appnet-clientid-label, #appnet-clientsecret-label {
float: left;
width: 200px;
margin-top: 10px;
}
#appnet-import, #appnet-disconnect, #appnet-token,
#appnet-checkbox, #appnet-bydefault,
#appnet-clientid, #appnet-clientsecret {
float: left;
margin-top: 10px;
}
#appnet-submit {
margin-top: 15px;
}
#appnet-avatar {
float: left;
width: 48px;
height: 48px;
padding: 2px;
}
#appnet-info-block {
height: 52px;
vertical-align: middle;
}

1358
appnet/appnet.php Normal file
View file

@ -0,0 +1,1358 @@
<?php
/**
* Name: App.net Connector
* Description: Bidirectional (posting and reading) connector for app.net.
* Version: 0.2
* Author: Michael Vogel <https://pirati.ca/profile/heluecht>
* Status: Unsupported
*/
/*
To-Do:
- Use embedded pictures for the attachment information (large attachment)
- Sound links must be handled
- https://alpha.app.net/sr_rolando/post/32365203 - double pictures
- https://alpha.app.net/opendev/post/34396399 - location data
*/
require_once('include/enotify.php');
require_once("include/socgraph.php");
define('APPNET_DEFAULT_POLL_INTERVAL', 5); // given in minutes
function appnet_install() {
register_hook('post_local', 'addon/appnet/appnet.php', 'appnet_post_local');
register_hook('notifier_normal', 'addon/appnet/appnet.php', 'appnet_send');
register_hook('jot_networks', 'addon/appnet/appnet.php', 'appnet_jot_nets');
register_hook('cron', 'addon/appnet/appnet.php', 'appnet_cron');
register_hook('connector_settings', 'addon/appnet/appnet.php', 'appnet_settings');
register_hook('connector_settings_post','addon/appnet/appnet.php', 'appnet_settings_post');
register_hook('prepare_body', 'addon/appnet/appnet.php', 'appnet_prepare_body');
register_hook('check_item_notification','addon/appnet/appnet.php', 'appnet_check_item_notification');
}
function appnet_uninstall() {
unregister_hook('post_local', 'addon/appnet/appnet.php', 'appnet_post_local');
unregister_hook('notifier_normal', 'addon/appnet/appnet.php', 'appnet_send');
unregister_hook('jot_networks', 'addon/appnet/appnet.php', 'appnet_jot_nets');
unregister_hook('cron', 'addon/appnet/appnet.php', 'appnet_cron');
unregister_hook('connector_settings', 'addon/appnet/appnet.php', 'appnet_settings');
unregister_hook('connector_settings_post', 'addon/appnet/appnet.php', 'appnet_settings_post');
unregister_hook('prepare_body', 'addon/appnet/appnet.php', 'appnet_prepare_body');
unregister_hook('check_item_notification','addon/appnet/appnet.php', 'appnet_check_item_notification');
}
function appnet_module() {}
function appnet_content(&$a) {
if(! local_user()) {
notice( t('Permission denied.') . EOL);
return '';
}
require_once("mod/settings.php");
settings_init($a);
if (isset($a->argv[1]))
switch ($a->argv[1]) {
case "connect":
$o = appnet_connect($a);
break;
default:
$o = print_r($a->argv, true);
break;
}
else
$o = appnet_connect($a);
return $o;
}
function appnet_check_item_notification($a, &$notification_data) {
$own_id = get_pconfig($notification_data["uid"], 'appnet', 'ownid');
$own_user = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
intval($notification_data["uid"]),
dbesc("adn::".$own_id)
);
if ($own_user)
$notification_data["profiles"][] = $own_user[0]["url"];
}
function appnet_plugin_admin(&$a, &$o){
$t = get_markup_template( "admin.tpl", "addon/appnet/" );
$o = replace_macros($t, array(
'$submit' => t('Save Settings'),
// name, label, value, help, [extra values]
'$clientid' => array('clientid', t('Client ID'), get_config('appnet', 'clientid' ), ''),
'$clientsecret' => array('clientsecret', t('Client Secret'), get_config('appnet', 'clientsecret' ), ''),
));
}
function appnet_plugin_admin_post(&$a){
$clientid = ((x($_POST,'clientid')) ? notags(trim($_POST['clientid'])) : '');
$clientsecret = ((x($_POST,'clientsecret')) ? notags(trim($_POST['clientsecret'])): '');
set_config('appnet','clientid',$clientid);
set_config('appnet','clientsecret',$clientsecret);
info( t('Settings updated.'). EOL );
}
function appnet_connect(&$a) {
require_once 'addon/appnet/AppDotNet.php';
$clientId = get_config('appnet','clientid');
$clientSecret = get_config('appnet','clientsecret');
if (($clientId == "") || ($clientSecret == "")) {
$clientId = get_pconfig(local_user(),'appnet','clientid');
$clientSecret = get_pconfig(local_user(),'appnet','clientsecret');
}
$app = new AppDotNet($clientId, $clientSecret);
try {
$token = $app->getAccessToken($a->get_baseurl().'/appnet/connect');
logger("appnet_connect: authenticated");
$o .= t("You are now authenticated to app.net. ");
set_pconfig(local_user(),'appnet','token', $token);
}
catch (AppDotNetException $e) {
$o .= t("<p>Error fetching token. Please try again.</p>");
}
$o .= '<br /><a href="'.$a->get_baseurl().'/settings/connectors">'.t("return to the connector page").'</a>';
return($o);
}
function appnet_jot_nets(&$a,&$b) {
if(! local_user())
return;
$post = get_pconfig(local_user(),'appnet','post');
if(intval($post) == 1) {
$defpost = get_pconfig(local_user(),'appnet','post_by_default');
$selected = ((intval($defpost) == 1) ? ' checked="checked" ' : '');
$b .= '<div class="profile-jot-net"><input type="checkbox" name="appnet_enable"' . $selected . ' value="1" /> '
. t('Post to app.net') . '</div>';
}
}
function appnet_settings(&$a,&$s) {
require_once 'addon/appnet/AppDotNet.php';
if(! local_user())
return;
$token = get_pconfig(local_user(),'appnet','token');
$app_clientId = get_config('appnet','clientid');
$app_clientSecret = get_config('appnet','clientsecret');
if (($app_clientId == "") || ($app_clientSecret == "")) {
$app_clientId = get_pconfig(local_user(),'appnet','clientid');
$app_clientSecret = get_pconfig(local_user(),'appnet','clientsecret');
}
/* Add our stylesheet to the page so we can make our settings look nice */
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/appnet/appnet.css' . '" media="all" />' . "\r\n";
$enabled = get_pconfig(local_user(),'appnet','post');
$checked = (($enabled) ? ' checked="checked" ' : '');
$css = (($enabled) ? '' : '-disabled');
$def_enabled = get_pconfig(local_user(),'appnet','post_by_default');
$def_checked = (($def_enabled) ? ' checked="checked" ' : '');
$importenabled = get_pconfig(local_user(),'appnet','import');
$importchecked = (($importenabled) ? ' checked="checked" ' : '');
$ownid = get_pconfig(local_user(),'appnet','ownid');
$s .= '<span id="settings_appnet_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_appnet_expanded\'); openClose(\'settings_appnet_inflated\');">';
$s .= '<img class="connector'.$css.'" src="images/appnet.png" /><h3 class="connector">'. t('App.net Import/Export').'</h3>';
$s .= '</span>';
$s .= '<div id="settings_appnet_expanded" class="settings-block" style="display: none;">';
$s .= '<span class="fakelink" onclick="openClose(\'settings_appnet_expanded\'); openClose(\'settings_appnet_inflated\');">';
$s .= '<img class="connector'.$css.'" src="images/appnet.png" /><h3 class="connector">'. t('App.net Import/Export').'</h3>';
$s .= '</span>';
if ($token != "") {
$app = new AppDotNet($app_clientId, $app_clientSecret);
$app->setAccessToken($token);
try {
$userdata = $app->getUser();
if ($ownid != $userdata["id"])
set_pconfig(local_user(),'appnet','ownid', $userdata["id"]);
$s .= '<div id="appnet-info" ><img id="appnet-avatar" src="'.$userdata["avatar_image"]["url"].'" /><p id="appnet-info-block">'. t('Currently connected to: ') .'<a href="'.$userdata["canonical_url"].'" target="_appnet">'.$userdata["username"].'</a><br /><em>'.$userdata["description"]["text"].'</em></p></div>';
$s .= '<div id="appnet-enable-wrapper">';
$s .= '<label id="appnet-enable-label" for="appnet-checkbox">' . t('Enable App.net Post Plugin') . '</label>';
$s .= '<input id="appnet-checkbox" type="checkbox" name="appnet" value="1" ' . $checked . '/>';
$s .= '</div><div class="clear"></div>';
$s .= '<div id="appnet-bydefault-wrapper">';
$s .= '<label id="appnet-bydefault-label" for="appnet-bydefault">' . t('Post to App.net by default') . '</label>';
$s .= '<input id="appnet-bydefault" type="checkbox" name="appnet_bydefault" value="1" ' . $def_checked . '/>';
$s .= '</div><div class="clear"></div>';
$s .= '<label id="appnet-import-label" for="appnet-import">'.t('Import the remote timeline').'</label>';
$s .= '<input id="appnet-import" type="checkbox" name="appnet_import" value="1" '. $importchecked . '/>';
$s .= '<div class="clear"></div>';
}
catch (AppDotNetException $e) {
$s .= t("<p>Error fetching user profile. Please clear the configuration and try again.</p>");
}
} elseif (($app_clientId == '') || ($app_clientSecret == '')) {
$s .= t("<p>You have two ways to connect to App.net.</p>");
$s .= "<hr />";
$s .= t('<p>First way: Register an application at <a href="https://account.app.net/developer/apps/">https://account.app.net/developer/apps/</a> and enter Client ID and Client Secret. ');
$s .= sprintf(t("Use '%s' as Redirect URI<p>"), $a->get_baseurl().'/appnet/connect');
$s .= '<div id="appnet-clientid-wrapper">';
$s .= '<label id="appnet-clientid-label" for="appnet-clientid">' . t('Client ID') . '</label>';
$s .= '<input id="appnet-clientid" type="text" name="clientid" value="" />';
$s .= '</div><div class="clear"></div>';
$s .= '<div id="appnet-clientsecret-wrapper">';
$s .= '<label id="appnet-clientsecret-label" for="appnet-clientsecret">' . t('Client Secret') . '</label>';
$s .= '<input id="appnet-clientsecret" type="text" name="clientsecret" value="" />';
$s .= '</div><div class="clear"></div>';
$s .= "<hr />";
$s .= t('<p>Second way: fetch a token at <a href="http://dev-lite.jonathonduerig.com/">http://dev-lite.jonathonduerig.com/</a>. ');
$s .= t("Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>");
$s .= '<div id="appnet-token-wrapper">';
$s .= '<label id="appnet-token-label" for="appnet-token">' . t('Token') . '</label>';
$s .= '<input id="appnet-token" type="text" name="token" value="'.$token.'" />';
$s .= '</div><div class="clear"></div>';
} else {
$app = new AppDotNet($app_clientId, $app_clientSecret);
$scope = array('basic', 'stream', 'write_post',
'public_messages', 'messages');
$url = $app->getAuthUrl($a->get_baseurl().'/appnet/connect', $scope);
$s .= '<div class="clear"></div>';
$s .= '<a href="'.$url.'">'.t("Sign in using App.net").'</a>';
}
if (($app_clientId != '') || ($app_clientSecret != '') || ($token !='')) {
$s .= '<div id="appnet-disconnect-wrapper">';
$s .= '<label id="appnet-disconnect-label" for="appnet-disconnect">'. t('Clear OAuth configuration') .'</label>';
$s .= '<input id="appnet-disconnect" type="checkbox" name="appnet-disconnect" value="1" />';
$s .= '</div><div class="clear"></div>';
}
/* provide a submit button */
$s .= '<div class="settings-submit-wrapper" ><input type="submit" name="appnet-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div>';
$s .= '</div>';
}
function appnet_settings_post(&$a,&$b) {
if(x($_POST,'appnet-submit')) {
if (isset($_POST['appnet-disconnect'])) {
del_pconfig(local_user(), 'appnet', 'clientsecret');
del_pconfig(local_user(), 'appnet', 'clientid');
del_pconfig(local_user(), 'appnet', 'token');
del_pconfig(local_user(), 'appnet', 'post');
del_pconfig(local_user(), 'appnet', 'post_by_default');
del_pconfig(local_user(), 'appnet', 'import');
}
if (isset($_POST["clientsecret"]))
set_pconfig(local_user(),'appnet','clientsecret', $_POST['clientsecret']);
if (isset($_POST["clientid"]))
set_pconfig(local_user(),'appnet','clientid', $_POST['clientid']);
if (isset($_POST["token"]) && ($_POST["token"] != ""))
set_pconfig(local_user(),'appnet','token', $_POST['token']);
set_pconfig(local_user(), 'appnet', 'post', intval($_POST['appnet']));
set_pconfig(local_user(), 'appnet', 'post_by_default', intval($_POST['appnet_bydefault']));
set_pconfig(local_user(), 'appnet', 'import', intval($_POST['appnet_import']));
}
}
function appnet_post_local(&$a,&$b) {
if($b['edit'])
return;
if((local_user()) && (local_user() == $b['uid']) && (!$b['private']) && (!$b['parent'])) {
$appnet_post = intval(get_pconfig(local_user(),'appnet','post'));
$appnet_enable = (($appnet_post && x($_REQUEST,'appnet_enable')) ? intval($_REQUEST['appnet_enable']) : 0);
// if API is used, default to the chosen settings
if($b['api_source'] && intval(get_pconfig(local_user(),'appnet','post_by_default')))
$appnet_enable = 1;
if(! $appnet_enable)
return;
if(strlen($b['postopts']))
$b['postopts'] .= ',';
$b['postopts'] .= 'appnet';
}
}
function appnet_create_entities($a, $b, $postdata) {
require_once("include/bbcode.php");
require_once("include/plaintext.php");
$bbcode = $b["body"];
$bbcode = bb_remove_share_information($bbcode, false, true);
// Change pure links in text to bbcode uris
$bbcode = preg_replace("/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url=$2]$2[/url]', $bbcode);
$URLSearchString = "^\[\]";
$bbcode = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",'#$2',$bbcode);
$bbcode = preg_replace("/@\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",'@$2',$bbcode);
$bbcode = preg_replace("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism",'[url=$1]$2[/url]',$bbcode);
$bbcode = preg_replace("/\[video\](.*?)\[\/video\]/ism",'[url=$1]$1[/url]',$bbcode);
$bbcode = preg_replace("/\[youtube\]https?:\/\/(.*?)\[\/youtube\]/ism",'[url=https://$1]https://$1[/url]',$bbcode);
$bbcode = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism",
'[url=https://www.youtube.com/watch?v=$1]https://www.youtube.com/watch?v=$1[/url]', $bbcode);
$bbcode = preg_replace("/\[vimeo\]https?:\/\/(.*?)\[\/vimeo\]/ism",'[url=https://$1]https://$1[/url]',$bbcode);
$bbcode = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism",
'[url=https://vimeo.com/$1]https://vimeo.com/$1[/url]', $bbcode);
//$bbcode = preg_replace("/\[vimeo\](.*?)\[\/vimeo\]/ism",'[url=$1]$1[/url]',$bbcode);
$bbcode = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $bbcode);
preg_match_all("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", $bbcode, $urls, PREG_SET_ORDER);
$bbcode = preg_replace("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",'$1',$bbcode);
$b["body"] = $bbcode;
// To-Do:
// Bilder
// https://alpha.app.net/heluecht/post/32424376
// https://alpha.app.net/heluecht/post/32424307
$plaintext = plaintext($a, $b, 0, false, 6);
$text = $plaintext["text"];
$start = 0;
$entities = array();
foreach ($urls AS $url) {
$lenurl = iconv_strlen($url[1], "UTF-8");
$len = iconv_strlen($url[2], "UTF-8");
$pos = iconv_strpos($text, $url[1], $start, "UTF-8");
$pre = iconv_substr($text, 0, $pos, "UTF-8");
$post = iconv_substr($text, $pos + $lenurl, 1000000, "UTF-8");
$mid = $url[2];
$html = bbcode($mid, false, false, 6);
$mid = html2plain($html, 0, true);
$mid = trim(html_entity_decode($mid,ENT_QUOTES,'UTF-8'));
$text = $pre.$mid.$post;
if ($mid != "")
$entities[] = array("pos" => $pos, "len" => $len, "url" => $url[1], "text" => $mid);
$start = $pos + 1;
}
if (isset($postdata["url"]) && isset($postdata["title"]) && ($postdata["type"] != "photo")) {
$postdata["title"] = shortenmsg($postdata["title"], 90);
$max = 256 - strlen($postdata["title"]);
$text = shortenmsg($text, $max);
$text .= "\n[".$postdata["title"]."](".$postdata["url"].")";
} elseif (isset($postdata["url"]) && ($postdata["type"] != "photo")) {
$postdata["url"] = short_link($postdata["url"]);
$max = 240;
$text = shortenmsg($text, $max);
$text .= " [".$postdata["url"]."](".$postdata["url"].")";
} else {
$max = 256;
$text = shortenmsg($text, $max);
}
if (iconv_strlen($text, "UTF-8") < $max)
$max = iconv_strlen($text, "UTF-8");
krsort($entities);
foreach ($entities AS $entity) {
//if (iconv_strlen($text, "UTF-8") >= $entity["pos"] + $entity["len"]) {
if (($entity["pos"] + $entity["len"]) <= $max) {
$pre = iconv_substr($text, 0, $entity["pos"], "UTF-8");
$post = iconv_substr($text, $entity["pos"] + $entity["len"], 1000000, "UTF-8");
$text = $pre."[".$entity["text"]."](".$entity["url"].")".$post;
}
}
return($text);
}
function appnet_send(&$a,&$b) {
logger('appnet_send: invoked for post '.$b['id']." ".$b['app']);
if (!get_pconfig($b["uid"],'appnet','import')) {
if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
return;
}
if($b['parent'] != $b['id']) {
logger("appnet_send: parameter ".print_r($b, true), LOGGER_DATA);
// Looking if its a reply to an app.net post
if ((substr($b["parent-uri"], 0, 5) != "adn::") && (substr($b["extid"], 0, 5) != "adn::") && (substr($b["thr-parent"], 0, 5) != "adn::")) {
logger("appnet_send: no app.net post ".$b["parent"]);
return;
}
$r = q("SELECT * FROM item WHERE item.uri = '%s' AND item.uid = %d LIMIT 1",
dbesc($b["thr-parent"]),
intval($b["uid"]));
if(!count($r)) {
logger("appnet_send: no parent found ".$b["thr-parent"]);
return;
} else {
$iscomment = true;
$orig_post = $r[0];
}
$nicknameplain = preg_replace("=https?://alpha.app.net/(.*)=ism", "$1", $orig_post["author-link"]);
$nickname = "@[url=".$orig_post["author-link"]."]".$nicknameplain."[/url]";
$nicknameplain = "@".$nicknameplain;
logger("appnet_send: comparing ".$nickname." and ".$nicknameplain." with ".$b["body"], LOGGER_DEBUG);
if ((strpos($b["body"], $nickname) === false) && (strpos($b["body"], $nicknameplain) === false))
$b["body"] = $nickname." ".$b["body"];
logger("appnet_send: parent found ".print_r($orig_post, true), LOGGER_DATA);
} else {
$iscomment = false;
if($b['private'] || !strstr($b['postopts'],'appnet'))
return;
}
if (($b['verb'] == ACTIVITY_POST) && $b['deleted'])
appnet_action($a, $b["uid"], substr($orig_post["uri"], 5), "delete");
if($b['verb'] == ACTIVITY_LIKE) {
logger("appnet_send: ".print_r($b, true), LOGGER_DEBUG);
logger("appnet_send: parameter 2 ".substr($b["thr-parent"], 5), LOGGER_DEBUG);
if ($b['deleted'])
appnet_action($a, $b["uid"], substr($b["thr-parent"], 5), "unlike");
else
appnet_action($a, $b["uid"], substr($b["thr-parent"], 5), "like");
return;
}
if($b['deleted'] || ($b['created'] !== $b['edited']))
return;
$token = get_pconfig($b['uid'],'appnet','token');
if($token) {
// If it's a repeated message from app.net then do a native repost and exit
if (appnet_is_repost($a, $b['uid'], $b['body']))
return;
require_once 'addon/appnet/AppDotNet.php';
$clientId = get_pconfig($b["uid"],'appnet','clientid');
$clientSecret = get_pconfig($b["uid"],'appnet','clientsecret');
$app = new AppDotNet($clientId, $clientSecret);
$app->setAccessToken($token);
$data = array();
require_once("include/plaintext.php");
require_once("include/network.php");
$post = plaintext($a, $b, 256, false, 6);
logger("appnet_send: converted message ".$b["id"]." result: ".print_r($post, true), LOGGER_DEBUG);
if (isset($post["image"])) {
$img_str = fetch_url($post['image'],true, $redirects, 10);
$tempfile = tempnam(get_temppath(), "cache");
file_put_contents($tempfile, $img_str);
try {
$photoFile = $app->createFile($tempfile, array(type => "com.github.jdolitsky.appdotnetphp.photo"));
$data["annotations"][] = array(
"type" => "net.app.core.oembed",
"value" => array(
"+net.app.core.file" => array(
"file_id" => $photoFile["id"],
"file_token" => $photoFile["file_token"],
"format" => "oembed")
)
);
}
catch (AppDotNetException $e) {
logger("appnet_send: Error creating file ".appnet_error($e->getMessage()));
}
unlink($tempfile);
}
// Adding a link to the original post, if it is a root post
if($b['parent'] == $b['id'])
$data["annotations"][] = array(
"type" => "net.app.core.crosspost",
"value" => array("canonical_url" => $b["plink"])
);
// Adding the original post
$attached_data = get_attached_data($b["body"]);
$attached_data["post-uri"] = $b["uri"];
$attached_data["post-title"] = $b["title"];
$attached_data["post-body"] = substr($b["body"], 0, 4000); // To-Do: Better shortening
$attached_data["post-tag"] = $b["tag"];
$attached_data["author-name"] = $b["author-name"];
$attached_data["author-link"] = $b["author-link"];
$attached_data["author-avatar"] = $b["author-avatar"];
$data["annotations"][] = array(
"type" => "com.friendica.post",
"value" => $attached_data
);
if (isset($post["url"]) && !isset($post["title"]) && ($post["type"] != "photo")) {
$display_url = str_replace(array("http://www.", "https://www."), array("", ""), $post["url"]);
$display_url = str_replace(array("http://", "https://"), array("", ""), $display_url);
if (strlen($display_url) > 26)
$display_url = substr($display_url, 0, 25)."";
$post["title"] = $display_url;
}
$text = appnet_create_entities($a, $b, $post);
$data["entities"]["parse_markdown_links"] = true;
if ($iscomment)
$data["reply_to"] = substr($orig_post["uri"], 5);
try {
logger("appnet_send: sending message ".$b["id"]." ".$text." ".print_r($data, true), LOGGER_DEBUG);
$ret = $app->createPost($text, $data);
logger("appnet_send: send message ".$b["id"]." result: ".print_r($ret, true), LOGGER_DEBUG);
if ($iscomment) {
logger('appnet_send: Update extid '.$ret["id"]." for post id ".$b['id']);
q("UPDATE `item` SET `extid` = '%s' WHERE `id` = %d",
dbesc("adn::".$ret["id"]),
intval($b['id'])
);
}
}
catch (AppDotNetException $e) {
logger("appnet_send: Error sending message ".$b["id"]." ".appnet_error($e->getMessage()));
}
}
}
function appnet_action($a, $uid, $pid, $action) {
require_once 'addon/appnet/AppDotNet.php';
$token = get_pconfig($uid,'appnet','token');
$clientId = get_pconfig($uid,'appnet','clientid');
$clientSecret = get_pconfig($uid,'appnet','clientsecret');
$app = new AppDotNet($clientId, $clientSecret);
$app->setAccessToken($token);
logger("appnet_action '".$action."' ID: ".$pid, LOGGER_DATA);
try {
switch ($action) {
case "delete":
$result = $app->deletePost($pid);
break;
case "like":
$result = $app->starPost($pid);
break;
case "unlike":
$result = $app->unstarPost($pid);
break;
}
logger("appnet_action '".$action."' send, result: " . print_r($result, true), LOGGER_DEBUG);
}
catch (AppDotNetException $e) {
logger("appnet_action: Error sending action ".$action." pid ".$pid." ".appnet_error($e->getMessage()), LOGGER_DEBUG);
}
}
function appnet_is_repost($a, $uid, $body) {
$body = trim($body);
// Skip if it isn't a pure repeated messages
// Does it start with a share?
if (strpos($body, "[share") > 0)
return(false);
// Does it end with a share?
if (strlen($body) > (strrpos($body, "[/share]") + 8))
return(false);
$attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
// Skip if there is no shared message in there
if ($body == $attributes)
return(false);
$link = "";
preg_match("/link='(.*?)'/ism", $attributes, $matches);
if ($matches[1] != "")
$link = $matches[1];
preg_match('/link="(.*?)"/ism', $attributes, $matches);
if ($matches[1] != "")
$link = $matches[1];
$id = preg_replace("=https?://alpha.app.net/(.*)/post/(.*)=ism", "$2", $link);
if ($id == $link)
return(false);
logger('appnet_is_repost: Reposting id '.$id.' for user '.$uid, LOGGER_DEBUG);
require_once 'addon/appnet/AppDotNet.php';
$token = get_pconfig($uid,'appnet','token');
$clientId = get_pconfig($uid,'appnet','clientid');
$clientSecret = get_pconfig($uid,'appnet','clientsecret');
$app = new AppDotNet($clientId, $clientSecret);
$app->setAccessToken($token);
try {
$result = $app->repost($id);
logger('appnet_is_repost: result '.print_r($result, true), LOGGER_DEBUG);
return true;
}
catch (AppDotNetException $e) {
logger('appnet_is_repost: error doing repost '.appnet_error($e->getMessage()), LOGGER_DEBUG);
return false;
}
}
function appnet_fetchstream($a, $uid) {
require_once("addon/appnet/AppDotNet.php");
require_once('include/items.php');
$token = get_pconfig($uid,'appnet','token');
$clientId = get_pconfig($uid,'appnet','clientid');
$clientSecret = get_pconfig($uid,'appnet','clientsecret');
$app = new AppDotNet($clientId, $clientSecret);
$app->setAccessToken($token);
$r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
intval($uid));
if(count($r))
$me = $r[0];
else {
logger("appnet_fetchstream: Own contact not found for user ".$uid, LOGGER_DEBUG);
return;
}
$user = q("SELECT * FROM `user` WHERE `uid` = %d AND `account_expired` = 0 LIMIT 1",
intval($uid)
);
if(count($user))
$user = $user[0];
else {
logger("appnet_fetchstream: Own user not found for user ".$uid, LOGGER_DEBUG);
return;
}
$ownid = get_pconfig($uid,'appnet','ownid');
// Fetch stream
$param = array("count" => 200, "include_deleted" => false, "include_directed_posts" => true,
"include_html" => false, "include_post_annotations" => true);
$lastid = get_pconfig($uid, 'appnet', 'laststreamid');
if ($lastid <> "")
$param["since_id"] = $lastid;
try {
$stream = $app->getUserStream($param);
}
catch (AppDotNetException $e) {
logger("appnet_fetchstream: Error fetching stream for user ".$uid." ".appnet_error($e->getMessage()));
return;
}
if (!is_array($stream))
$stream = array();
$stream = array_reverse($stream);
foreach ($stream AS $post) {
$postarray = appnet_createpost($a, $uid, $post, $me, $user, $ownid, true);
$item = item_store($postarray);
$postarray["id"] = $item;
logger('appnet_fetchstream: User '.$uid.' posted stream item '.$item);
$lastid = $post["id"];
if (($item != 0) && ($postarray['contact-id'] != $me["id"]) && !function_exists("check_item_notification")) {
$r = q("SELECT `thread`.`iid` AS `parent` FROM `thread`
INNER JOIN `item` ON `thread`.`iid` = `item`.`parent` AND `thread`.`uid` = `item`.`uid`
WHERE `item`.`id` = %d AND `thread`.`mention` LIMIT 1", dbesc($item));
if (count($r)) {
require_once('include/enotify.php');
notification(array(
'type' => NOTIFY_COMMENT,
'notify_flags' => $user['notify-flags'],
'language' => $user['language'],
'to_name' => $user['username'],
'to_email' => $user['email'],
'uid' => $user['uid'],
'item' => $postarray,
'link' => $a->get_baseurl().'/display/'.urlencode(get_item_guid($item)),
'source_name' => $postarray['author-name'],
'source_link' => $postarray['author-link'],
'source_photo' => $postarray['author-avatar'],
'verb' => ACTIVITY_POST,
'otype' => 'item',
'parent' => $r[0]["parent"],
));
}
}
}
set_pconfig($uid, 'appnet', 'laststreamid', $lastid);
// Fetch mentions
$param = array("count" => 200, "include_deleted" => false, "include_directed_posts" => true,
"include_html" => false, "include_post_annotations" => true);
$lastid = get_pconfig($uid, 'appnet', 'lastmentionid');
if ($lastid <> "")
$param["since_id"] = $lastid;
try {
$mentions = $app->getUserMentions("me", $param);
}
catch (AppDotNetException $e) {
logger("appnet_fetchstream: Error fetching mentions for user ".$uid." ".appnet_error($e->getMessage()));
return;
}
if (!is_array($mentions))
$mentions = array();
$mentions = array_reverse($mentions);
foreach ($mentions AS $post) {
$postarray = appnet_createpost($a, $uid, $post, $me, $user, $ownid, false);
if (isset($postarray["id"])) {
$item = $postarray["id"];
$parent_id = $postarray['parent'];
} elseif (isset($postarray["body"])) {
$item = item_store($postarray);
$postarray["id"] = $item;
$parent_id = 0;
logger('appnet_fetchstream: User '.$uid.' posted mention item '.$item);
if ($item && function_exists("check_item_notification"))
check_item_notification($item, $uid, NOTIFY_TAGSELF);
} else {
$item = 0;
$parent_id = 0;
}
// Fetch the parent and id
if (($parent_id == 0) && ($postarray['uri'] != "")) {
$r = q("SELECT `id`, `parent` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
dbesc($postarray['uri']),
intval($uid)
);
if (count($r)) {
$item = $r[0]['id'];
$parent_id = $r[0]['parent'];
}
}
$lastid = $post["id"];
//if (($item != 0) && ($postarray['contact-id'] != $me["id"])) {
if (($item != 0) && !function_exists("check_item_notification")) {
require_once('include/enotify.php');
notification(array(
'type' => NOTIFY_TAGSELF,
'notify_flags' => $user['notify-flags'],
'language' => $user['language'],
'to_name' => $user['username'],
'to_email' => $user['email'],
'uid' => $user['uid'],
'item' => $postarray,
'link' => $a->get_baseurl().'/display/'.urlencode(get_item_guid($item)),
'source_name' => $postarray['author-name'],
'source_link' => $postarray['author-link'],
'source_photo' => $postarray['author-avatar'],
'verb' => ACTIVITY_TAG,
'otype' => 'item',
'parent' => $parent_id,
));
}
}
set_pconfig($uid, 'appnet', 'lastmentionid', $lastid);
/* To-Do
$param = array("interaction_actions" => "star");
$interactions = $app->getMyInteractions($param);
foreach ($interactions AS $interaction)
appnet_dolike($a, $uid, $interaction);
*/
}
function appnet_createpost($a, $uid, $post, $me, $user, $ownid, $createuser, $threadcompletion = true, $nodupcheck = false) {
require_once('include/items.php');
if ($post["machine_only"])
return;
if ($post["is_deleted"])
return;
$postarray = array();
$postarray['gravity'] = 0;
$postarray['uid'] = $uid;
$postarray['wall'] = 0;
$postarray['verb'] = ACTIVITY_POST;
$postarray['network'] = dbesc(NETWORK_APPNET);
if (is_array($post["repost_of"])) {
// You can't reply to reposts. So use the original id and thread-id
$postarray['uri'] = "adn::".$post["repost_of"]["id"];
$postarray['parent-uri'] = "adn::".$post["repost_of"]["thread_id"];
} else {
$postarray['uri'] = "adn::".$post["id"];
$postarray['parent-uri'] = "adn::".$post["thread_id"];
}
if (!$nodupcheck) {
$r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
dbesc($postarray['uri']),
intval($uid)
);
if (count($r))
return($r[0]);
$r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
dbesc($postarray['uri']),
intval($uid)
);
if (count($r))
return($r[0]);
}
if (isset($post["reply_to"]) && ($post["reply_to"] != "")) {
$postarray['thr-parent'] = "adn::".$post["reply_to"];
// Complete the thread (if the parent doesn't exists)
if ($threadcompletion) {
//$r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
// dbesc($postarray['thr-parent']),
// intval($uid)
// );
//if (!count($r)) {
logger("appnet_createpost: completing thread ".$post["thread_id"]." for user ".$uid, LOGGER_DEBUG);
require_once("addon/appnet/AppDotNet.php");
$token = get_pconfig($uid,'appnet','token');
$clientId = get_pconfig($uid,'appnet','clientid');
$clientSecret = get_pconfig($uid,'appnet','clientsecret');
$app = new AppDotNet($clientId, $clientSecret);
$app->setAccessToken($token);
$param = array("count" => 200, "include_deleted" => false, "include_directed_posts" => true,
"include_html" => false, "include_post_annotations" => true);
try {
$thread = $app->getPostReplies($post["thread_id"], $param);
}
catch (AppDotNetException $e) {
logger("appnet_createpost: Error fetching thread for user ".$uid." ".appnet_error($e->getMessage()));
}
$thread = array_reverse($thread);
logger("appnet_createpost: fetched ".count($thread)." items for thread ".$post["thread_id"]." for user ".$uid, LOGGER_DEBUG);
foreach ($thread AS $tpost) {
$threadpost = appnet_createpost($a, $uid, $tpost, $me, $user, $ownid, false, false);
$item = item_store($threadpost);
$threadpost["id"] = $item;
logger("appnet_createpost: stored post ".$post["id"]." thread ".$post["thread_id"]." in item ".$item, LOGGER_DEBUG);
}
//}
}
// Don't create accounts of people who just comment something
$createuser = false;
$postarray['object-type'] = ACTIVITY_OBJ_COMMENT;
} else {
$postarray['thr-parent'] = $postarray['uri'];
$postarray['object-type'] = ACTIVITY_OBJ_NOTE;
}
if (($post["user"]["id"] != $ownid) || ($postarray['thr-parent'] == $postarray['uri'])) {
$postarray['owner-name'] = $post["user"]["name"];
$postarray['owner-link'] = $post["user"]["canonical_url"];
$postarray['owner-avatar'] = $post["user"]["avatar_image"]["url"];
$postarray['contact-id'] = appnet_fetchcontact($a, $uid, $post["user"], $me, $createuser);
} else {
$postarray['owner-name'] = $me["name"];
$postarray['owner-link'] = $me["url"];
$postarray['owner-avatar'] = $me["thumb"];
$postarray['contact-id'] = $me["id"];
}
$links = array();
if (is_array($post["repost_of"])) {
$postarray['author-name'] = $post["repost_of"]["user"]["name"];
$postarray['author-link'] = $post["repost_of"]["user"]["canonical_url"];
$postarray['author-avatar'] = $post["repost_of"]["user"]["avatar_image"]["url"];
$content = $post["repost_of"];
} else {
$postarray['author-name'] = $postarray['owner-name'];
$postarray['author-link'] = $postarray['owner-link'];
$postarray['author-avatar'] = $postarray['owner-avatar'];
$content = $post;
}
$postarray['plink'] = $content["canonical_url"];
if (is_array($content["entities"])) {
$converted = appnet_expand_entities($a, $content["text"], $content["entities"]);
$postarray['body'] = $converted["body"];
$postarray['tag'] = $converted["tags"];
} else
$postarray['body'] = $content["text"];
if (sizeof($content["entities"]["links"]))
foreach($content["entities"]["links"] AS $link) {
$url = normalise_link($link["url"]);
$links[$url] = $link["url"];
}
/* if (sizeof($content["annotations"]))
foreach($content["annotations"] AS $annotation) {
if ($annotation[type] == "net.app.core.oembed") {
if (isset($annotation["value"]["embeddable_url"])) {
$url = normalise_link($annotation["value"]["embeddable_url"]);
if (isset($links[$url]))
unset($links[$url]);
}
} elseif ($annotation[type] == "com.friendica.post") {
//$links = array();
//if (isset($annotation["value"]["post-title"]))
// $postarray['title'] = $annotation["value"]["post-title"];
//if (isset($annotation["value"]["post-body"]))
// $postarray['body'] = $annotation["value"]["post-body"];
//if (isset($annotation["value"]["post-tag"]))
// $postarray['tag'] = $annotation["value"]["post-tag"];
if (isset($annotation["value"]["author-name"]))
$postarray['author-name'] = $annotation["value"]["author-name"];
if (isset($annotation["value"]["author-link"]))
$postarray['author-link'] = $annotation["value"]["author-link"];
if (isset($annotation["value"]["author-avatar"]))
$postarray['author-avatar'] = $annotation["value"]["author-avatar"];
}
} */
$page_info = "";
if (is_array($content["annotations"])) {
$photo = appnet_expand_annotations($a, $content["annotations"]);
if (($photo["large"] != "") && ($photo["url"] != ""))
$page_info = "\n[url=".$photo["url"]."][img]".$photo["large"]."[/img][/url]";
elseif ($photo["url"] != "")
$page_info = "\n[img]".$photo["url"]."[/img]";
if ($photo["url"] != "")
$postarray['object-type'] = ACTIVITY_OBJ_IMAGE;
} else
$photo = array("url" => "", "large" => "");
if (sizeof($links)) {
$link = array_pop($links);
$url = str_replace(array('/', '.'), array('\/', '\.'), $link);
$page_info = add_page_info($link, false, $photo["url"]);
if (trim($page_info) != "") {
$removedlink = preg_replace("/\[url\=".$url."\](.*?)\[\/url\]/ism", '', $postarray['body']);
if (($removedlink == "") || strstr($postarray['body'], $removedlink))
$postarray['body'] = $removedlink;
}
}
$postarray['body'] .= $page_info;
$postarray['created'] = datetime_convert('UTC','UTC',$post["created_at"]);
$postarray['edited'] = datetime_convert('UTC','UTC',$post["created_at"]);
$postarray['app'] = $post["source"]["name"];
return($postarray);
}
function appnet_expand_entities($a, $body, $entities) {
if (!function_exists('substr_unicode')) {
function substr_unicode($str, $s, $l = null) {
return join("", array_slice(
preg_split("//u", $str, -1, PREG_SPLIT_NO_EMPTY), $s, $l));
}
}
$tags_arr = array();
$replace = array();
foreach ($entities["mentions"] AS $mention) {
$url = "@[url=https://alpha.app.net/".rawurlencode($mention["name"])."]".$mention["name"]."[/url]";
$tags_arr["@".$mention["name"]] = $url;
$replace[$mention["pos"]] = array("pos"=> $mention["pos"], "len"=> $mention["len"], "replace"=> $url);
}
foreach ($entities["hashtags"] AS $hashtag) {
$url = "#[url=".$a->get_baseurl()."/search?tag=".rawurlencode($hashtag["name"])."]".$hashtag["name"]."[/url]";
$tags_arr["#".$hashtag["name"]] = $url;
$replace[$hashtag["pos"]] = array("pos"=> $hashtag["pos"], "len"=> $hashtag["len"], "replace"=> $url);
}
foreach ($entities["links"] AS $links) {
$url = "[url=".$links["url"]."]".$links["text"]."[/url]";
if (isset($links["amended_len"]) && ($links["amended_len"] > $links["len"]))
$replace[$links["pos"]] = array("pos"=> $links["pos"], "len"=> $links["amended_len"], "replace"=> $url);
else
$replace[$links["pos"]] = array("pos"=> $links["pos"], "len"=> $links["len"], "replace"=> $url);
}
if (sizeof($replace)) {
krsort($replace);
foreach ($replace AS $entity) {
$pre = substr_unicode($body, 0, $entity["pos"]);
$post = substr_unicode($body, $entity["pos"] + $entity["len"]);
//$pre = iconv_substr($body, 0, $entity["pos"], "UTF-8");
//$post = iconv_substr($body, $entity["pos"] + $entity["len"], "UTF-8");
$body = $pre.$entity["replace"].$post;
}
}
return(array("body" => $body, "tags" => implode($tags_arr, ",")));
}
function appnet_expand_annotations($a, $annotations) {
$photo = array("url" => "", "large" => "");
foreach ($annotations AS $annotation) {
if (($annotation[type] == "net.app.core.oembed") &&
($annotation["value"]["type"] == "photo")) {
if ($annotation["value"]["url"] != "")
$photo["url"] = $annotation["value"]["url"];
if ($annotation["value"]["thumbnail_large_url"] != "")
$photo["large"] = $annotation["value"]["thumbnail_large_url"];
//if (($annotation["value"]["thumbnail_large_url"] != "") && ($annotation["value"]["url"] != ""))
// $embedded = "\n[url=".$annotation["value"]["url"]."][img]".$annotation["value"]["thumbnail_large_url"]."[/img][/url]";
//elseif ($annotation["value"]["url"] != "")
// $embedded = "\n[img]".$annotation["value"]["url"]."[/img]";
}
}
return $photo;
}
function appnet_fetchcontact($a, $uid, $contact, $me, $create_user) {
update_gcontact(array("url" => $contact["canonical_url"], "generation" => 2,
"network" => NETWORK_APPNET, "photo" => $contact["avatar_image"]["url"],
"name" => $contact["name"], "nick" => $contact["username"],
"about" => $contact["description"]["text"], "hide" => true,
"addr" => $contact["username"]."@app.net"));
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
intval($uid), dbesc("adn::".$contact["id"]));
if(!count($r) && !$create_user)
return($me["id"]);
if ($contact["canonical_url"] == "")
return($me["id"]);
if (count($r) && ($r[0]["readonly"] || $r[0]["blocked"])) {
logger("appnet_fetchcontact: Contact '".$r[0]["nick"]."' is blocked or readonly.", LOGGER_DEBUG);
return(-1);
}
if(!count($r)) {
if ($contact["name"] == "")
$contact["name"] = $contact["username"];
if ($contact["username"] == "")
$contact["username"] = $contact["name"];
// create contact record
q("INSERT INTO `contact` (`uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
`name`, `nick`, `photo`, `network`, `rel`, `priority`,
`about`, `writable`, `blocked`, `readonly`, `pending` )
VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', %d, 0, 0, 0 ) ",
intval($uid),
dbesc(datetime_convert()),
dbesc($contact["canonical_url"]),
dbesc(normalise_link($contact["canonical_url"])),
dbesc($contact["username"]."@app.net"),
dbesc("adn::".$contact["id"]),
dbesc(''),
dbesc("adn::".$contact["id"]),
dbesc($contact["name"]),
dbesc($contact["username"]),
dbesc($contact["avatar_image"]["url"]),
dbesc(NETWORK_APPNET),
intval(CONTACT_IS_FRIEND),
intval(1),
dbesc($contact["description"]["text"]),
intval(1)
);
$r = q("SELECT * FROM `contact` WHERE `alias` = '%s' AND `uid` = %d LIMIT 1",
dbesc("adn::".$contact["id"]),
intval($uid)
);
if(! count($r))
return(false);
$contact_id = $r[0]['id'];
$g = q("SELECT def_gid FROM user WHERE uid = %d LIMIT 1",
intval($uid)
);
if($g && intval($g[0]['def_gid'])) {
require_once('include/group.php');
group_add_member($uid,'',$contact_id,$g[0]['def_gid']);
}
require_once("Photo.php");
$photos = import_profile_photo($contact["avatar_image"]["url"],$uid,$contact_id);
q("UPDATE `contact` SET `photo` = '%s',
`thumb` = '%s',
`micro` = '%s',
`name-date` = '%s',
`uri-date` = '%s',
`avatar-date` = '%s'
WHERE `id` = %d",
dbesc($photos[0]),
dbesc($photos[1]),
dbesc($photos[2]),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
intval($contact_id)
);
} else {
// update profile photos once every two weeks as we have no notification of when they change.
//$update_photo = (($r[0]['avatar-date'] < datetime_convert('','','now -2 days')) ? true : false);
$update_photo = ($r[0]['avatar-date'] < datetime_convert('','','now -12 hours'));
// check that we have all the photos, this has been known to fail on occasion
if((! $r[0]['photo']) || (! $r[0]['thumb']) || (! $r[0]['micro']) || ($update_photo)) {
logger("appnet_fetchcontact: Updating contact ".$contact["username"], LOGGER_DEBUG);
require_once("Photo.php");
$photos = import_profile_photo($contact["avatar_image"]["url"], $uid, $r[0]['id']);
q("UPDATE `contact` SET `photo` = '%s',
`thumb` = '%s',
`micro` = '%s',
`name-date` = '%s',
`uri-date` = '%s',
`avatar-date` = '%s',
`url` = '%s',
`nurl` = '%s',
`addr` = '%s',
`name` = '%s',
`nick` = '%s',
`about` = '%s'
WHERE `id` = %d",
dbesc($photos[0]),
dbesc($photos[1]),
dbesc($photos[2]),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc($contact["canonical_url"]),
dbesc(normalise_link($contact["canonical_url"])),
dbesc($contact["username"]."@app.net"),
dbesc($contact["name"]),
dbesc($contact["username"]),
dbesc($contact["description"]["text"]),
intval($r[0]['id'])
);
}
}
return($r[0]["id"]);
}
function appnet_prepare_body(&$a,&$b) {
if ($b["item"]["network"] != NETWORK_APPNET)
return;
if ($b["preview"]) {
$max_char = 256;
require_once("include/plaintext.php");
$item = $b["item"];
$item["plink"] = $a->get_baseurl()."/display/".$a->user["nickname"]."/".$item["parent"];
$r = q("SELECT `author-link` FROM item WHERE item.uri = '%s' AND item.uid = %d LIMIT 1",
dbesc($item["thr-parent"]),
intval(local_user()));
if(count($r)) {
$orig_post = $r[0];
$nicknameplain = preg_replace("=https?://alpha.app.net/(.*)=ism", "$1", $orig_post["author-link"]);
$nickname = "@[url=".$orig_post["author-link"]."]".$nicknameplain."[/url]";
$nicknameplain = "@".$nicknameplain;
if ((strpos($item["body"], $nickname) === false) && (strpos($item["body"], $nicknameplain) === false))
$item["body"] = $nickname." ".$item["body"];
}
$msgarr = plaintext($a, $item, $max_char, true);
$msg = appnet_create_entities($a, $item, $msgarr);
require_once("library/markdown.php");
$msg = Markdown($msg);
$b['html'] = $msg;
}
}
function appnet_cron($a,$b) {
$last = get_config('appnet','last_poll');
$poll_interval = intval(get_config('appnet','poll_interval'));
if(! $poll_interval)
$poll_interval = APPNET_DEFAULT_POLL_INTERVAL;
if($last) {
$next = $last + ($poll_interval * 60);
if($next > time()) {
logger('appnet_cron: poll intervall not reached');
return;
}
}
logger('appnet_cron: cron_start');
$abandon_days = intval(get_config('system','account_abandon_days'));
if ($abandon_days < 1)
$abandon_days = 0;
$abandon_limit = date("Y-m-d H:i:s", time() - $abandon_days * 86400);
$r = q("SELECT * FROM `pconfig` WHERE `cat` = 'appnet' AND `k` = 'import' AND `v` = '1' ORDER BY RAND()");
if(count($r)) {
foreach($r as $rr) {
if ($abandon_days != 0) {
$user = q("SELECT `login_date` FROM `user` WHERE uid=%d AND `login_date` >= '%s'", $rr['uid'], $abandon_limit);
if (!count($user)) {
logger('abandoned account: timeline from user '.$rr['uid'].' will not be imported');
continue;
}
}
logger('appnet_cron: importing timeline from user '.$rr['uid']);
appnet_fetchstream($a, $rr["uid"]);
}
}
logger('appnet_cron: cron_end');
set_config('appnet','last_poll', time());
}
function appnet_error($msg) {
$msg = trim($msg);
$pos = strrpos($msg, "\r\n\r\n");
if (!$pos)
return($msg);
$msg = substr($msg, $pos + 4);
$error = json_decode($msg);
if ($error == NULL)
return($msg);
if (isset($error->meta->error_message))
return($error->meta->error_message);
else
return(print_r($error));
}

62
appnet/clients.txt Normal file
View file

@ -0,0 +1,62 @@
PDvZfuW8zhzjwU8PF9KEzFbAcTn6T67U - http://wedge.natestedman.com - Wedge
cRWp45kA49pQKtxsZQXdwTnyuU6jBwuA - http://tigerbears.com/felix - Felix
ks4empDNRbXEAauk8BhLTdSvfEeAABvX - http://kiwi-app.net/ - Kiwi
nxz5USfARxELsYVpfPJc3mYaX42USb2E - http://themodernink.com/portfolio/dash-for-app-net/ - Dash
PvANLyCeaDjbMt6VCVWhKvUmgX6TxDXj - https://cauldron-app.herokuapp.com - Cauldron
737a54nLCdLLutcs2VzhtNKGnnMrakc4 - http://riposteapp.net - Riposte
j2TPZ4DyNa8GGhVUrTQJg9qWDw7t6fBn - http://blixt.io - Blixt
5vL9wT7EU7NRgk3hXscWW8Q27D2rYJCP - http://dasdom.de/Dominik_Hauser_Development/hAppy.html - hAppy
caYWDBvjwt2e9HWMm6qyKS6KcATHUkzQ - https://alpha.app.net - Alpha
gM5cMMBD7JJ6xamnBTcbhzkDCnR7xAux - http://robinapp.net - Robin
35UhKXbTqxmE7Hs427haVuRVB8FGzhtx - http://www.floodgap.com/software/texapp/ - Texapp
QHhyYpuARCwurZdGuuR7zjDMHDRkwcKm - http://tapbots.com/software/netbot - Netbot for iOS
xpFjFqgMv2BMtbHJZTFe7JRWsYJSUuHr - http://ferret.undiscoveredsoftware.com - Ferret
SzuHyL9wQy2BN7DDnBvdXpZr9Ue5MHYd - http://appnetizens.com - Appnetizens
C8NUX9JhL8uTW5EERQUTdXxWA3VQQ7Ft - http://dabr.eu/adn/ - Dabr - The Best Mobile Web Experience for App.net
NMYk2JjsJErGuYrjztFqZTcfH6ewq4Vs - http://pilgrimagesoftware.com/products/yawp - Yawp
nwpvwKVqxmEzZ6bEwkv53yaJABVj9ngQ - http://www.windowsphone.com/en-us/store/app/dotdot/dd4e94db-0e2a-4cfb-8c28-8b969e47c3c4 - DotDot
f7AUb7Akar3WbnUWbpfkgUDAZF777tLT - http://treeview.us/ - TreeView
qeqDYzScwCt6zprQTTByapLAHwm24Dgv - http://hashpan.com - #PAN
DhUuGUGFnf9PrJmREsKtQDGB4tz3xUqL - http://chimp.li/ - Chimp
bCyhhBHxCRRAPHJNcLXxxS2KWk4Jq8cg - https://bit.ly/1415pJs - Blue
js4qF6UN4fwXTK87Ax9Bjf3DhEQuK5hA - https://pirati.ca - friendica
QsqkRF7XkqnTyST8YPtJwbKt4v7cnk4u - http://kirbyapp.azurewebsites.net - Kirby
3MTzAfxABSvAXxGs4878jd6ynDJShMKV - https://pastapp.net - Pastapp
2JdaX6Ysmxb3UbfnGmHQwGxGWMM28q2P - http://ineedtojet.com/drift/ - Drift
B58XbrGstDUXvSKxDTxV7FGSStH6vfJZ - http://alpha.jvimedia.org - alpha.jvimedia.org
hFsCGArAjgJkYBHTHbZnUvzTmL4vaLHL - http://www.ayadn-app.net - Ayadn
e6pkUJsErZQMpKSfEqH693Yw2r4JAkUx - http://shawnthroop.com/prose - Prose
KgWW36vGe8LQPN696ftSUqdKUvjzuYqF - https://polls.abrah.am - Polls
424RQtjWS96PQj2KzDzHStWdNazS4naL - http://bli.ms - BLI.MS
Awm347m2hfLu2VZTYvmPq3FkMnXUtjvu - http://monkeystew.org - littlebit
8uJC3sb9PT5AYgUj2DajfXa9WuFj7P3a - http://getstreamapp.net/ - Stream
q6BSdP5DctemahG9EDZVAmCv2x2dbjZJ - https://github.com/appdotnet/adn-comments - App.net Comments
GfhV6dxDc8pERRas7CmSPtpdqcXYQv8G - http://favd.net - Favd
YEpw9MQ9XuBq587pFWDAVRPTsteLUhya - https://hootsuite.com - HootSuite for App.net
zEKkE4JBYNjnarYvEwGZxvFq7zuhEfnU - http://grailbox.com/wry - Wry
w98ZmPF4RSMuyrhPzNHrJBVm89GNmGnJ - http://www.tweetlanes.com - Tweet Lanes
92JGb2kLrhsPFER8CAZezHgBGpdZ3XYC - http://vidcast-app.net/ - Vidcast
qjpU52DDXuurvMw65gzNbv7XCreV5v3m - https://github.com/minego/macaw-enyo - Macaw
Ab2jgbmdrz9Kjk49AKmDSDsGNt4cq4H8 - http://shootingstar.fm/asterisk/ - Asterisk
QRLNj42zZ8KVkBgs6Jm5KwHu98Zs3YTu - https://play.google.com/store/apps/details?id=com.matsumo.bb - アオイトリ(bluebird)
gK89yfgAr8qxH9HZf8nbhry8Snc5fRGV - http://aa.tt/sprinter-ios - Sprinter
X2hcReHMUuK7Mx3uTxGRPnYeCrugx5JX - http://getzephyrapp.com - Zephyr
FS62JKk5qYppVA8JWhZvPepU7A33PXtD - http://www.instadesk-app.com/appetizer - Appetizer
gxwZjynDJw4TjPPwk3z4YMs9fJBNSxVm - http://www.nymphicusapp.com/chapper/ - Chapper
QAH95svvU4pewJ5aKkpyCdUvyzMsBxBk - https://alpha.app.net/network - The Network
WXJyQ6KK2TWy6ZDnJqJKbBDMrzPYYA3g - http://neater.co - Neater
PeVWEPMAEQMBwU2KLSYAjenRrScuWs4a - http://fingernoodle.com/Mention - Mention
Sza4zFMDcbmYqeCCjTusZNpP9DqWEwqJ - http://colorbay.me - Colorbay
cgedd8JNuBcEZfjCstsk74J9hxKnBYef - http://www.MetroAppNet.com - MetroAppNet
rsQM4njhnZnSe2Jaqsw5eVZQHLcM37wv - http://mobileways.de/gravity - Gravity
4M5FBt9NRk5Zu4FqaWcGZHj84ryUxwXh - http://habitatus.net/photolicious - Photolicious
D7vDLagx2fyBrqvGRyH6qZkdQAFvETv8 - http://206.81.100.17:8000/ - Alpha Test
ZcFNVDbEhCTc79z9ALaGbxuvXRqTdDAS - http://watercoolerapp.net - Watercooler
BHKWNEYrz3Fv5CzgvksK6pydcAE6q52r - http://rivolu.com/spoonbill - Spoonbill
dxZBcnnPjcV4ErwbjArvbGBHMcnW4SMB - https://play.google.com/store/apps/details?id=jp.hamsoft.hamoooooon&hl=ja - Hamoooooon
hSyCNZrLZCZHcmsHr6cLFMF2pwQpRmZP - http://getpika.com - Pika
9gbNKzXYsyzErU9K2J7v88XaFRfwsDzN - http://www.planet1107.net - AppNet Rhino
tyLnvDZJPX37U8gZ6WtZ2Ysf9kpTmRXy - https://play.google.com/store/apps/details?id=com.floatboth.antigravity - Antigravity
GLSssckvDjzbCa27B8HZVjJ2DPZgGJL3 - http://lunarguard.co/ - Pegasus
dyJyAJa535BMjqYBQsgftREbxsqdcVLL - http://www.flamingow.com - Flamingow
u6TeYE9yYprhkWPjVNgacJLngkhVrDFw - http://rafaelc.com.br - Sweet(dot)net for iOS

60
appnet/count.php Normal file
View file

@ -0,0 +1,60 @@
<?php
require_once("boot.php");
if(@is_null($a)) {
$a = new App;
}
@include(".htconfig.php");
require_once("dba.php");
dba::connect($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
$a->set_baseurl(get_config('system','url'));
$token = get_pconfig($b['uid'],'appnet','token');
require_once 'addon/appnet/AppDotNet.php';
$clientId = get_pconfig($b["uid"],'appnet','clientid');
$clientSecret = get_pconfig($b["uid"],'appnet','clientsecret');
$app = new AppDotNet($clientId, $clientSecret);
$app->setAccessToken($token);
$param = array("include_muted" => true, "include_directed_posts" => true, "count" => 3000);
$lastid = @file_get_contents("addon/appnet/lastid.txt");
$clients = @file_get_contents("addon/appnet/clients.txt");
$users = @file_get_contents("addon/appnet/users.txt");
if ($lastid != "")
$param["since_id"] = $lastid;
$posts = $app->getPublicPosts($param);
foreach ($posts AS $post) {
if ($lastid < $post["id"])
$lastid = $post["id"];
if (!isset($post["reply_to"]) AND !strstr($clients, $post["source"]["client_id"]))
continue;
if (isset($post["reply_to"]) AND !strstr($clients, $post["source"]["client_id"]))
$clients .= $post["source"]["client_id"]." - ".$post["source"]["link"]." - ".$post["source"]["name"]."\n";
if (!strstr($users, $post["user"]["canonical_url"]))
$users .= $post["user"]["canonical_url"]." - ".$post["user"]["name"]."\n";
//echo $post["source"]["link"]." ".$post["source"]["name"]."\n";
//echo $post["user"]["name"]."\n";
//echo $post["text"]."\n";
//echo $post["canonical_url"]."\n";
//print_r($post["user"]);
//echo "---------------------------------\n";
}
file_put_contents("addon/appnet/lastid.txt", $lastid);
file_put_contents("addon/appnet/clients.txt", $clients);
file_put_contents("addon/appnet/users.txt", $users);

116
appnet/lang/C/messages.po Normal file
View file

@ -0,0 +1,116 @@
# ADDON appnet
# Copyright (C)
# This file is distributed under the same license as the Friendica appnet addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 11:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: appnet.php:39
msgid "Permission denied."
msgstr ""
#: appnet.php:73
msgid "You are now authenticated to app.net. "
msgstr ""
#: appnet.php:77
msgid "<p>Error fetching token. Please try again.</p>"
msgstr ""
#: appnet.php:80
msgid "return to the connector page"
msgstr ""
#: appnet.php:94
msgid "Post to app.net"
msgstr ""
#: appnet.php:125 appnet.php:129
msgid "App.net Export"
msgstr ""
#: appnet.php:142
msgid "Currently connected to: "
msgstr ""
#: appnet.php:144
msgid "Enable App.net Post Plugin"
msgstr ""
#: appnet.php:149
msgid "Post to App.net by default"
msgstr ""
#: appnet.php:153
msgid "Import the remote timeline"
msgstr ""
#: appnet.php:159
msgid ""
"<p>Error fetching user profile. Please clear the configuration and try again."
"</p>"
msgstr ""
#: appnet.php:164
msgid "<p>You have two ways to connect to App.net.</p>"
msgstr ""
#: appnet.php:166
msgid ""
"<p>First way: Register an application at <a href=\"https://account.app.net/"
"developer/apps/\">https://account.app.net/developer/apps/</a> and enter "
"Client ID and Client Secret. "
msgstr ""
#: appnet.php:167
#, php-format
msgid "Use '%s' as Redirect URI<p>"
msgstr ""
#: appnet.php:169
msgid "Client ID"
msgstr ""
#: appnet.php:173
msgid "Client Secret"
msgstr ""
#: appnet.php:177
msgid ""
"<p>Second way: fetch a token at <a href=\"http://dev-lite.jonathonduerig.com/"
"\">http://dev-lite.jonathonduerig.com/</a>. "
msgstr ""
#: appnet.php:178
msgid ""
"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', "
"'Messages'.</p>"
msgstr ""
#: appnet.php:180
msgid "Token"
msgstr ""
#: appnet.php:192
msgid "Sign in using App.net"
msgstr ""
#: appnet.php:197
msgid "Clear OAuth configuration"
msgstr ""
#: appnet.php:204
msgid "Save Settings"
msgstr ""

118
appnet/lang/cs/messages.po Normal file
View file

@ -0,0 +1,118 @@
# ADDON appnet
# Copyright (C)
# This file is distributed under the same license as the Friendica appnet addon package.
#
#
# Translators:
# Michal Šupler <msupler@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 11:47+0200\n"
"PO-Revision-Date: 2014-07-02 15:24+0000\n"
"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: appnet.php:39
msgid "Permission denied."
msgstr "Přístup odmítnut."
#: appnet.php:73
msgid "You are now authenticated to app.net. "
msgstr "Nyní jste přihlášen k app.net."
#: appnet.php:77
msgid "<p>Error fetching token. Please try again.</p>"
msgstr "<p>Chyba v přenesení tokenu. Prosím zkuste to znovu.</p>"
#: appnet.php:80
msgid "return to the connector page"
msgstr "návrat ke stránce konektor"
#: appnet.php:94
msgid "Post to app.net"
msgstr "Poslat příspěvek na app.net"
#: appnet.php:125 appnet.php:129
msgid "App.net Export"
msgstr "App.net Export"
#: appnet.php:142
msgid "Currently connected to: "
msgstr "V současné době připojen k:"
#: appnet.php:144
msgid "Enable App.net Post Plugin"
msgstr "Aktivovat App.net Post Plugin"
#: appnet.php:149
msgid "Post to App.net by default"
msgstr "Defaultně poslat na App.net"
#: appnet.php:153
msgid "Import the remote timeline"
msgstr "Importovat vzdálenou časovou osu"
#: appnet.php:159
msgid ""
"<p>Error fetching user profile. Please clear the configuration and try "
"again.</p>"
msgstr "<p>Chyba v přenesení uživatelského profilu. Prosím zkuste smazat konfiguraci a zkusit to znovu.</p>"
#: appnet.php:164
msgid "<p>You have two ways to connect to App.net.</p>"
msgstr "<p>Máte nyní dvě možnosti jak se připojit k App.net.</p>"
#: appnet.php:166
msgid ""
"<p>First way: Register an application at <a "
"href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a>"
" and enter Client ID and Client Secret. "
msgstr "<p>První možnost: Registrovat svou žádost na <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> a zadat Client ID and Client Secret. "
#: appnet.php:167
#, php-format
msgid "Use '%s' as Redirect URI<p>"
msgstr "Použít '%s' jako URI pro přesměrování<p>"
#: appnet.php:169
msgid "Client ID"
msgstr "Client ID"
#: appnet.php:173
msgid "Client Secret"
msgstr "Client Secret"
#: appnet.php:177
msgid ""
"<p>Second way: fetch a token at <a href=\"http://dev-"
"lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "
msgstr "<p>Druhá možnost: vložit token do <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "
#: appnet.php:178
msgid ""
"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', "
"'Messages'.</p>"
msgstr "Nastavte tyto rámce: 'Základní', 'Stream', 'Psaní příspěvků, 'Veřejné zprávy', 'Zprávy'.</p>"
#: appnet.php:180
msgid "Token"
msgstr "Token"
#: appnet.php:192
msgid "Sign in using App.net"
msgstr "Přihlásit se s použitím App.net"
#: appnet.php:197
msgid "Clear OAuth configuration"
msgstr "Vymazat konfiguraci OAuth"
#: appnet.php:204
msgid "Save Settings"
msgstr "Uložit Nastavení"

View file

@ -0,0 +1,29 @@
<?php
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
}}
;
$a->strings["Permission denied."] = "Přístup odmítnut.";
$a->strings["You are now authenticated to app.net. "] = "Nyní jste přihlášen k app.net.";
$a->strings["<p>Error fetching token. Please try again.</p>"] = "<p>Chyba v přenesení tokenu. Prosím zkuste to znovu.</p>";
$a->strings["return to the connector page"] = "návrat ke stránce konektor";
$a->strings["Post to app.net"] = "Poslat příspěvek na app.net";
$a->strings["App.net Export"] = "App.net Export";
$a->strings["Currently connected to: "] = "V současné době připojen k:";
$a->strings["Enable App.net Post Plugin"] = "Aktivovat App.net Post Plugin";
$a->strings["Post to App.net by default"] = "Defaultně poslat na App.net";
$a->strings["Import the remote timeline"] = "Importovat vzdálenou časovou osu";
$a->strings["<p>Error fetching user profile. Please clear the configuration and try again.</p>"] = "<p>Chyba v přenesení uživatelského profilu. Prosím zkuste smazat konfiguraci a zkusit to znovu.</p>";
$a->strings["<p>You have two ways to connect to App.net.</p>"] = "<p>Máte nyní dvě možnosti jak se připojit k App.net.</p>";
$a->strings["<p>First way: Register an application at <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> and enter Client ID and Client Secret. "] = "<p>První možnost: Registrovat svou žádost na <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> a zadat Client ID and Client Secret. ";
$a->strings["Use '%s' as Redirect URI<p>"] = "Použít '%s' jako URI pro přesměrování<p>";
$a->strings["Client ID"] = "Client ID";
$a->strings["Client Secret"] = "Client Secret";
$a->strings["<p>Second way: fetch a token at <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "] = "<p>Druhá možnost: vložit token do <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. ";
$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>"] = "Nastavte tyto rámce: 'Základní', 'Stream', 'Psaní příspěvků, 'Veřejné zprávy', 'Zprávy'.</p>";
$a->strings["Token"] = "Token";
$a->strings["Sign in using App.net"] = "Přihlásit se s použitím App.net";
$a->strings["Clear OAuth configuration"] = "Vymazat konfiguraci OAuth";
$a->strings["Save Settings"] = "Uložit Nastavení";

118
appnet/lang/de/messages.po Normal file
View file

@ -0,0 +1,118 @@
# ADDON appnet
# Copyright (C)
# This file is distributed under the same license as the Friendica appnet addon package.
#
#
# Translators:
# bavatar <tobias.diekershoff@gmx.net>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 11:47+0200\n"
"PO-Revision-Date: 2014-06-25 04:31+0000\n"
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: appnet.php:39
msgid "Permission denied."
msgstr "Zugriff verweigert."
#: appnet.php:73
msgid "You are now authenticated to app.net. "
msgstr "Du bist nun auf app.net authentifiziert."
#: appnet.php:77
msgid "<p>Error fetching token. Please try again.</p>"
msgstr "<p>Fehler beim Holen des Tokens, bitte versuche es später noch einmal.</p>"
#: appnet.php:80
msgid "return to the connector page"
msgstr "zurück zur Connector Seite"
#: appnet.php:94
msgid "Post to app.net"
msgstr "Nach app.net senden"
#: appnet.php:125 appnet.php:129
msgid "App.net Export"
msgstr "App.net Export"
#: appnet.php:142
msgid "Currently connected to: "
msgstr "Momentan verbunden mit: "
#: appnet.php:144
msgid "Enable App.net Post Plugin"
msgstr "Veröffentlichungen bei App.net erlauben"
#: appnet.php:149
msgid "Post to App.net by default"
msgstr "Standardmäßig bei App.net veröffentlichen"
#: appnet.php:153
msgid "Import the remote timeline"
msgstr "Importiere die entfernte Zeitleiste"
#: appnet.php:159
msgid ""
"<p>Error fetching user profile. Please clear the configuration and try "
"again.</p>"
msgstr "<p>Beim Laden des Nutzerprofils ist ein Fehler aufgetreten. Bitte versuche es später noch einmal.</p>"
#: appnet.php:164
msgid "<p>You have two ways to connect to App.net.</p>"
msgstr "<p>Du hast zwei Wege deinen friendica Account mit App.net zu verbinden.</p>"
#: appnet.php:166
msgid ""
"<p>First way: Register an application at <a "
"href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a>"
" and enter Client ID and Client Secret. "
msgstr "<p>Erster Weg: Registriere eine Anwendung unter <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> und wähle eine Client ID und ein Client Secret."
#: appnet.php:167
#, php-format
msgid "Use '%s' as Redirect URI<p>"
msgstr "Verwende '%s' als Redirect URI<p>"
#: appnet.php:169
msgid "Client ID"
msgstr "Client ID"
#: appnet.php:173
msgid "Client Secret"
msgstr "Client Secret"
#: appnet.php:177
msgid ""
"<p>Second way: fetch a token at <a href=\"http://dev-"
"lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "
msgstr "<p>Zweiter Weg: Beantrage ein Token unter <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "
#: appnet.php:178
msgid ""
"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', "
"'Messages'.</p>"
msgstr "Verwende folgende Scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>"
#: appnet.php:180
msgid "Token"
msgstr "Token"
#: appnet.php:192
msgid "Sign in using App.net"
msgstr "Per App.net anmelden"
#: appnet.php:197
msgid "Clear OAuth configuration"
msgstr "OAuth Konfiguration löschen"
#: appnet.php:204
msgid "Save Settings"
msgstr "Einstellungen speichern"

View file

@ -0,0 +1,29 @@
<?php
if(! function_exists("string_plural_select_de")) {
function string_plural_select_de($n){
return ($n != 1);;
}}
;
$a->strings["Permission denied."] = "Zugriff verweigert.";
$a->strings["You are now authenticated to app.net. "] = "Du bist nun auf app.net authentifiziert.";
$a->strings["<p>Error fetching token. Please try again.</p>"] = "<p>Fehler beim Holen des Tokens, bitte versuche es später noch einmal.</p>";
$a->strings["return to the connector page"] = "zurück zur Connector Seite";
$a->strings["Post to app.net"] = "Nach app.net senden";
$a->strings["App.net Export"] = "App.net Export";
$a->strings["Currently connected to: "] = "Momentan verbunden mit: ";
$a->strings["Enable App.net Post Plugin"] = "Veröffentlichungen bei App.net erlauben";
$a->strings["Post to App.net by default"] = "Standardmäßig bei App.net veröffentlichen";
$a->strings["Import the remote timeline"] = "Importiere die entfernte Zeitleiste";
$a->strings["<p>Error fetching user profile. Please clear the configuration and try again.</p>"] = "<p>Beim Laden des Nutzerprofils ist ein Fehler aufgetreten. Bitte versuche es später noch einmal.</p>";
$a->strings["<p>You have two ways to connect to App.net.</p>"] = "<p>Du hast zwei Wege deinen friendica Account mit App.net zu verbinden.</p>";
$a->strings["<p>First way: Register an application at <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> and enter Client ID and Client Secret. "] = "<p>Erster Weg: Registriere eine Anwendung unter <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> und wähle eine Client ID und ein Client Secret.";
$a->strings["Use '%s' as Redirect URI<p>"] = "Verwende '%s' als Redirect URI<p>";
$a->strings["Client ID"] = "Client ID";
$a->strings["Client Secret"] = "Client Secret";
$a->strings["<p>Second way: fetch a token at <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "] = "<p>Zweiter Weg: Beantrage ein Token unter <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. ";
$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>"] = "Verwende folgende Scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>";
$a->strings["Token"] = "Token";
$a->strings["Sign in using App.net"] = "Per App.net anmelden";
$a->strings["Clear OAuth configuration"] = "OAuth Konfiguration löschen";
$a->strings["Save Settings"] = "Einstellungen speichern";

118
appnet/lang/es/messages.po Normal file
View file

@ -0,0 +1,118 @@
# ADDON appnet
# Copyright (C)
# This file is distributed under the same license as the Friendica appnet addon package.
#
#
# Translators:
# Alberto Díaz Tormo <albertodiaztormo@gmail.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 11:47+0200\n"
"PO-Revision-Date: 2016-10-13 21:25+0000\n"
"Last-Translator: Alberto Díaz Tormo <albertodiaztormo@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: appnet.php:39
msgid "Permission denied."
msgstr "Permiso denegado"
#: appnet.php:73
msgid "You are now authenticated to app.net. "
msgstr "Ahora está autenticado en app.net."
#: appnet.php:77
msgid "<p>Error fetching token. Please try again.</p>"
msgstr "<p>Advertencia de error. Por favor inténtelo de nuevo.</p>"
#: appnet.php:80
msgid "return to the connector page"
msgstr "vuelva a pa página de conexón"
#: appnet.php:94
msgid "Post to app.net"
msgstr "Publique en app.net"
#: appnet.php:125 appnet.php:129
msgid "App.net Export"
msgstr "Exportar a app.net"
#: appnet.php:142
msgid "Currently connected to: "
msgstr "Actualmente conectado a:"
#: appnet.php:144
msgid "Enable App.net Post Plugin"
msgstr "Habilitar el plugin de publicación de App.net"
#: appnet.php:149
msgid "Post to App.net by default"
msgstr "Publicar en App.net por defecto"
#: appnet.php:153
msgid "Import the remote timeline"
msgstr "Importar la línea de tiempo remota"
#: appnet.php:159
msgid ""
"<p>Error fetching user profile. Please clear the configuration and try "
"again.</p>"
msgstr "<p>Advertencia de error de perfil. Por favor borre la configuración e inténtelo de nuevo.</p>"
#: appnet.php:164
msgid "<p>You have two ways to connect to App.net.</p>"
msgstr "<p>Tiene dos formas de conectar a App.net.</p>"
#: appnet.php:166
msgid ""
"<p>First way: Register an application at <a "
"href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a>"
" and enter Client ID and Client Secret. "
msgstr "<p>Primera forma: Registrar una aplicación en <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> y seleccionar Client ID y Client Secret. "
#: appnet.php:167
#, php-format
msgid "Use '%s' as Redirect URI<p>"
msgstr "Use '%s' como Redirigir URI"
#: appnet.php:169
msgid "Client ID"
msgstr "ID de cliente"
#: appnet.php:173
msgid "Client Secret"
msgstr "Secreto de cliente"
#: appnet.php:177
msgid ""
"<p>Second way: fetch a token at <a href=\"http://dev-"
"lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "
msgstr "<p>Segunda manera: traiga un símbolo a <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>"
#: appnet.php:178
msgid ""
"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', "
"'Messages'.</p>"
msgstr "Seleccione estas posibilidades: 'Básico', 'Continuo', 'Escribir entrada', 'Mensajes públicos', 'Mensajes'.</p>"
#: appnet.php:180
msgid "Token"
msgstr "Símbolo"
#: appnet.php:192
msgid "Sign in using App.net"
msgstr "Regístrese usando App.net"
#: appnet.php:197
msgid "Clear OAuth configuration"
msgstr "Borre la configuración OAuth"
#: appnet.php:204
msgid "Save Settings"
msgstr "Guardar los ajustes"

View file

@ -0,0 +1,29 @@
<?php
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
return ($n != 1);;
}}
;
$a->strings["Permission denied."] = "Permiso denegado";
$a->strings["You are now authenticated to app.net. "] = "Ahora está autenticado en app.net.";
$a->strings["<p>Error fetching token. Please try again.</p>"] = "<p>Advertencia de error. Por favor inténtelo de nuevo.</p>";
$a->strings["return to the connector page"] = "vuelva a pa página de conexón";
$a->strings["Post to app.net"] = "Publique en app.net";
$a->strings["App.net Export"] = "Exportar a app.net";
$a->strings["Currently connected to: "] = "Actualmente conectado a:";
$a->strings["Enable App.net Post Plugin"] = "Habilitar el plugin de publicación de App.net";
$a->strings["Post to App.net by default"] = "Publicar en App.net por defecto";
$a->strings["Import the remote timeline"] = "Importar la línea de tiempo remota";
$a->strings["<p>Error fetching user profile. Please clear the configuration and try again.</p>"] = "<p>Advertencia de error de perfil. Por favor borre la configuración e inténtelo de nuevo.</p>";
$a->strings["<p>You have two ways to connect to App.net.</p>"] = "<p>Tiene dos formas de conectar a App.net.</p>";
$a->strings["<p>First way: Register an application at <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> and enter Client ID and Client Secret. "] = "<p>Primera forma: Registrar una aplicación en <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> y seleccionar Client ID y Client Secret. ";
$a->strings["Use '%s' as Redirect URI<p>"] = "Use '%s' como Redirigir URI";
$a->strings["Client ID"] = "ID de cliente";
$a->strings["Client Secret"] = "Secreto de cliente";
$a->strings["<p>Second way: fetch a token at <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "] = "<p>Segunda manera: traiga un símbolo a <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>";
$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>"] = "Seleccione estas posibilidades: 'Básico', 'Continuo', 'Escribir entrada', 'Mensajes públicos', 'Mensajes'.</p>";
$a->strings["Token"] = "Símbolo";
$a->strings["Sign in using App.net"] = "Regístrese usando App.net";
$a->strings["Clear OAuth configuration"] = "Borre la configuración OAuth";
$a->strings["Save Settings"] = "Guardar los ajustes";

119
appnet/lang/fr/messages.po Normal file
View file

@ -0,0 +1,119 @@
# ADDON appnet
# Copyright (C)
# This file is distributed under the same license as the Friendica appnet addon package.
#
#
# Translators:
# Hypolite Petovan <mrpetovan@gmail.com>, 2016
# Jak <jacques@riseup.net>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 11:47+0200\n"
"PO-Revision-Date: 2016-09-24 02:12+0000\n"
"Last-Translator: Hypolite Petovan <mrpetovan@gmail.com>\n"
"Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: appnet.php:39
msgid "Permission denied."
msgstr "Autorisation refusée"
#: appnet.php:73
msgid "You are now authenticated to app.net. "
msgstr "Vous êtes maintenant authentifié sur app.net"
#: appnet.php:77
msgid "<p>Error fetching token. Please try again.</p>"
msgstr "<p>Impossible d'obtenir le jeton, merci de réessayer.</p>"
#: appnet.php:80
msgid "return to the connector page"
msgstr "revenir à la page du connecteur"
#: appnet.php:94
msgid "Post to app.net"
msgstr "Publier sur app.net"
#: appnet.php:125 appnet.php:129
msgid "App.net Export"
msgstr "Export App.net"
#: appnet.php:142
msgid "Currently connected to: "
msgstr "Actuellement connecté à :"
#: appnet.php:144
msgid "Enable App.net Post Plugin"
msgstr "Activer le plugin de publication app.net"
#: appnet.php:149
msgid "Post to App.net by default"
msgstr "Publier sur App.net par défaut"
#: appnet.php:153
msgid "Import the remote timeline"
msgstr "Importer la timeline distante"
#: appnet.php:159
msgid ""
"<p>Error fetching user profile. Please clear the configuration and try "
"again.</p>"
msgstr "<p>Impossible d'obtenir le profil utilisateur. Merci de réinitialiser la configuration et de réessayer.</p>"
#: appnet.php:164
msgid "<p>You have two ways to connect to App.net.</p>"
msgstr "<p>Vous avez deux possibilités pour vous connecter à App.net.</p>"
#: appnet.php:166
msgid ""
"<p>First way: Register an application at <a "
"href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a>"
" and enter Client ID and Client Secret. "
msgstr "<p>Première méthode: Enregistrer une application sur <a href=\"https://account.app.net/developer/apps/\">App.net [en]</a> et entrez l'ID Client et le Secret Client. "
#: appnet.php:167
#, php-format
msgid "Use '%s' as Redirect URI<p>"
msgstr "Utilisez '%s' pour l'URI de Redirection"
#: appnet.php:169
msgid "Client ID"
msgstr "ID Client"
#: appnet.php:173
msgid "Client Secret"
msgstr "Secret Client"
#: appnet.php:177
msgid ""
"<p>Second way: fetch a token at <a href=\"http://dev-"
"lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "
msgstr "<p>Deuxième méthode: obtenez un jeton ur <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/ [en]</a>. "
#: appnet.php:178
msgid ""
"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', "
"'Messages'.</p>"
msgstr "Cochez les \"scopes\" suivant: \"Basic\", \"Stream\", \"Write Post\", \"Public Messages\", \"Messages\".</p>"
#: appnet.php:180
msgid "Token"
msgstr "Jeton"
#: appnet.php:192
msgid "Sign in using App.net"
msgstr "Se connecter avec App.net"
#: appnet.php:197
msgid "Clear OAuth configuration"
msgstr "Effacer la configuration OAuth"
#: appnet.php:204
msgid "Save Settings"
msgstr "Sauvegarder les paramètres"

View file

@ -0,0 +1,29 @@
<?php
if(! function_exists("string_plural_select_fr")) {
function string_plural_select_fr($n){
return ($n > 1);;
}}
;
$a->strings["Permission denied."] = "Autorisation refusée";
$a->strings["You are now authenticated to app.net. "] = "Vous êtes maintenant authentifié sur app.net";
$a->strings["<p>Error fetching token. Please try again.</p>"] = "<p>Impossible d'obtenir le jeton, merci de réessayer.</p>";
$a->strings["return to the connector page"] = "revenir à la page du connecteur";
$a->strings["Post to app.net"] = "Publier sur app.net";
$a->strings["App.net Export"] = "Export App.net";
$a->strings["Currently connected to: "] = "Actuellement connecté à :";
$a->strings["Enable App.net Post Plugin"] = "Activer le plugin de publication app.net";
$a->strings["Post to App.net by default"] = "Publier sur App.net par défaut";
$a->strings["Import the remote timeline"] = "Importer la timeline distante";
$a->strings["<p>Error fetching user profile. Please clear the configuration and try again.</p>"] = "<p>Impossible d'obtenir le profil utilisateur. Merci de réinitialiser la configuration et de réessayer.</p>";
$a->strings["<p>You have two ways to connect to App.net.</p>"] = "<p>Vous avez deux possibilités pour vous connecter à App.net.</p>";
$a->strings["<p>First way: Register an application at <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> and enter Client ID and Client Secret. "] = "<p>Première méthode: Enregistrer une application sur <a href=\"https://account.app.net/developer/apps/\">App.net [en]</a> et entrez l'ID Client et le Secret Client. ";
$a->strings["Use '%s' as Redirect URI<p>"] = "Utilisez '%s' pour l'URI de Redirection";
$a->strings["Client ID"] = "ID Client";
$a->strings["Client Secret"] = "Secret Client";
$a->strings["<p>Second way: fetch a token at <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "] = "<p>Deuxième méthode: obtenez un jeton ur <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/ [en]</a>. ";
$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>"] = "Cochez les \"scopes\" suivant: \"Basic\", \"Stream\", \"Write Post\", \"Public Messages\", \"Messages\".</p>";
$a->strings["Token"] = "Jeton";
$a->strings["Sign in using App.net"] = "Se connecter avec App.net";
$a->strings["Clear OAuth configuration"] = "Effacer la configuration OAuth";
$a->strings["Save Settings"] = "Sauvegarder les paramètres";

118
appnet/lang/it/messages.po Normal file
View file

@ -0,0 +1,118 @@
# ADDON appnet
# Copyright (C)
# This file is distributed under the same license as the Friendica appnet addon package.
#
#
# Translators:
# fabrixxm <fabrix.xm@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 11:47+0200\n"
"PO-Revision-Date: 2014-09-10 10:18+0000\n"
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: appnet.php:39
msgid "Permission denied."
msgstr "Permesso negato."
#: appnet.php:73
msgid "You are now authenticated to app.net. "
msgstr "Sei autenticato su app.net"
#: appnet.php:77
msgid "<p>Error fetching token. Please try again.</p>"
msgstr "<p>Errore recuperando il token. Prova di nuovo</p>"
#: appnet.php:80
msgid "return to the connector page"
msgstr "ritorna alla pagina del connettore"
#: appnet.php:94
msgid "Post to app.net"
msgstr "Invia ad app.net"
#: appnet.php:125 appnet.php:129
msgid "App.net Export"
msgstr "Esporta App.net"
#: appnet.php:142
msgid "Currently connected to: "
msgstr "Al momento connesso con:"
#: appnet.php:144
msgid "Enable App.net Post Plugin"
msgstr "Abilita il plugin di invio ad App.net"
#: appnet.php:149
msgid "Post to App.net by default"
msgstr "Invia sempre ad App.net"
#: appnet.php:153
msgid "Import the remote timeline"
msgstr "Importa la timeline remota"
#: appnet.php:159
msgid ""
"<p>Error fetching user profile. Please clear the configuration and try "
"again.</p>"
msgstr "<p>Errore recuperando il profilo utente. Svuota la configurazione e prova di nuovo.</p>"
#: appnet.php:164
msgid "<p>You have two ways to connect to App.net.</p>"
msgstr "<p>Puoi collegarti ad App.net in due modi.</p>"
#: appnet.php:166
msgid ""
"<p>First way: Register an application at <a "
"href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a>"
" and enter Client ID and Client Secret. "
msgstr "<p>Registrare un'applicazione su <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> e inserire Client ID e Client Secret."
#: appnet.php:167
#, php-format
msgid "Use '%s' as Redirect URI<p>"
msgstr "Usa '%s' come Redirect URI</p>"
#: appnet.php:169
msgid "Client ID"
msgstr "Client ID"
#: appnet.php:173
msgid "Client Secret"
msgstr "Client Secret"
#: appnet.php:177
msgid ""
"<p>Second way: fetch a token at <a href=\"http://dev-"
"lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "
msgstr "<p>Oppure puoi recuperare un token su <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>."
#: appnet.php:178
msgid ""
"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', "
"'Messages'.</p>"
msgstr "Imposta gli ambiti 'Basic', 'Stream', 'Scrivi Post', 'Messaggi Pubblici', 'Messaggi'.</p>"
#: appnet.php:180
msgid "Token"
msgstr "Token"
#: appnet.php:192
msgid "Sign in using App.net"
msgstr "Autenticati con App.net"
#: appnet.php:197
msgid "Clear OAuth configuration"
msgstr "Pulisci configurazione OAuth"
#: appnet.php:204
msgid "Save Settings"
msgstr "Salva Impostazioni"

View file

@ -0,0 +1,29 @@
<?php
if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
return ($n != 1);;
}}
;
$a->strings["Permission denied."] = "Permesso negato.";
$a->strings["You are now authenticated to app.net. "] = "Sei autenticato su app.net";
$a->strings["<p>Error fetching token. Please try again.</p>"] = "<p>Errore recuperando il token. Prova di nuovo</p>";
$a->strings["return to the connector page"] = "ritorna alla pagina del connettore";
$a->strings["Post to app.net"] = "Invia ad app.net";
$a->strings["App.net Export"] = "Esporta App.net";
$a->strings["Currently connected to: "] = "Al momento connesso con:";
$a->strings["Enable App.net Post Plugin"] = "Abilita il plugin di invio ad App.net";
$a->strings["Post to App.net by default"] = "Invia sempre ad App.net";
$a->strings["Import the remote timeline"] = "Importa la timeline remota";
$a->strings["<p>Error fetching user profile. Please clear the configuration and try again.</p>"] = "<p>Errore recuperando il profilo utente. Svuota la configurazione e prova di nuovo.</p>";
$a->strings["<p>You have two ways to connect to App.net.</p>"] = "<p>Puoi collegarti ad App.net in due modi.</p>";
$a->strings["<p>First way: Register an application at <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> and enter Client ID and Client Secret. "] = "<p>Registrare un'applicazione su <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> e inserire Client ID e Client Secret.";
$a->strings["Use '%s' as Redirect URI<p>"] = "Usa '%s' come Redirect URI</p>";
$a->strings["Client ID"] = "Client ID";
$a->strings["Client Secret"] = "Client Secret";
$a->strings["<p>Second way: fetch a token at <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "] = "<p>Oppure puoi recuperare un token su <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>.";
$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>"] = "Imposta gli ambiti 'Basic', 'Stream', 'Scrivi Post', 'Messaggi Pubblici', 'Messaggi'.</p>";
$a->strings["Token"] = "Token";
$a->strings["Sign in using App.net"] = "Autenticati con App.net";
$a->strings["Clear OAuth configuration"] = "Pulisci configurazione OAuth";
$a->strings["Save Settings"] = "Salva Impostazioni";

118
appnet/lang/nl/messages.po Normal file
View file

@ -0,0 +1,118 @@
# ADDON appnet
# Copyright (C)
# This file is distributed under the same license as the Friendica appnet addon package.
#
#
# Translators:
# Jeroen S <j.soeurt@gmail.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 11:47+0200\n"
"PO-Revision-Date: 2016-06-23 19:52+0000\n"
"Last-Translator: Jeroen S <j.soeurt@gmail.com>\n"
"Language-Team: Dutch (http://www.transifex.com/Friendica/friendica/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: appnet.php:39
msgid "Permission denied."
msgstr "Toegang geweigerd"
#: appnet.php:73
msgid "You are now authenticated to app.net. "
msgstr "Je bent nu aangemeld bij app.net."
#: appnet.php:77
msgid "<p>Error fetching token. Please try again.</p>"
msgstr "<p>Fout tijdens token fetching. Probeer het nogmaals.</p>"
#: appnet.php:80
msgid "return to the connector page"
msgstr "ga terug naar de connector pagina"
#: appnet.php:94
msgid "Post to app.net"
msgstr "Post naar app.net."
#: appnet.php:125 appnet.php:129
msgid "App.net Export"
msgstr "App.net Export"
#: appnet.php:142
msgid "Currently connected to: "
msgstr "Momenteel verbonden met:"
#: appnet.php:144
msgid "Enable App.net Post Plugin"
msgstr "App.net Post Plugin inschakelen"
#: appnet.php:149
msgid "Post to App.net by default"
msgstr "Naar App.net posten als standaard instellen"
#: appnet.php:153
msgid "Import the remote timeline"
msgstr "The tijdlijn op afstand importeren"
#: appnet.php:159
msgid ""
"<p>Error fetching user profile. Please clear the configuration and try "
"again.</p>"
msgstr "<p>Fout tijdens het ophalen van gebruikersprofiel. Leeg de configuratie en probeer het opnieuw.</p>"
#: appnet.php:164
msgid "<p>You have two ways to connect to App.net.</p>"
msgstr "<p>Er zijn twee manieren om met App.net te verbinden.</p>"
#: appnet.php:166
msgid ""
"<p>First way: Register an application at <a "
"href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a>"
" and enter Client ID and Client Secret. "
msgstr ""
#: appnet.php:167
#, php-format
msgid "Use '%s' as Redirect URI<p>"
msgstr ""
#: appnet.php:169
msgid "Client ID"
msgstr ""
#: appnet.php:173
msgid "Client Secret"
msgstr ""
#: appnet.php:177
msgid ""
"<p>Second way: fetch a token at <a href=\"http://dev-"
"lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "
msgstr ""
#: appnet.php:178
msgid ""
"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', "
"'Messages'.</p>"
msgstr ""
#: appnet.php:180
msgid "Token"
msgstr ""
#: appnet.php:192
msgid "Sign in using App.net"
msgstr ""
#: appnet.php:197
msgid "Clear OAuth configuration"
msgstr ""
#: appnet.php:204
msgid "Save Settings"
msgstr ""

View file

@ -0,0 +1,29 @@
<?php
if(! function_exists("string_plural_select_nl")) {
function string_plural_select_nl($n){
return ($n != 1);;
}}
;
$a->strings["Permission denied."] = "Toegang geweigerd";
$a->strings["You are now authenticated to app.net. "] = "Je bent nu aangemeld bij app.net.";
$a->strings["<p>Error fetching token. Please try again.</p>"] = "<p>Fout tijdens token fetching. Probeer het nogmaals.</p>";
$a->strings["return to the connector page"] = "ga terug naar de connector pagina";
$a->strings["Post to app.net"] = "Post naar app.net.";
$a->strings["App.net Export"] = "App.net Export";
$a->strings["Currently connected to: "] = "Momenteel verbonden met:";
$a->strings["Enable App.net Post Plugin"] = "App.net Post Plugin inschakelen";
$a->strings["Post to App.net by default"] = "Naar App.net posten als standaard instellen";
$a->strings["Import the remote timeline"] = "The tijdlijn op afstand importeren";
$a->strings["<p>Error fetching user profile. Please clear the configuration and try again.</p>"] = "<p>Fout tijdens het ophalen van gebruikersprofiel. Leeg de configuratie en probeer het opnieuw.</p>";
$a->strings["<p>You have two ways to connect to App.net.</p>"] = "<p>Er zijn twee manieren om met App.net te verbinden.</p>";
$a->strings["<p>First way: Register an application at <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> and enter Client ID and Client Secret. "] = "";
$a->strings["Use '%s' as Redirect URI<p>"] = "";
$a->strings["Client ID"] = "";
$a->strings["Client Secret"] = "";
$a->strings["<p>Second way: fetch a token at <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "] = "";
$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>"] = "";
$a->strings["Token"] = "";
$a->strings["Sign in using App.net"] = "";
$a->strings["Clear OAuth configuration"] = "";
$a->strings["Save Settings"] = "";

View file

@ -0,0 +1,119 @@
# ADDON appnet
# Copyright (C)
# This file is distributed under the same license as the Friendica appnet addon package.
#
#
# Translators:
# Beatriz Vital <vitalb@riseup.net>, 2016
# Calango Jr <jcsojr@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 11:47+0200\n"
"PO-Revision-Date: 2016-08-19 20:37+0000\n"
"Last-Translator: Beatriz Vital <vitalb@riseup.net>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/Friendica/friendica/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: appnet.php:39
msgid "Permission denied."
msgstr "Permissão negada."
#: appnet.php:73
msgid "You are now authenticated to app.net. "
msgstr "Você está autenticado no app.net."
#: appnet.php:77
msgid "<p>Error fetching token. Please try again.</p>"
msgstr "Erro ocorrido na obtenção do token. Tente novamente."
#: appnet.php:80
msgid "return to the connector page"
msgstr "Volte a página de conectores."
#: appnet.php:94
msgid "Post to app.net"
msgstr "Publicar no App.net"
#: appnet.php:125 appnet.php:129
msgid "App.net Export"
msgstr "App.net exportar"
#: appnet.php:142
msgid "Currently connected to: "
msgstr "Atualmente conectado em: "
#: appnet.php:144
msgid "Enable App.net Post Plugin"
msgstr "Habilitar plug-in para publicar no App.net"
#: appnet.php:149
msgid "Post to App.net by default"
msgstr "Publicar em App.net por padrão"
#: appnet.php:153
msgid "Import the remote timeline"
msgstr "Importar a linha do tempo remota"
#: appnet.php:159
msgid ""
"<p>Error fetching user profile. Please clear the configuration and try "
"again.</p>"
msgstr "Erro na obtenção do perfil do usuário. Confira as configurações e tente novamente."
#: appnet.php:164
msgid "<p>You have two ways to connect to App.net.</p>"
msgstr "<p>Você possui duas formas de conectar ao App.net</p>"
#: appnet.php:166
msgid ""
"<p>First way: Register an application at <a "
"href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a>"
" and enter Client ID and Client Secret. "
msgstr "<p>1º Método: Registre uma aplicação em <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> e entre o Client ID e Client Secret"
#: appnet.php:167
#, php-format
msgid "Use '%s' as Redirect URI<p>"
msgstr "Use '%s' como URI redirecionador<p>"
#: appnet.php:169
msgid "Client ID"
msgstr "Client ID"
#: appnet.php:173
msgid "Client Secret"
msgstr "Client Secret"
#: appnet.php:177
msgid ""
"<p>Second way: fetch a token at <a href=\"http://dev-"
"lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "
msgstr "<p>2º Método: obtenha um token em <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "
#: appnet.php:178
msgid ""
"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', "
"'Messages'.</p>"
msgstr "Adicione valor as estas saídas: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>"
#: appnet.php:180
msgid "Token"
msgstr "Token"
#: appnet.php:192
msgid "Sign in using App.net"
msgstr "Entre usando o App.net"
#: appnet.php:197
msgid "Clear OAuth configuration"
msgstr "Limpar configuração OAuth"
#: appnet.php:204
msgid "Save Settings"
msgstr "Salvar Configurações"

View file

@ -0,0 +1,29 @@
<?php
if(! function_exists("string_plural_select_pt_br")) {
function string_plural_select_pt_br($n){
return ($n > 1);;
}}
;
$a->strings["Permission denied."] = "Permissão negada.";
$a->strings["You are now authenticated to app.net. "] = "Você está autenticado no app.net.";
$a->strings["<p>Error fetching token. Please try again.</p>"] = "Erro ocorrido na obtenção do token. Tente novamente.";
$a->strings["return to the connector page"] = "Volte a página de conectores.";
$a->strings["Post to app.net"] = "Publicar no App.net";
$a->strings["App.net Export"] = "App.net exportar";
$a->strings["Currently connected to: "] = "Atualmente conectado em: ";
$a->strings["Enable App.net Post Plugin"] = "Habilitar plug-in para publicar no App.net";
$a->strings["Post to App.net by default"] = "Publicar em App.net por padrão";
$a->strings["Import the remote timeline"] = "Importar a linha do tempo remota";
$a->strings["<p>Error fetching user profile. Please clear the configuration and try again.</p>"] = "Erro na obtenção do perfil do usuário. Confira as configurações e tente novamente.";
$a->strings["<p>You have two ways to connect to App.net.</p>"] = "<p>Você possui duas formas de conectar ao App.net</p>";
$a->strings["<p>First way: Register an application at <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> and enter Client ID and Client Secret. "] = "<p>1º Método: Registre uma aplicação em <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> e entre o Client ID e Client Secret";
$a->strings["Use '%s' as Redirect URI<p>"] = "Use '%s' como URI redirecionador<p>";
$a->strings["Client ID"] = "Client ID";
$a->strings["Client Secret"] = "Client Secret";
$a->strings["<p>Second way: fetch a token at <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "] = "<p>2º Método: obtenha um token em <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. ";
$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>"] = "Adicione valor as estas saídas: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>";
$a->strings["Token"] = "Token";
$a->strings["Sign in using App.net"] = "Entre usando o App.net";
$a->strings["Clear OAuth configuration"] = "Limpar configuração OAuth";
$a->strings["Save Settings"] = "Salvar Configurações";

117
appnet/lang/ro/messages.po Normal file
View file

@ -0,0 +1,117 @@
# ADDON appnet
# Copyright (C)
# This file is distributed under the same license as the Friendica appnet addon package.
#
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 11:47+0200\n"
"PO-Revision-Date: 2014-07-08 11:40+0000\n"
"Last-Translator: Arian - Cazare Muncitori <arianserv@gmail.com>\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/friendica/language/ro_RO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ro_RO\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#: appnet.php:39
msgid "Permission denied."
msgstr "Permisiune refuzată."
#: appnet.php:73
msgid "You are now authenticated to app.net. "
msgstr "Acum sunteți autentificat pe App.net."
#: appnet.php:77
msgid "<p>Error fetching token. Please try again.</p>"
msgstr "<p>Eroare la procesarea token-ului. Vă rugăm să reîncercați.</p>"
#: appnet.php:80
msgid "return to the connector page"
msgstr "revenire la pagina de conectare"
#: appnet.php:94
msgid "Post to app.net"
msgstr "Postați pe App.net"
#: appnet.php:125 appnet.php:129
msgid "App.net Export"
msgstr "Exportare pe App.net"
#: appnet.php:142
msgid "Currently connected to: "
msgstr "Conectat curent la:"
#: appnet.php:144
msgid "Enable App.net Post Plugin"
msgstr "Activare Modul Postare pe App.net"
#: appnet.php:149
msgid "Post to App.net by default"
msgstr "Postați implicit pe App.net"
#: appnet.php:153
msgid "Import the remote timeline"
msgstr "Importare cronologie la distanță"
#: appnet.php:159
msgid ""
"<p>Error fetching user profile. Please clear the configuration and try "
"again.</p>"
msgstr "<p>Eroare la procesarea profilului de utilizator. Vă rugăm să ștergeți configurarea şi apoi reîncercați.</p>"
#: appnet.php:164
msgid "<p>You have two ways to connect to App.net.</p>"
msgstr "<p>Aveți două modalități de a vă conecta la App.net.</p>"
#: appnet.php:166
msgid ""
"<p>First way: Register an application at <a "
"href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a>"
" and enter Client ID and Client Secret. "
msgstr "<p>Prima modalitate: Înregistrați o cerere pe <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> şi introduceți ID Client şi Cheia Secretă Client."
#: appnet.php:167
#, php-format
msgid "Use '%s' as Redirect URI<p>"
msgstr "Utilizați '%s' ca URI de Redirecţionare<p>"
#: appnet.php:169
msgid "Client ID"
msgstr "ID Client"
#: appnet.php:173
msgid "Client Secret"
msgstr "Cheia Secretă Client"
#: appnet.php:177
msgid ""
"<p>Second way: fetch a token at <a href=\"http://dev-"
"lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "
msgstr "<p>A doua cale: autorizați un indicativ de acces token de pe <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a> ."
#: appnet.php:178
msgid ""
"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', "
"'Messages'.</p>"
msgstr "Stabiliți aceste scopuri: 'De Bază', 'Flux', 'Scriere Postare', 'Mesaje Publice', 'Mesaje'.</p>"
#: appnet.php:180
msgid "Token"
msgstr "Token"
#: appnet.php:192
msgid "Sign in using App.net"
msgstr "Autentificați-vă utilizând App.net"
#: appnet.php:197
msgid "Clear OAuth configuration"
msgstr "Ștergeți configurările OAuth"
#: appnet.php:204
msgid "Save Settings"
msgstr "Salvare Configurări"

View file

@ -0,0 +1,29 @@
<?php
if(! function_exists("string_plural_select_ro")) {
function string_plural_select_ro($n){
return ($n==1?0:((($n%100>19)||(($n%100==0)&&($n!=0)))?2:1));;
}}
;
$a->strings["Permission denied."] = "Permisiune refuzată.";
$a->strings["You are now authenticated to app.net. "] = "Acum sunteți autentificat pe App.net.";
$a->strings["<p>Error fetching token. Please try again.</p>"] = "<p>Eroare la procesarea token-ului. Vă rugăm să reîncercați.</p>";
$a->strings["return to the connector page"] = "revenire la pagina de conectare";
$a->strings["Post to app.net"] = "Postați pe App.net";
$a->strings["App.net Export"] = "Exportare pe App.net";
$a->strings["Currently connected to: "] = "Conectat curent la:";
$a->strings["Enable App.net Post Plugin"] = "Activare Modul Postare pe App.net";
$a->strings["Post to App.net by default"] = "Postați implicit pe App.net";
$a->strings["Import the remote timeline"] = "Importare cronologie la distanță";
$a->strings["<p>Error fetching user profile. Please clear the configuration and try again.</p>"] = "<p>Eroare la procesarea profilului de utilizator. Vă rugăm să ștergeți configurarea şi apoi reîncercați.</p>";
$a->strings["<p>You have two ways to connect to App.net.</p>"] = "<p>Aveți două modalități de a vă conecta la App.net.</p>";
$a->strings["<p>First way: Register an application at <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> and enter Client ID and Client Secret. "] = "<p>Prima modalitate: Înregistrați o cerere pe <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> şi introduceți ID Client şi Cheia Secretă Client.";
$a->strings["Use '%s' as Redirect URI<p>"] = "Utilizați '%s' ca URI de Redirecţionare<p>";
$a->strings["Client ID"] = "ID Client";
$a->strings["Client Secret"] = "Cheia Secretă Client";
$a->strings["<p>Second way: fetch a token at <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "] = "<p>A doua cale: autorizați un indicativ de acces token de pe <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a> .";
$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>"] = "Stabiliți aceste scopuri: 'De Bază', 'Flux', 'Scriere Postare', 'Mesaje Publice', 'Mesaje'.</p>";
$a->strings["Token"] = "Token";
$a->strings["Sign in using App.net"] = "Autentificați-vă utilizând App.net";
$a->strings["Clear OAuth configuration"] = "Ștergeți configurările OAuth";
$a->strings["Save Settings"] = "Salvare Configurări";

118
appnet/lang/ru/messages.po Normal file
View file

@ -0,0 +1,118 @@
# ADDON appnet
# Copyright (C)
# This file is distributed under the same license as the Friendica appnet addon package.
#
#
# Translators:
# Stanislav N. <pztrn@pztrn.name>, 2017
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 11:47+0200\n"
"PO-Revision-Date: 2017-04-08 05:32+0000\n"
"Last-Translator: Stanislav N. <pztrn@pztrn.name>\n"
"Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: appnet.php:39
msgid "Permission denied."
msgstr "Доступ запрещен."
#: appnet.php:73
msgid "You are now authenticated to app.net. "
msgstr "Вы аутентифицированы на app.net"
#: appnet.php:77
msgid "<p>Error fetching token. Please try again.</p>"
msgstr "<p>Ошибка получения токена. Попробуйте еще раз.</p>"
#: appnet.php:80
msgid "return to the connector page"
msgstr "вернуться на страницу коннектора"
#: appnet.php:94
msgid "Post to app.net"
msgstr "Отправить на app.net"
#: appnet.php:125 appnet.php:129
msgid "App.net Export"
msgstr "Экспорт app.net"
#: appnet.php:142
msgid "Currently connected to: "
msgstr "В настоящее время соединены с: "
#: appnet.php:144
msgid "Enable App.net Post Plugin"
msgstr "Включить плагин App.net"
#: appnet.php:149
msgid "Post to App.net by default"
msgstr "Отправлять сообщения на App.net по-умолчанию"
#: appnet.php:153
msgid "Import the remote timeline"
msgstr "Импортировать удаленные сообщения"
#: appnet.php:159
msgid ""
"<p>Error fetching user profile. Please clear the configuration and try "
"again.</p>"
msgstr "<p>Ошибка при получении профиля пользователя. Сбросьте конфигурацию и попробуйте еще раз.</p>"
#: appnet.php:164
msgid "<p>You have two ways to connect to App.net.</p>"
msgstr "<p>У вас есть два способа соединения с App.net.</p>"
#: appnet.php:166
msgid ""
"<p>First way: Register an application at <a "
"href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a>"
" and enter Client ID and Client Secret. "
msgstr "<p>Первый способ: зарегистрируйте приложение на <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> и введите Client ID и Client Secret"
#: appnet.php:167
#, php-format
msgid "Use '%s' as Redirect URI<p>"
msgstr "Используйте '%s' как Redirect URI<p>"
#: appnet.php:169
msgid "Client ID"
msgstr "Client ID"
#: appnet.php:173
msgid "Client Secret"
msgstr "Client Secret"
#: appnet.php:177
msgid ""
"<p>Second way: fetch a token at <a href=\"http://dev-"
"lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "
msgstr "<p>Второй путь: получите токен на <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "
#: appnet.php:178
msgid ""
"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', "
"'Messages'.</p>"
msgstr "Выберите области: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>"
#: appnet.php:180
msgid "Token"
msgstr "Токен"
#: appnet.php:192
msgid "Sign in using App.net"
msgstr "Войти через App.net"
#: appnet.php:197
msgid "Clear OAuth configuration"
msgstr "Удалить конфигурацию OAuth"
#: appnet.php:204
msgid "Save Settings"
msgstr "Сохранить настройки"

View file

@ -0,0 +1,29 @@
<?php
if(! function_exists("string_plural_select_ru")) {
function string_plural_select_ru($n){
return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);;
}}
;
$a->strings["Permission denied."] = "Доступ запрещен.";
$a->strings["You are now authenticated to app.net. "] = "Вы аутентифицированы на app.net";
$a->strings["<p>Error fetching token. Please try again.</p>"] = "<p>Ошибка получения токена. Попробуйте еще раз.</p>";
$a->strings["return to the connector page"] = "вернуться на страницу коннектора";
$a->strings["Post to app.net"] = "Отправить на app.net";
$a->strings["App.net Export"] = "Экспорт app.net";
$a->strings["Currently connected to: "] = "В настоящее время соединены с: ";
$a->strings["Enable App.net Post Plugin"] = "Включить плагин App.net";
$a->strings["Post to App.net by default"] = "Отправлять сообщения на App.net по-умолчанию";
$a->strings["Import the remote timeline"] = "Импортировать удаленные сообщения";
$a->strings["<p>Error fetching user profile. Please clear the configuration and try again.</p>"] = "<p>Ошибка при получении профиля пользователя. Сбросьте конфигурацию и попробуйте еще раз.</p>";
$a->strings["<p>You have two ways to connect to App.net.</p>"] = "<p>У вас есть два способа соединения с App.net.</p>";
$a->strings["<p>First way: Register an application at <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> and enter Client ID and Client Secret. "] = "<p>Первый способ: зарегистрируйте приложение на <a href=\"https://account.app.net/developer/apps/\">https://account.app.net/developer/apps/</a> и введите Client ID и Client Secret";
$a->strings["Use '%s' as Redirect URI<p>"] = "Используйте '%s' как Redirect URI<p>";
$a->strings["Client ID"] = "Client ID";
$a->strings["Client Secret"] = "Client Secret";
$a->strings["<p>Second way: fetch a token at <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. "] = "<p>Второй путь: получите токен на <a href=\"http://dev-lite.jonathonduerig.com/\">http://dev-lite.jonathonduerig.com/</a>. ";
$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>"] = "Выберите области: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.</p>";
$a->strings["Token"] = "Токен";
$a->strings["Sign in using App.net"] = "Войти через App.net";
$a->strings["Clear OAuth configuration"] = "Удалить конфигурацию OAuth";
$a->strings["Save Settings"] = "Сохранить настройки";

1
appnet/lastid.txt Normal file
View file

@ -0,0 +1 @@
36406925

514
appnet/sync.php Normal file
View file

@ -0,0 +1,514 @@
<?php
/*
To-Do:
- like empfangen
- Links besser auflösen
Testen:
*/
require_once("boot.php");
if(@is_null($a)) {
$a = new App;
}
@include(".htconfig.php");
require_once("dba.php");
dba::connect($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
$a->set_baseurl(get_config('system','url'));
//require_once("addon/appnet/appnet.php");
$uid = 1;
appnet_fetchstream($a, $uid);
function appnet_fetchstream($a, $uid) {
require_once("addon/appnet/AppDotNet.php");
require_once('include/items.php');
$token = get_pconfig($uid,'appnet','token');
$clientId = get_pconfig($uid,'appnet','clientid');
$clientSecret = get_pconfig($uid,'appnet','clientsecret');
$app = new AppDotNet($clientId, $clientSecret);
$app->setAccessToken($token);
$r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
intval($uid));
if(count($r))
$me = $r[0];
else {
logger("appnet_fetchstream: Own contact not found for user ".$uid, LOGGER_DEBUG);
return;
}
$user = q("SELECT * FROM `user` WHERE `uid` = %d AND `account_expired` = 0 LIMIT 1",
intval($uid)
);
if(count($user))
$user = $user[0];
else {
logger("appnet_fetchstream: Own user not found for user ".$uid, LOGGER_DEBUG);
return;
}
$ownid = get_pconfig($uid,'appnet','ownid');
$param = array("include_annotations" => true);
$post = $app->getPost(32189565, $param);
//$post = $app->getPost(32166492, $param);
//$post = $app->getPost(32166065, $param);
//$post = $app->getPost(32161780, $param);
$postarray = appnet2_createpost($a, $uid, $post, $me, $user, $ownid, false);
print_r($postarray);
// $item = item_store($postarray);
die();
// Fetch stream
$param = array("count" => 200, "include_deleted" => false, "include_directed_posts" => true, "include_html" => false, "include_annotations" => true);
$lastid = get_pconfig($uid, 'appnet', 'laststreamid');
if ($lastid <> "")
$param["since_id"] = $lastid;
try {
$stream = $app->getUserStream($param);
}
catch (AppDotNetException $e) {
logger("appnet_fetchstream: Error fetching stream for user ".$uid);
}
$stream = array_reverse($stream);
foreach ($stream AS $post) {
$postarray = appnet_createpost($a, $uid, $post, $me, $user, $ownid, true);
$item = item_store($postarray);
logger('appnet_fetchstream: User '.$uid.' posted stream item '.$item);
$lastid = $post["id"];
if (($item != 0) AND ($postarray['contact-id'] != $me["id"])) {
$r = q("SELECT `thread`.`iid` AS `parent` FROM `thread`
INNER JOIN `item` ON `thread`.`iid` = `item`.`parent` AND `thread`.`uid` = `item`.`uid`
WHERE `item`.`id` = %d AND `thread`.`mention` LIMIT 1", dbesc($item));
if (count($r)) {
require_once('include/enotify.php');
notification(array(
'type' => NOTIFY_COMMENT,
'notify_flags' => $user['notify-flags'],
'language' => $user['language'],
'to_name' => $user['username'],
'to_email' => $user['email'],
'uid' => $user['uid'],
'item' => $postarray,
'link' => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $item,
'source_name' => $postarray['author-name'],
'source_link' => $postarray['author-link'],
'source_photo' => $postarray['author-avatar'],
'verb' => ACTIVITY_POST,
'otype' => 'item',
'parent' => $r[0]["parent"],
));
}
}
}
set_pconfig($uid, 'appnet', 'laststreamid', $lastid);
// Fetch mentions
$param = array("count" => 200, "include_deleted" => false, "include_directed_posts" => true, "include_html" => false, "include_annotations" => true);
$lastid = get_pconfig($uid, 'appnet', 'lastmentionid');
if ($lastid <> "")
$param["since_id"] = $lastid;
try {
$mentions = $app->getUserMentions("me", $param);
}
catch (AppDotNetException $e) {
logger("appnet_fetchstream: Error fetching mentions for user ".$uid);
}
$mentions = array_reverse($mentions);
foreach ($mentions AS $post) {
$postarray = appnet_createpost($a, $uid, $post, $me, $user, $ownid, false);
if (isset($postarray["id"]))
$item = $postarray["id"];
elseif (isset($postarray["body"])) {
$item = item_store($postarray);
logger('appnet_fetchstream: User '.$uid.' posted mention item '.$item);
} else
$item = 0;
$lastid = $post["id"];
if ($item != 0) {
require_once('include/enotify.php');
notification(array(
'type' => NOTIFY_TAGSELF,
'notify_flags' => $user['notify-flags'],
'language' => $user['language'],
'to_name' => $user['username'],
'to_email' => $user['email'],
'uid' => $user['uid'],
'item' => $postarray,
'link' => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $item,
'source_name' => $postarray['author-name'],
'source_link' => $postarray['author-link'],
'source_photo' => $postarray['author-avatar'],
'verb' => ACTIVITY_TAG,
'otype' => 'item'
));
}
}
set_pconfig($uid, 'appnet', 'lastmentionid', $lastid);
/* To-Do
$param = array("interaction_actions" => "star");
$interactions = $app->getMyInteractions($param);
foreach ($interactions AS $interaction)
appnet_dolike($a, $uid, $interaction);
*/
}
function appnet2_createpost($a, $uid, $post, $me, $user, $ownid, $createuser, $threadcompletion = true) {
require_once('include/items.php');
if ($post["machine_only"])
return;
if ($post["is_deleted"])
return;
$postarray = array();
$postarray['gravity'] = 0;
$postarray['uid'] = $uid;
$postarray['wall'] = 0;
$postarray['verb'] = ACTIVITY_POST;
$postarray['network'] = dbesc(NETWORK_APPNET);
$postarray['uri'] = "adn::".$post["id"];
$r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
dbesc($postarray['uri']),
intval($uid)
);
// if (count($r))
// return($r[0]);
$r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
dbesc($postarray['uri']),
intval($uid)
);
// if (count($r))
// return($r[0]);
$postarray['parent-uri'] = "adn::".$post["thread_id"];
if (isset($post["reply_to"]) AND ($post["reply_to"] != "")) {
$postarray['thr-parent'] = "adn::".$post["reply_to"];
// Complete the thread if the parent doesn't exists
if ($threadcompletion) {
$r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
dbesc($postarray['thr-parent']),
intval($uid)
);
if (!count($r)) {
require_once("addon/appnet/AppDotNet.php");
$token = get_pconfig($uid,'appnet','token');
$clientId = get_pconfig($uid,'appnet','clientid');
$clientSecret = get_pconfig($uid,'appnet','clientsecret');
$app = new AppDotNet($clientId, $clientSecret);
$app->setAccessToken($token);
$param = array("count" => 200, "include_deleted" => false, "include_directed_posts" => true, "include_html" => false, "include_annotations" => true);
try {
$thread = $app->getPostReplies($post["thread_id"], $param);
}
catch (AppDotNetException $e) {
logger("appnet_createpost: Error fetching thread for user ".$uid);
}
$thread = array_reverse($thread);
foreach ($thread AS $tpost) {
$threadpost = appnet2_createpost($a, $uid, $tpost, $me, $user, $ownid, $createuser, false);
$item = item_store($threadpost);
}
}
}
} else
$postarray['thr-parent'] = $postarray['uri'];
$postarray['plink'] = $post["canonical_url"];
if ($post["user"]["id"] != $ownid) {
$postarray['owner-name'] = $post["user"]["name"];
$postarray['owner-link'] = $post["user"]["canonical_url"];
$postarray['owner-avatar'] = $post["user"]["avatar_image"]["url"];
$postarray['contact-id'] = appnet_fetchcontact($a, $uid, $post["user"], $me, $createuser);
} else {
$postarray['owner-name'] = $me["name"];
$postarray['owner-link'] = $me["url"];
$postarray['owner-avatar'] = $me["thumb"];
$postarray['contact-id'] = $me["id"];
}
$links = array();
if (is_array($post["repost_of"])) {
$postarray['author-name'] = $post["repost_of"]["user"]["name"];
$postarray['author-link'] = $post["repost_of"]["user"]["canonical_url"];
$postarray['author-avatar'] = $post["repost_of"]["user"]["avatar_image"]["url"];
$content = $post["repost_of"];
} else {
$postarray['author-name'] = $postarray['owner-name'];
$postarray['author-link'] = $postarray['owner-link'];
$postarray['author-avatar'] = $postarray['owner-avatar'];
$content = $post;
}
if (is_array($content["entities"])) {
$converted = appnet_expand_entities($a, $content["text"], $content["entities"]);
$postarray['body'] = $converted["body"];
$postarray['tag'] = $converted["tags"];
} else
$postarray['body'] = $content["text"];
if (is_array($content["annotations"]))
$postarray['body'] = appnet_expand_annotations($a, $postarray['body'], $content["annotations"]);
if (sizeof($content["entities"]["links"]))
foreach($content["entities"]["links"] AS $link) {
$url = normalise_link($link["url"]);
$links[$url] = $url;
}
if (sizeof($content["annotations"]))
foreach($content["annotations"] AS $annotation) {
if (isset($annotation["value"]["embeddable_url"])) {
$url = normalise_link($annotation["value"]["embeddable_url"]);
if (isset($links[$url]))
unset($links[$url]);
}
}
if (sizeof($links)) {
$link = array_pop($links);
$url = "[url=".$link."]".$link."[/url]";
$removedlink = trim(str_replace($url, "", $postarray['body']));
if (($removedlink == "") OR strstr($postarray['body'], $removedlink))
$postarray['body'] = $removedlink;
$postarray['body'] .= add_page_info($link);
}
$postarray['created'] = datetime_convert('UTC','UTC',$post["created_at"]);
$postarray['edited'] = datetime_convert('UTC','UTC',$post["created_at"]);
$postarray['app'] = $post["source"]["name"];
return($postarray);
//print_r($postarray);
//print_r($post);
}
function appnet_expand_entities($a, $body, $entities) {
if (!function_exists('substr_unicode')) {
function substr_unicode($str, $s, $l = null) {
return join("", array_slice(
preg_split("//u", $str, -1, PREG_SPLIT_NO_EMPTY), $s, $l));
}
}
$tags_arr = array();
$replace = array();
foreach ($entities["mentions"] AS $mention) {
$url = "@[url=https://alpha.app.net/".rawurlencode($mention["name"])."]".$mention["name"]."[/url]";
$tags_arr["@".$mention["name"]] = $url;
$replace[$mention["pos"]] = array("pos"=> $mention["pos"], "len"=> $mention["len"], "replace"=> $url);
}
foreach ($entities["hashtags"] AS $hashtag) {
$url = "#[url=".$a->get_baseurl()."/search?tag=".rawurlencode($hashtag["name"])."]".$hashtag["name"]."[/url]";
$tags_arr["#".$hashtag["name"]] = $url;
$replace[$hashtag["pos"]] = array("pos"=> $hashtag["pos"], "len"=> $hashtag["len"], "replace"=> $url);
}
foreach ($entities["links"] AS $links) {
$url = "[url=".$links["url"]."]".$links["text"]."[/url]";
$replace[$links["pos"]] = array("pos"=> $links["pos"], "len"=> $links["len"], "replace"=> $url);
}
if (sizeof($replace)) {
krsort($replace);
foreach ($replace AS $entity) {
$pre = substr_unicode($body, 0, $entity["pos"]);
$post = substr_unicode($body, $entity["pos"] + $entity["len"]);
$body = $pre.$entity["replace"].$post;
}
}
return(array("body" => $body, "tags" => implode($tags_arr, ",")));
}
function appnet_expand_annotations($a, $body, $annotations) {
foreach ($annotations AS $annotation) {
if ($annotation["value"]["type"] == "photo") {
if (($annotation["value"]["thumbnail_large_url"] != "") AND ($annotation["value"]["url"] != ""))
$body .= "\n[url=".$annotation["value"]["url"]."][img]".$annotation["value"]["thumbnail_large_url"]."[/img][/url]";
elseif ($annotation["value"]["url"] != "")
$body .= "\n[img]".$annotation["value"]["url"]."[/img]";
}
}
return $body;
}
function appnet_fetchcontact($a, $uid, $contact, $me, $create_user) {
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
intval($uid), dbesc("adn::".$contact["id"]));
if(!count($r) AND !$create_user)
return($me);
if (count($r) AND ($r[0]["readonly"] OR $r[0]["blocked"])) {
logger("appnet_fetchcontact: Contact '".$r[0]["nick"]."' is blocked or readonly.", LOGGER_DEBUG);
return(-1);
}
if(!count($r)) {
// create contact record
q("INSERT INTO `contact` (`uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
`name`, `nick`, `photo`, `network`, `rel`, `priority`,
`writable`, `blocked`, `readonly`, `pending` )
VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, 0, 0, 0 ) ",
intval($uid),
dbesc(datetime_convert()),
dbesc($contact["canonical_url"]),
dbesc(normalise_link($contact["canonical_url"])),
dbesc($contact["username"]."@app.net"),
dbesc("adn::".$contact["id"]),
dbesc(''),
dbesc("adn::".$contact["id"]),
dbesc($contact["name"]),
dbesc($contact["username"]),
dbesc($contact["avatar_image"]["url"]),
dbesc(NETWORK_APPNET),
intval(CONTACT_IS_FRIEND),
intval(1),
intval(1)
);
$r = q("SELECT * FROM `contact` WHERE `alias` = '%s' AND `uid` = %d LIMIT 1",
dbesc("adn::".$contact["id"]),
intval($uid)
);
if(! count($r))
return(false);
$contact_id = $r[0]['id'];
$g = q("SELECT def_gid FROM user WHERE uid = %d LIMIT 1",
intval($uid)
);
if($g && intval($g[0]['def_gid'])) {
require_once('include/group.php');
group_add_member($uid,'',$contact_id,$g[0]['def_gid']);
}
require_once("Photo.php");
$photos = import_profile_photo($contact["avatar_image"]["url"],$uid,$contact_id);
q("UPDATE `contact` SET `photo` = '%s',
`thumb` = '%s',
`micro` = '%s',
`name-date` = '%s',
`uri-date` = '%s',
`avatar-date` = '%s'
WHERE `id` = %d",
dbesc($photos[0]),
dbesc($photos[1]),
dbesc($photos[2]),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
intval($contact_id)
);
} else {
// update profile photos once every two weeks as we have no notification of when they change.
//$update_photo = (($r[0]['avatar-date'] < datetime_convert('','','now -2 days')) ? true : false);
$update_photo = ($r[0]['avatar-date'] < datetime_convert('','','now -12 hours'));
// check that we have all the photos, this has been known to fail on occasion
if((! $r[0]['photo']) || (! $r[0]['thumb']) || (! $r[0]['micro']) || ($update_photo)) {
logger("appnet_fetchcontact: Updating contact ".$contact["username"], LOGGER_DEBUG);
require_once("Photo.php");
$photos = import_profile_photo($contact["avatar_image"]["url"], $uid, $r[0]['id']);
q("UPDATE `contact` SET `photo` = '%s',
`thumb` = '%s',
`micro` = '%s',
`name-date` = '%s',
`uri-date` = '%s',
`avatar-date` = '%s',
`url` = '%s',
`nurl` = '%s',
`addr` = '%s',
`name` = '%s',
`nick` = '%s'
WHERE `id` = %d",
dbesc($photos[0]),
dbesc($photos[1]),
dbesc($photos[2]),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc($contact["canonical_url"]),
dbesc(normalise_link($contact["canonical_url"])),
dbesc($contact["username"]."@app.net"),
dbesc($contact["username"]),
dbesc($contact["name"]),
intval($r[0]['id'])
);
}
}
return($r[0]["id"]);
}
// starPost
// unstarPost
// repost
// deleteRepost

View file

@ -0,0 +1,3 @@
{{include file="field_input.tpl" field=$clientid}}
{{include file="field_input.tpl" field=$clientsecret}}
<div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div>

256
appnet/test.php Normal file
View file

@ -0,0 +1,256 @@
<?php
/*
To-Do:
*/
require_once("boot.php");
if(@is_null($a)) {
$a = new App;
}
@include(".htconfig.php");
require_once("dba.php");
dba::connect($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
$a->set_baseurl(get_config('system','url'));
require_once("addon/appnet/appnet.php");
require_once("include/plaintext.php");
$b['uid'] = 1;
$token = get_pconfig($b['uid'],'appnet','token');
require_once 'addon/appnet/AppDotNet.php';
$clientId = get_pconfig($b["uid"],'appnet','clientid');
$clientSecret = get_pconfig($b["uid"],'appnet','clientsecret');
$app = new AppDotNet($clientId, $clientSecret);
$app->setAccessToken($token);
//$param = array("include_annotations" => true);
//$param = array("include_muted" => true, "include_directed_posts" => true);
$param = array("include_muted" => true, "include_deleted" => false, "include_directed_posts" => true,
"include_html" => false, "include_post_annotations" => true);
//$param = array("include_post_annotations" => true, "include_muted" => true, "include_directed_posts" => true);
//$post = $app->getPost(37154801, $param);
$post = $app->getPost(37189594, $param);
//$post = $app->getPost(36892980, $param);
//$post = $app->getPost(36837961, $param);
//$post = $app->getPost(36843534, $param);
print_r($post);
die();
$r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
intval($b['uid']));
if(count($r))
$me = $r[0];
$ownid = get_pconfig($b['uid'],'appnet','ownid');
$user = q("SELECT * FROM `user` WHERE `uid` = %d AND `account_expired` = 0 LIMIT 1",
intval($b['uid'])
);
if(count($user))
$user = $user[0];
$test = appnet_createpost($a, $b['uid'], $post, $me, $user, $ownid, true, false, true);
print_r($test);
die();
/*
$recycle = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
$post = "♲ AdoraBelle (_Adora_Belle_@twitter.com): They are a little tied up... *rofl* @Shysarah2009 @AldiCustCare";
$post = str_replace($recycle, ">> ", $post);
//$post = preg_replace("=".$recycle." (.*) \((.*)@(.*)\)=ism", ">> $1 ($2@$3)", $ppost);
//$post = preg_replace("=".$recycle."(.*)=ism", ">> $1", $ppost);
die($post);
*/
$b["uid"] = 1;
$b["plink"] = "https://pirati.ca/display/heluecht/2834617";
//$b["title"] = "Wenn sich Microsoft per Telefon meldet, sollte man stutzig werden.";
// Image
$b["body"] = "Nur ein kleiner Test, bitte ignorieren. (wird sowieso sofort wieder gelöscht)
[url=https://lh3.googleusercontent.com/-5J1tGHGvELQ/U2EL_6RuAHI/AAAAAAAAX5U/71dlHNFUjXw/30.04.14%2B-%2B1][img=479x640]https://lh3.googleusercontent.com/-5J1tGHGvELQ/U2EL_6RuAHI/AAAAAAAAX5U/71dlHNFUjXw/w506-h750/30.04.14%2B-%2B1[/img]
[/url]";
/*
$b["body"] = "Übrigens: Früher #[url=http://www.dabo.de]war[/url] alles besser.
[bookmark=https://www.youtube.com/watch?v=-8yF9zqlpR4]SALTATIO MORTIS - Früher war alles besser | Napalm Records[/bookmark]";
*/
$b["body"] = "Umfrageergebnisse aus der [url=http://www.heise.de]Hölle.[/url] In [url=http://www.heise.de]Deutschland[/url] wäre das Ergebnis sicherlich ähnlich.
[class=type-link][bookmark=http://www.zeit.de/gesellschaft/zeitgeschehen/2014-05/oesterreich-studie-fuehrer]Studie: Ein Drittel der Österreicher will einen starken Führer[/bookmark]
[img]http://images.zeit.de/politik/ausland/2014-05/oesterreich-umfrage/oesterreich-umfrage-540x304.jpg[/img]
[quote]Wahlen? Parlament? Nicht so wichtig, sagen viele Österreicher laut einer Umfrage. Sie wollen einen Führer, der sich um Demokratie nicht kümmern muss.[/quote]
[/class]";
$b['postopts'] = "appnet";
/*
$b["body"] = "Dies ist ein Testposting, dass wieder gelöscht werden wird.";
*/
$b["body"] = "\"This is the end ...\"
[url=https://pirati.ca/photos/heluecht/image/4ccfc897bf2ab350e0fcce93078365f5][img]https://pirati.ca/photo/4ccfc897bf2ab350e0fcce93078365f5-2.jpg[/img][/url]";
$b["body"] = "[share author='Lukas' profile='https://alpha.app.net/phasenkasper' avatar='https://d2rfichhc2fb9n.cloudfront.net/image/5/1kT9xKMb9JyBVTCBnDHEaHLRUnd7InMiOiJzMyIsImIiOiJhZG4tdXNlci1hc3NldHMiLCJrIjoiYXNzZXRzL3VzZXIvZjkvM2EvNjAvZjkzYTYwMDAwMDAwMDAwMC5wbmciLCJvIjoiIn0' link='https://alpha.app.net/phasenkasper/post/32422435' posted='2014-06-12 11:42:18']
Ich bin immer wieder begeistern wie toll mein Windows läuft. [url=https://photos.app.net/32422435/1]photos.app.net/32422435/1[/url]
[img]https://files.app.net/1/1304673/aHwho5GfB2iXEXGGET4V3lOZVUZ5gyfFNI_CChgQ_iHYTs9sooUCIIMa3MPjLx4DHeFm3qCqEyIlo3ucFM2GDgr5SAHhJcXplNPqYGCzBxx4WP0rKxQAY65YE_tgBTaaxR5f6yMM3RzMBV6ooSH0y6zEmF0yRc6EEgn1WFaddqrSRb5XzT8ThiIspzQOy9b6m[/img][/share]";
$b["body"] = "Ein A380 ist jetzt nicht unbedingt das unwendigste Flugzeug, habe ich das Gefühl.
[share author='Javier Salgado' profile='https://plus.google.com/101295635357824725690' avatar='https://lh6.googleusercontent.com/-uE1alnITTco/AAAAAAAAAAI/AAAAAAAAAcc/jXjCG51oQfg/photo.jpg?sz=50' link='https://plus.google.com/101295635357824725690/posts/CjLEs9pSWFV']Unbelievable Airbus A380 vertical Take-off + Amaz…: http://youtu.be/RJxnwF-MPi0
[class=type-video][bookmark=http://youtu.be/RJxnwF-MPi0]Unbelievable Airbus A380 vertical Take-off + Amazing Air Show ( HD ) Paris Air show 2013[/bookmark]
[/class][/share]";
/*
require_once("include/plaintext.php");
$post = plaintext($a, $b, 256, false, 6);
print_r($post);
die();
*/
/*
$url = "https://pirati.ca/photos/heluecht/image/54d898d7e1a8e9ba032a5fa352f51862";
require_once("mod/parse_url.php");
$data = parseurl_getsiteinfo($url, true);
print_r($data);
die();
*/
//$id = 3949352;
$id = 3949512;
$r = q("SELECT * FROM `item` WHERE `id` = %d", intval($id));
$b = $r[0];
$b['postopts'] = "appnet";
//$data = get_attached_data($b["body"]);
//print_r($data);
$post = plaintext($a, $b, 256, false, 6);
print_r($post);
$data = appnet_create_entities($a, $b, $post);
print_r($data);
die();
appnet_send($a, $b);
die();
$token = get_pconfig($b['uid'],'appnet','token');
require_once 'addon/appnet/AppDotNet.php';
$clientId = get_pconfig($b["uid"],'appnet','clientid');
$clientSecret = get_pconfig($b["uid"],'appnet','clientsecret');
$app = new AppDotNet($clientId, $clientSecret);
$app->setAccessToken($token);
//$param = array("include_annotations" => true);
$param = array("include_muted" => true, "include_directed_posts" => true);
//$param = array("include_post_annotations" => true, "include_muted" => true, "include_directed_posts" => true);
//$post = $app->getPost(32236571, $param);
//$post = $app->getPost(32237235, $param);
//$post = $app->getPost(32217767, $param);
//$post = $app->getPost(32203349, $param);
//$post = $app->getPost(32239275, $param);
//$post = $app->getPost(32261367, $param);
//$post = $app->getPost(32306954, $param);
$post = $app->getPost(32926285, $param);
print_r($post);
die();
$lastid = @file_get_contents("addon/appnet/lastid.txt");
$clients = @file_get_contents("addon/appnet/clients.txt");
$users = @file_get_contents("addon/appnet/users.txt");
if ($lastid != "")
$param["since_id"] = $lastid;
$posts = $app->getPublicPosts($param);
foreach ($posts AS $post) {
$lastid = $post["id"];
if ((count($post["entities"]["mentions"]) == 0) AND !strstr($clients, $post["source"]["client_id"]))
continue;
if ((count($post["entities"]["mentions"]) > 0) AND !strstr($clients, $post["source"]["client_id"]))
$clients .= $post["source"]["client_id"]." - ".$post["source"]["link"]." - ".$post["source"]["name"]."\n";
if (!strstr($userss, $post["user"]["canonical_url"]))
$users .= $post["user"]["canonical_url"]." - ".$post["user"]["username"]."\n";
echo $post["source"]["link"]." ".$post["source"]["name"]."\n";
echo $post["user"]["username"]."\n";
echo $post["text"]."\n";
//print_r($post["entities"]["mentions"]);
echo $post["id"]."\n";
echo "---------------------------------\n";
}
file_put_contents("addon/appnet/lastid.txt", $lastid);
file_put_contents("addon/appnet/clients.txt", $clients);
file_put_contents("addon/appnet/users.txt", $users);
/*
try {
$post = $app->getPost(323069541111, $param);
}
catch (AppDotNetException $e) {
print_r(appnet_error($e->getMessage()));
}
*/
//print_r($post);
die();
$data = array();
$data["annotations"][] = array(
"type" => "net.app.core.crosspost",
"value" => array(
"canonical_url" => $b["plink"]
)
);
$data["annotations"][] = array(
"type" => "com.friendica.post",
"value" => array(
"raw" => $b["body2"]
)
);
$ret = $app->createPost($b["body"], $data);
print_r($ret);

254
appnet/test/ADNRecipes.php Normal file
View file

@ -0,0 +1,254 @@
<?php
/**
* ADNRecipes.php
* App.net PHP library
* https://github.com/jdolitsky/AppDotNetPHP
*
* This class contains some simple recipes for publishing to App.net.
*/
require_once "AppDotNet.php";
class ADNRecipe {
protected $_adn = null;
public function __construct() {
$this->_adn = new AppDotNet(null, null);
}
public function setAccessToken($access_token) {
$this->_adn->setAccessToken($access_token);
}
}
class ADNBroadcastMessageBuilder extends ADNRecipe {
// stores the channel ID for this message
private $_channel_id = null;
// stores the headline
private $_headline = null;
// stores the body text
private $_text = null;
// should we parse markdown links?
private $_parseMarkdownLinks = false;
// should we parse URLs out of the text body?
private $_parseLinks = false;
// stores the read more link
private $_readMoreLink = null;
// stores the photo filename
private $_photo = null;
// stores the attachment filename
private $_attachment = null;
/**
* Sets the destination channel ID. Required.
* @param string $channel_id The App.net Channel ID to send to. Get this
* from the web publisher tools if you don't have one.
*/
public function setChannelID($channel_id) {
$this->_channel_id = $channel_id;
return $this;
}
public function getChannelID() {
return $this->_channel_id;
}
/**
* Sets the broadcast headline. This string shows up in the push
* notifications which are sent to mobile apps, and is the title
* displayed in the UI.
* @param string $headline A short string for a headline.
*/
public function setHeadline($headline) {
$this->_headline = $headline;
return $this;
}
public function getHeadline() {
return $this->_headline;
}
/**
* Sets the broadcast text. This string shows up as a description
* on the broadcast detail page and in the "card" view in the
* mobile apps. Can contain links.
* @param string $text Broadcast body text.
*/
public function setText($text) {
$this->_text = $text;
return $this;
}
public function getText() {
return $this->_text;
}
/**
* Sets a flag which allows links to be parsed out of body text in
* [Markdown](http://daringfireball.net/projects/markdown/)
* format.
* @param bool $parseMarkdownLinks Parse markdown links.
*/
public function setParseMarkdownLinks($parseMarkdownLinks) {
$this->_parseMarkdownLinks = $parseMarkdownLinks;
return $this;
}
public function getParseMarkdownLinks() {
return $this->_parseMarkdownLinks;
}
/**
* Sets a flag which causes bare URLs in body text to be linkified.
* @param bool $parseLinks Parse links.
*/
public function setParseLinks($parseLinks) {
$this->_parseLinks = $parseLinks;
return $this;
}
public function getParseLinks() {
return $this->_parseLinks;
}
/**
* Sets the URL the broadcast should link to.
* @param string $readMoreLink Read more link URL.
*/
public function setReadMoreLink($readMoreLink) {
$this->_readMoreLink = $readMoreLink;
return $this;
}
public function getReadMoreLink() {
return $this->_readMoreLink;
}
/**
* Sets the filename of a photo associated with a broadcast.
* Probably requires the php-imagick extension. File will be
* uploaded to App.net.
* @param string $photo Photo filename.
*/
public function setPhoto($photo) {
$this->_photo = $photo;
return $this;
}
public function getPhoto() {
return $this->_photo;
}
/**
* Sets the filename of a attachment associated with a broadcast.
* File will be uploaded to App.net.
* @param string $attachment Attachment filename.
*/
public function setAttachment($attachment) {
$this->_attachment = $attachment;
return $this;
}
public function getAttachment() {
return $this->_attachment;
}
/**
* Sends the built-up broadcast.
*/
public function send() {
$parseLinks = $this->_parseLinks || $this->_parseMarkdownLinks;
$message = array(
"annotations" => array(),
"entities" => array(
"parse_links" => $parseLinks,
"parse_markdown_links" => $this->_parseMarkdownLinks,
),
);
if (isset($this->_photo)) {
$photoFile = $this->_adn->createFile($this->_photo, array(
type => "com.github.jdolitsky.appdotnetphp.photo",
));
$message["annotations"][] = array(
"type" => "net.app.core.oembed",
"value" => array(
"+net.app.core.file" => array(
"file_id" => $photoFile["id"],
"file_token" => $photoFile["file_token"],
"format" => "oembed",
),
),
);
}
if (isset($this->_attachment)) {
if (isset($this->_attachment)) {
$attachmentFile = $this->_adn->createFile($this->_attachment, array(
type => "com.github.jdolitsky.appdotnetphp.attachment",
));
$message["annotations"][] = array(
"type" => "net.app.core.oembed",
"value" => array(
"+net.app.core.file" => array(
"file_id" => $attachmentFile["id"],
"file_token" => $attachmentFile["file_token"],
"format" => "metadata",
),
),
);
}
}
if (isset($this->_text)) {
$message["text"] = $this->_text;
} else {
$message["machine_only"] = true;
}
if (isset($this->_headline)) {
$message["annotations"][] = array(
"type" => "net.app.core.broadcast.message.metadata",
"value" => array(
"subject" => $this->_headline,
),
);
}
if (isset($this->_readMoreLink)) {
$message["annotations"][] = array(
"type" => "net.app.core.crosspost",
"value" => array(
"canonical_url" => $this->_readMoreLink,
),
);
}
return $this->_adn->createMessage($this->_channel_id, $message);
}
}
?>

94
appnet/test/ConsumeStream.php Executable file
View file

@ -0,0 +1,94 @@
<?php
require_once 'AppDotNet.php';
require_once 'EZsettings.php';
$app = new AppDotNet($app_clientId,$app_clientSecret);
// You need an app token to consume the stream, get the token returned by App.net
// (this also sets the token)
$token = $app->getAppAccessToken();
// getting a 400 error
// 1. first check to make sure you set your app_clientId & app_clientSecret correctly
// if that doesn't fix it, try this
// 2. It's possible you have hit your stream limit (5 stream per app)
// uncomment this to clear all the streams you've previously created
//$app->deleteAllStreams();
// create a stream
// if you already have a stream you can skip this step
// this stream is going to consume posts and stars (but not follows)
$stream = $app->createStream(array('post','star','user_follow'));
// you might want to save $stream['endpoint'] or $stream['id'] for later so
// you don't have to re-create the stream
print "stream id [".$stream['id']."]\n";
//$stream = $app->getStream(XXX);
// we need to create a callback function that will do something with posts/stars
// when they're received from the stream. This function should accept one single
// parameter that will be the php object containing the meta / data for the event.
/*
[meta] => Array
(
[timestamp] => 1352147672891
[type] => post/star/etc...
[id] => 1399341
)
// data is as you would expect it
*/
function handleEvent($event) {
global $counters;
$json=json_encode($event['data']);
$counters[$event['meta']['type']]++;
switch ($event['meta']['type']) {
case 'post':
print $event['meta']['is_deleted']?'p':'P';
break;
case 'star':
print $event['meta']['is_deleted']?'_':'*';
break;
case 'user_follow':
print $event['meta']['is_deleted']?'f':'F';
break;
case 'stream_marker':
print $event['meta']['is_deleted']?'/':'=';
break;
case 'message':
print $event['meta']['is_deleted']?'m':'M';
break;
case 'channel':
print $event['meta']['is_deleted']?'c':'C';
break;
case 'channel_subscription':
print $event['meta']['is_deleted']?'f':'F';
break;
default:
print "Unknwon type [".$event['meta']['type']."]\n";
break;
}
}
// register that function as the stream handler
$app->registerStreamFunction('handleEvent');
// open the stream for reading
$app->openStream($stream['endpoint']);
// now we want to process the stream. We have two options. If all we're doing
// in this script is processing the stream, we can just call:
// $app->processStreamForever();
// otherwise you can create a loop, and call $app->processStream($milliseconds)
// intermittently, like:
while (true) {
$counters=array('post'=>0,'star'=>0,'user_follow'=>0,'stream_marker'=>0,'message'=>0,'channel'=>0,'channel_subscription'=>0);
// now we're going to process the stream for awhile (60 seconds)
$app->processStream(60*1000000);
echo "\n";
// show some stats
echo date('H:i')." [",$counters['post'],"]posts [",$counters['star'],"]stars [",$counters['user_follow'],"]follow [",$counters['stream_marker'],"]mrkrs [",$counters['message'],"]msgs /min\n";
// then do something else...
}
?>

235
appnet/test/EZAppDotNet.php Normal file
View file

@ -0,0 +1,235 @@
<?php
/**
* EZAppDotNet.php
* Class for easy web development
* https://github.com/jdolitsky/AppDotNetPHP
*
* This class does as much of the grunt work as possible in helping you to
* access the App.net API. In theory you don't need to know anything about
* oAuth, tokens, or all the ugly details of how it works, it should "just
* work".
*
* Note this class assumes you're running a web site, and you'll be
* accessing it via a web browser (it expects to be able to do things like
* cookies and sessions). If you're not using a web browser in your App.net
* application, or you want more fine grained control over what's being
* done for you, use the included AppDotNet class, which does much
* less automatically.
*/
// comment these two lines out in production
//error_reporting(E_ALL);
//ini_set('display_errors', 1);
//require_once 'EZsettings.php';
require_once 'AppDotNet.php';
// comment this out if session is started elsewhere
//session_start();
class EZAppDotNet extends AppDotNet {
private $_callbacks = array();
private $_autoShutdownStreams = array();
public function __construct($clientId=null,$clientSecret=null) {
global $app_clientId,$app_clientSecret;
// if client id wasn't passed, and it's in the settings.php file, use it from there
if (!$clientId && isset($app_clientId)) {
// if it's still the default, warn them
if ($app_clientId == 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') {
throw new AppDotNetException('You must change the values defined in EZsettings.php');
}
$clientId = $app_clientId;
$clientSecret = $app_clientSecret;
}
// call the parent with the variables we have
parent::__construct($clientId,$clientSecret);
// set up ez streaming
$this->registerStreamFunction(array($this,'streamEZCallback'));
// make sure we cleanup/destroy any streams when we exit
register_shutdown_function(array($this,'stopStreaming'));
}
public function getAuthUrl($redirectUri=null,$scope=null) {
global $app_redirectUri,$app_scope;
if (is_null($redirectUri)) {
$redirectUri = $app_redirectUri;
}
if (is_null($scope)) {
$scope = $app_scope;
}
return parent::getAuthUrl($redirectUri,$scope);
}
// user login
public function setSession($cookie=0,$callback=null) {
if (!isset($callback)) {
global $app_redirectUri;
$cb=$app_redirectUri;
} else {
$cb=$callback;
}
// try and set the token the original way (eg: if they're logging in)
$token = $this->getAccessToken($cb);
// if that didn't work, check to see if there's an existing token stored somewhere
if (!$token) {
$token = $this->getSession();
}
$_SESSION['AppDotNetPHPAccessToken']=$token;
// if they want to stay logged in via a cookie, set the cookie
if ($token && $cookie) {
$cookie_lifetime = time()+(60*60*24*7);
setcookie('AppDotNetPHPAccessToken',$token,$cookie_lifetime);
}
return $token;
}
// check if user is logged in
public function getSession() {
// first check for cookie
if (isset($_COOKIE['AppDotNetPHPAccessToken']) && $_COOKIE['AppDotNetPHPAccessToken'] != 'expired') {
$this->setAccessToken($_COOKIE['AppDotNetPHPAccessToken']);
return $_COOKIE['AppDotNetPHPAccessToken'];
}
// else check the session for the token (from a previous page load)
else if (isset($_SESSION['AppDotNetPHPAccessToken'])) {
$this->setAccessToken($_SESSION['AppDotNetPHPAccessToken']);
return $_SESSION['AppDotNetPHPAccessToken'];
}
return false;
}
// log the user out
public function deleteSession() {
// clear the session
unset($_SESSION['AppDotNetPHPAccessToken']);
// unset the cookie
setcookie('AppDotNetPHPAccessToken', null, 1);
// clear the access token
$this->setAccessToken(null);
// done!
return true;
}
/**
* Registers a callback function to be called whenever an event of a certain
* type is received from the app.net streaming API. Your function will recieve
* a PHP associative array containing an app.net object. You must register at
* least one callback function before starting to stream (otherwise your data
* would simply be discarded). You can register multiple event types and even
* multiple functions per event (just call this method as many times as needed).
* If you register multiple functions for a single event, each will be called
* every time an event of that type is received.
*
* Note you should not be doing any significant processing in your callback
* functions. Doing so could cause your scripts to fall behind the stream and
* risk getting disconnected. Ideally your callback functions should simply
* drop the data into a file or database to be collected and processed by
* another program.
* @param string $type The type of even your callback would like to recieve.
* At time of writing the possible options are 'post', 'star', 'user_follow'.
*/
public function registerStreamCallback($type,$callback) {
switch ($type) {
case 'post':
case 'star':
case 'user_follow':
if (!array_key_exists($type,$this->_callbacks)) {
$this->_callbacks[$type] = array();
}
$this->_callbacks[$type][] = $callback;
return true;
break;
default:
throw new AppDotNetException('Unknown callback type: '.$type);
}
}
/**
* This is the easy way to start streaming. Register some callback functions
* using registerCallback(), then call startStreaming(). Every time the stream
* gets sent a type of object you have a callback for, your callback function(s)
* will be called with the proper data. When your script exits the streams will
* be cleaned up (deleted).
*
* Do not use this method if you want to spread out streams across multiple
* processes or multiple servers, since the first script that exits/crashes will
* delete the streams for everyone else. Instead use createStream() and openStream().
* @return true
* @see AppDotNetStream::stopStreaming()
* @see AppDotNetStream::createStream()
* @see AppDotNetStream::openStream()
*/
public function startStreaming() {
// only listen for object types that we have registered callbacks for
if (!$this->_callbacks) {
throw new AppDotNetException('You must register at least one callback function before calling startStreaming');
}
// if there's already a stream running, don't allow another
if ($this->_currentStream) {
throw new AppDotNetException('There is already a stream being consumed, only one stream can be consumed per AppDotNetStream instance');
}
$stream = $this->createStream(array_keys($this->_callbacks));
// when the script exits, delete this stream (if it's still around)
$this->_autoShutdownStreams[] = $response['id'];
// start consuming
$this->openStream($response['id']);
return true;
}
/**
* This is the easy way to stop streaming and cleans up the no longer needed stream.
* This method will be called automatically if you started streaming using
* startStreaming().
*
* Do not use this method if you want to spread out streams across multiple
* processes or multiple servers, since it will delete the streams for everyone
* else. Instead use closeStream().
* @return true
* @see AppDotNetStream::startStreaming()
* @see AppDotNetStream::deleteStream()
* @see AppDotNetStream::closeStream()
*/
public function stopStreaming() {
$this->closeStream();
// delete any auto streams
foreach ($this->_autoShutdownStreams as $streamId) {
$this->deleteStream($streamId);
}
return true;
}
/**
* Internal function used to make your streaming easier. I hope.
*/
protected function streamEZCallback($type,$data) {
// if there are defined callbacks for this object type, then...
if (array_key_exists($type,$this->_callbacks)) {
// loop through the callbacks notifying each one in turn
foreach ($this->_callbacks[$type] as $callback) {
call_user_func($callback,$data);
}
}
}
}

View file

@ -0,0 +1,25 @@
<?php
// change these values to your own in order to use EZAppDotNet
$app_clientId = 'js4qF6UN4fwXTK87Ax9Bjf3DhEQuK5hA';
$app_clientSecret = 'Z4hsLHh82d5cQAwNVD2uZtNg3WqFxLXF';
// this must be one of the URLs defined in your App.net application settings
$app_redirectUri = 'https://pirati.ca/addon/appnetpost/appnet.php';
// An array of permissions you're requesting from the user.
// As a general rule you should only request permissions you need for your app.
// By default all permissions are commented out, meaning you'll have access
// to their basic profile only. Uncomment the ones you need.
$app_scope = array(
'basic', // See basic user info (default, required: may be given if not specified)
'stream', // Read the user's personalized stream
// 'email', // Access the user's email address
'write_post', // Post on behalf of the user
// 'follow', // Follow and unfollow other users
'public_messages', // Send and receive public messages as this user
'messages', // Send and receive public and private messages as this user
// 'update_profile', // Update a users name, images, and other profile information
// 'files', // Manage a users files. This is not needed for uploading files.
// 'export', // Export all user data (shows a warning)
);

View file

@ -0,0 +1,106 @@
<?php
/*
* login_with_buffer.php
*
* @(#) $Id: login_with_buffer.php,v 1.1 2014/03/17 09:45:08 mlemos Exp $
*
*/
/*
* Get the http.php file from http://www.phpclasses.org/httpclient
*/
require('http.php');
require('oauth_client.php');
$client = new oauth_client_class;
$client->debug = true;
$client->debug_http = true;
$client->server = '';
$client->oauth_version = '2.0';
$client->dialog_url = 'https://account.app.net/oauth/authenticate?client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&scope={SCOPE}&response_type=code&state={STATE}';
$client->access_token_url = 'https://account.app.net/oauth/access_token';
$client->redirect_uri = 'https://'.$_SERVER['HTTP_HOST'].
dirname(strtok($_SERVER['REQUEST_URI'],'?')).'/appnet.php';
$client->client_id = 'js4qF6UN4fwXTK87Ax9Bjf3DhEQuK5hA'; $application_line = __LINE__;
$client->client_secret = 'Z4hsLHh82d5cQAwNVD2uZtNg3WqFxLXF ';
if(strlen($client->client_id) == 0
|| strlen($client->client_secret) == 0)
die('Please create an application in App.net Apps page '.
'https://bufferapp.com/developers/apps/create '.
' and in the line '.$application_line.
' set the client_id to Client ID and client_secret with Client'.
' Secret');
//$client->access_token = 'AQAAAAAACzfmWzVa5o69CFJrV-fBt9PLkV9sd9_0BnnHTI02_NGvvsZDCgz-38eA5_yAgu9AwaFcUzFp0qdCj4y2svy6qUl42g';
/* API permissions
*/
$client->scope = '';
if(($success = $client->Initialize()))
{
if(($success = $client->Process()))
{
if(strlen($client->access_token))
{;
$success = $client->CallAPI(
'https://api.app.net/users/me',
'GET', array(), array('FailOnAccessError'=>true, 'RequestBody'=>true), $user);
/*
$params["text"] = "Nur ein Test";
$params["profile_ids"][] = "52b844df9db82271330000b8";
//$params["profile_ids"][] = "5280e86b5b3c91d77b0000dd";
//$params["profile_ids"][] = "52b844ed9db82271330000bc";
//$params["profile_ids"][] = "52b8463d9db822db340000e1";
$params["shorten"] = false;
$params["now"] = false;
print_r($params);
$success = $client->CallAPI(
'https://api.bufferapp.com/1/updates/create.json',
'POST', $params, array('FailOnAccessError'=>true, 'RequestContentType'=>'application/json'), $user);
*/
}
}
$success = $client->Finalize($success);
}
if($client->exit)
exit;
if($success)
{
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>App.net OAuth client results</title>
</head>
<body>
<?php
echo '<h1>', HtmlSpecialChars($user->name),
' you have logged in successfully with App.net!</h1>';
echo '<pre>', HtmlSpecialChars(print_r($user, 1)), '</pre>';
?>
</body>
</html>
<?php
}
else
{
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>OAuth client error</title>
</head>
<body>
<h1>OAuth client error</h1>
<pre>Error: <?php echo HtmlSpecialChars($client->error); ?></pre>
</body>
</html>
<?php
}
?>

2122
appnet/test/backup/http.php Normal file
View file

@ -0,0 +1,2122 @@
<?php
/*
* http.php
*
* @(#) $Header: /opt2/ena/metal/http/http.php,v 1.91 2013/07/14 13:21:38 mlemos Exp $
*
*/
define('HTTP_CLIENT_ERROR_UNSPECIFIED_ERROR', -1);
define('HTTP_CLIENT_ERROR_NO_ERROR', 0);
define('HTTP_CLIENT_ERROR_INVALID_SERVER_ADDRESS', 1);
define('HTTP_CLIENT_ERROR_CANNOT_CONNECT', 2);
define('HTTP_CLIENT_ERROR_COMMUNICATION_FAILURE', 3);
define('HTTP_CLIENT_ERROR_CANNOT_ACCESS_LOCAL_FILE', 4);
define('HTTP_CLIENT_ERROR_PROTOCOL_FAILURE', 5);
define('HTTP_CLIENT_ERROR_INVALID_PARAMETERS', 6);
class http_class
{
var $host_name="";
var $host_port=0;
var $proxy_host_name="";
var $proxy_host_port=80;
var $socks_host_name = '';
var $socks_host_port = 1080;
var $socks_version = '5';
var $protocol="http";
var $request_method="GET";
var $user_agent='httpclient (http://www.phpclasses.org/httpclient $Revision: 1.91 $)';
var $accept='';
var $authentication_mechanism="";
var $user;
var $password;
var $realm;
var $workstation;
var $proxy_authentication_mechanism="";
var $proxy_user;
var $proxy_password;
var $proxy_realm;
var $proxy_workstation;
var $request_uri="";
var $request="";
var $request_headers=array();
var $request_user;
var $request_password;
var $request_realm;
var $request_workstation;
var $proxy_request_user;
var $proxy_request_password;
var $proxy_request_realm;
var $proxy_request_workstation;
var $request_body="";
var $request_arguments=array();
var $protocol_version="1.1";
var $timeout=0;
var $data_timeout=0;
var $debug=0;
var $log_debug=0;
var $debug_response_body=1;
var $html_debug=0;
var $support_cookies=1;
var $cookies=array();
var $error="";
var $error_code = HTTP_CLIENT_ERROR_NO_ERROR;
var $exclude_address="";
var $follow_redirect=0;
var $redirection_limit=5;
var $response_status="";
var $response_message="";
var $file_buffer_length=8000;
var $force_multipart_form_post=0;
var $prefer_curl = 0;
var $keep_alive = 1;
var $sasl_authenticate = 1;
/* private variables - DO NOT ACCESS */
var $state="Disconnected";
var $use_curl=0;
var $connection=0;
var $content_length=0;
var $response="";
var $read_response=0;
var $read_length=0;
var $request_host="";
var $next_token="";
var $redirection_level=0;
var $chunked=0;
var $remaining_chunk=0;
var $last_chunk_read=0;
var $months=array(
"Jan"=>"01",
"Feb"=>"02",
"Mar"=>"03",
"Apr"=>"04",
"May"=>"05",
"Jun"=>"06",
"Jul"=>"07",
"Aug"=>"08",
"Sep"=>"09",
"Oct"=>"10",
"Nov"=>"11",
"Dec"=>"12");
var $session='';
var $connection_close=0;
var $force_close = 0;
var $connected_host = '';
var $connected_port = -1;
var $connected_ssl = 0;
/* Private methods - DO NOT CALL */
Function Tokenize($string,$separator="")
{
if(!strcmp($separator,""))
{
$separator=$string;
$string=$this->next_token;
}
for($character=0;$character<strlen($separator);$character++)
{
if(GetType($position=strpos($string,$separator[$character]))=="integer")
$found=(IsSet($found) ? min($found,$position) : $position);
}
if(IsSet($found))
{
$this->next_token=substr($string,$found+1);
return(substr($string,0,$found));
}
else
{
$this->next_token="";
return($string);
}
}
Function CookieEncode($value, $name)
{
return($name ? str_replace("=", "%25", $value) : str_replace(";", "%3B", $value));
}
Function SetError($error, $error_code = HTTP_CLIENT_ERROR_UNSPECIFIED_ERROR)
{
$this->error_code = $error_code;
return($this->error=$error);
}
Function SetPHPError($error, &$php_error_message, $error_code = HTTP_CLIENT_ERROR_UNSPECIFIED_ERROR)
{
if(IsSet($php_error_message)
&& strlen($php_error_message))
$error.=": ".$php_error_message;
return($this->SetError($error, $error_code));
}
Function SetDataAccessError($error,$check_connection=0)
{
$this->error=$error;
$this->error_code = HTTP_CLIENT_ERROR_COMMUNICATION_FAILURE;
if(!$this->use_curl
&& function_exists("socket_get_status"))
{
$status=socket_get_status($this->connection);
if($status["timed_out"])
$this->error.=": data access time out";
elseif($status["eof"])
{
if($check_connection)
$this->error="";
else
$this->error.=": the server disconnected";
}
}
}
Function OutputDebug($message)
{
if($this->log_debug)
error_log($message);
else
{
$message.="\n";
if($this->html_debug)
$message=str_replace("\n","<br />\n",HtmlEntities($message));
echo $message;
flush();
}
}
Function GetLine()
{
for($line="";;)
{
if($this->use_curl)
{
$eol=strpos($this->response,"\n",$this->read_response);
$data=($eol ? substr($this->response,$this->read_response,$eol+1-$this->read_response) : "");
$this->read_response+=strlen($data);
}
else
{
if(feof($this->connection))
{
$this->SetDataAccessError("reached the end of data while reading from the HTTP server connection");
return(0);
}
$data=fgets($this->connection,100);
}
if(GetType($data)!="string"
|| strlen($data)==0)
{
$this->SetDataAccessError("it was not possible to read line from the HTTP server");
return(0);
}
$line.=$data;
$length=strlen($line);
if($length
&& !strcmp(substr($line,$length-1,1),"\n"))
{
$length-=(($length>=2 && !strcmp(substr($line,$length-2,1),"\r")) ? 2 : 1);
$line=substr($line,0,$length);
if($this->debug)
$this->OutputDebug("S $line");
return($line);
}
}
}
Function PutLine($line)
{
if($this->debug)
$this->OutputDebug("C $line");
if(!fputs($this->connection,$line."\r\n"))
{
$this->SetDataAccessError("it was not possible to send a line to the HTTP server");
return(0);
}
return(1);
}
Function PutData($data)
{
if(strlen($data))
{
if($this->debug)
$this->OutputDebug('C '.$data);
if(!fputs($this->connection,$data))
{
$this->SetDataAccessError("it was not possible to send data to the HTTP server");
return(0);
}
}
return(1);
}
Function FlushData()
{
if(!fflush($this->connection))
{
$this->SetDataAccessError("it was not possible to send data to the HTTP server");
return(0);
}
return(1);
}
Function ReadChunkSize()
{
if($this->remaining_chunk==0)
{
$debug=$this->debug;
if(!$this->debug_response_body)
$this->debug=0;
$line=$this->GetLine();
$this->debug=$debug;
if(GetType($line)!="string")
return($this->SetError("could not read chunk start: ".$this->error, $this->error_code));
$this->remaining_chunk=hexdec($line);
if($this->remaining_chunk == 0)
{
if(!$this->debug_response_body)
$this->debug=0;
$line=$this->GetLine();
$this->debug=$debug;
if(GetType($line)!="string")
return($this->SetError("could not read chunk end: ".$this->error, $this->error_code));
}
}
return("");
}
Function ReadBytes($length)
{
if($this->use_curl)
{
$bytes=substr($this->response,$this->read_response,min($length,strlen($this->response)-$this->read_response));
$this->read_response+=strlen($bytes);
if($this->debug
&& $this->debug_response_body
&& strlen($bytes))
$this->OutputDebug("S ".$bytes);
}
else
{
if($this->chunked)
{
for($bytes="",$remaining=$length;$remaining;)
{
if(strlen($this->ReadChunkSize()))
return("");
if($this->remaining_chunk==0)
{
$this->last_chunk_read=1;
break;
}
$ask=min($this->remaining_chunk,$remaining);
$chunk=@fread($this->connection,$ask);
$read=strlen($chunk);
if($read==0)
{
$this->SetDataAccessError("it was not possible to read data chunk from the HTTP server");
return("");
}
if($this->debug
&& $this->debug_response_body)
$this->OutputDebug("S ".$chunk);
$bytes.=$chunk;
$this->remaining_chunk-=$read;
$remaining-=$read;
if($this->remaining_chunk==0)
{
if(feof($this->connection))
return($this->SetError("reached the end of data while reading the end of data chunk mark from the HTTP server", HTTP_CLIENT_ERROR_PROTOCOL_FAILURE));
$data=@fread($this->connection,2);
if(strcmp($data,"\r\n"))
{
$this->SetDataAccessError("it was not possible to read end of data chunk from the HTTP server");
return("");
}
}
}
}
else
{
$bytes=@fread($this->connection,$length);
if(strlen($bytes))
{
if($this->debug
&& $this->debug_response_body)
$this->OutputDebug("S ".$bytes);
}
else
$this->SetDataAccessError("it was not possible to read data from the HTTP server", $this->connection_close);
}
}
return($bytes);
}
Function EndOfInput()
{
if($this->use_curl)
return($this->read_response>=strlen($this->response));
if($this->chunked)
return($this->last_chunk_read);
if($this->content_length_set)
return($this->content_length <= $this->read_length);
return(feof($this->connection));
}
Function Resolve($domain, &$ip, $server_type)
{
if(preg_match('/^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$/',$domain))
$ip=$domain;
else
{
if($this->debug)
$this->OutputDebug('Resolving '.$server_type.' server domain "'.$domain.'"...');
if(!strcmp($ip=@gethostbyname($domain),$domain))
$ip="";
}
if(strlen($ip)==0
|| (strlen($this->exclude_address)
&& !strcmp(@gethostbyname($this->exclude_address),$ip)))
return($this->SetError("could not resolve the host domain \"".$domain."\"", HTTP_CLIENT_ERROR_INVALID_SERVER_ADDRESS));
return('');
}
Function Connect($host_name, $host_port, $ssl, $server_type = 'HTTP')
{
$domain=$host_name;
$port = $host_port;
if(strlen($error = $this->Resolve($domain, $ip, $server_type)))
return($error);
if(strlen($this->socks_host_name))
{
switch($this->socks_version)
{
case '4':
$version = 4;
break;
case '5':
$version = 5;
break;
default:
return('it was not specified a supported SOCKS protocol version');
break;
}
$host_ip = $ip;
$port = $this->socks_host_port;
$host_server_type = $server_type;
$server_type = 'SOCKS';
if(strlen($error = $this->Resolve($this->socks_host_name, $ip, $server_type)))
return($error);
}
if($this->debug)
$this->OutputDebug('Connecting to '.$server_type.' server IP '.$ip.' port '.$port.'...');
if($ssl)
$ip="ssl://".$host_name;
if(($this->connection=($this->timeout ? @fsockopen($ip, $port, $errno, $error, $this->timeout) : @fsockopen($ip, $port, $errno)))==0)
{
$error_code = HTTP_CLIENT_ERROR_CANNOT_CONNECT;
switch($errno)
{
case -3:
return($this->SetError("socket could not be created", $error_code));
case -4:
return($this->SetError("dns lookup on hostname \"".$host_name."\" failed", $error_code));
case -5:
return($this->SetError("connection refused or timed out", $error_code));
case -6:
return($this->SetError("fdopen() call failed", $error_code));
case -7:
return($this->SetError("setvbuf() call failed", $error_code));
default:
return($this->SetPHPError($errno." could not connect to the host \"".$host_name."\"",$php_errormsg, $error_code));
}
}
else
{
if($this->data_timeout
&& function_exists("socket_set_timeout"))
socket_set_timeout($this->connection,$this->data_timeout,0);
if(strlen($this->socks_host_name))
{
if($this->debug)
$this->OutputDebug('Connected to the SOCKS server '.$this->socks_host_name);
$send_error = 'it was not possible to send data to the SOCKS server';
$receive_error = 'it was not possible to receive data from the SOCKS server';
switch($version)
{
case 4:
$command = 1;
$user = '';
if(!fputs($this->connection, chr($version).chr($command).pack('nN', $host_port, ip2long($host_ip)).$user.Chr(0)))
$error = $this->SetDataAccessError($send_error);
else
{
$response = fgets($this->connection, 9);
if(strlen($response) != 8)
$error = $this->SetDataAccessError($receive_error);
else
{
$socks_errors = array(
"\x5a"=>'',
"\x5b"=>'request rejected',
"\x5c"=>'request failed because client is not running identd (or not reachable from the server)',
"\x5d"=>'request failed because client\'s identd could not confirm the user ID string in the request',
);
$error_code = $response[1];
$error = (IsSet($socks_errors[$error_code]) ? $socks_errors[$error_code] : 'unknown');
if(strlen($error))
$error = 'SOCKS error: '.$error;
}
}
break;
case 5:
if($this->debug)
$this->OutputDebug('Negotiating the authentication method ...');
$methods = 1;
$method = 0;
if(!fputs($this->connection, chr($version).chr($methods).chr($method)))
$error = $this->SetDataAccessError($send_error);
else
{
$response = fgets($this->connection, 3);
if(strlen($response) != 2)
$error = $this->SetDataAccessError($receive_error);
elseif(Ord($response[1]) != $method)
$error = 'the SOCKS server requires an authentication method that is not yet supported';
else
{
if($this->debug)
$this->OutputDebug('Connecting to '.$host_server_type.' server IP '.$host_ip.' port '.$host_port.'...');
$command = 1;
$address_type = 1;
if(!fputs($this->connection, chr($version).chr($command)."\x00".chr($address_type).pack('Nn', ip2long($host_ip), $host_port)))
$error = $this->SetDataAccessError($send_error);
else
{
$response = fgets($this->connection, 11);
if(strlen($response) != 10)
$error = $this->SetDataAccessError($receive_error);
else
{
$socks_errors = array(
"\x00"=>'',
"\x01"=>'general SOCKS server failure',
"\x02"=>'connection not allowed by ruleset',
"\x03"=>'Network unreachable',
"\x04"=>'Host unreachable',
"\x05"=>'Connection refused',
"\x06"=>'TTL expired',
"\x07"=>'Command not supported',
"\x08"=>'Address type not supported'
);
$error_code = $response[1];
$error = (IsSet($socks_errors[$error_code]) ? $socks_errors[$error_code] : 'unknown');
if(strlen($error))
$error = 'SOCKS error: '.$error;
}
}
}
}
break;
default:
$error = 'support for SOCKS protocol version '.$this->socks_version.' is not yet implemented';
break;
}
if(strlen($error))
{
fclose($this->connection);
return($error);
}
}
if($this->debug)
$this->OutputDebug("Connected to $host_name");
if(strlen($this->proxy_host_name)
&& !strcmp(strtolower($this->protocol), 'https'))
{
if(function_exists('stream_socket_enable_crypto')
&& in_array('ssl', stream_get_transports()))
$this->state = "ConnectedToProxy";
else
{
$this->OutputDebug("It is not possible to start SSL after connecting to the proxy server. If the proxy refuses to forward the SSL request, you may need to upgrade to PHP 5.1 or later with OpenSSL support enabled.");
$this->state="Connected";
}
}
else
$this->state="Connected";
return("");
}
}
Function Disconnect()
{
if($this->debug)
$this->OutputDebug("Disconnected from ".$this->connected_host);
if($this->use_curl)
{
curl_close($this->connection);
$this->response="";
}
else
fclose($this->connection);
$this->state="Disconnected";
return("");
}
/* Public methods */
Function GetRequestArguments($url, &$arguments)
{
$this->error = '';
$this->error_code = HTTP_CLIENT_ERROR_NO_ERROR;
$arguments=array();
$url = str_replace(' ', '%20', $url);
$parameters=@parse_url($url);
if(!$parameters)
return($this->SetError("it was not specified a valid URL", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
if(!IsSet($parameters["scheme"]))
return($this->SetError("it was not specified the protocol type argument", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
switch(strtolower($parameters["scheme"]))
{
case "http":
case "https":
$arguments["Protocol"]=$parameters["scheme"];
break;
default:
return($parameters["scheme"]." connection scheme is not yet supported");
}
if(!IsSet($parameters["host"]))
return($this->SetError("it was not specified the connection host argument", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
$arguments["HostName"]=$parameters["host"];
$arguments["Headers"]=array("Host"=>$parameters["host"].(IsSet($parameters["port"]) ? ":".$parameters["port"] : ""));
if(IsSet($parameters["user"]))
{
$arguments["AuthUser"]=UrlDecode($parameters["user"]);
if(!IsSet($parameters["pass"]))
$arguments["AuthPassword"]="";
}
if(IsSet($parameters["pass"]))
{
if(!IsSet($parameters["user"]))
$arguments["AuthUser"]="";
$arguments["AuthPassword"]=UrlDecode($parameters["pass"]);
}
if(IsSet($parameters["port"]))
{
if(strcmp($parameters["port"],strval(intval($parameters["port"]))))
return($this->SetError("it was not specified a valid connection host argument", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
$arguments["HostPort"]=intval($parameters["port"]);
}
else
$arguments["HostPort"]=0;
$arguments["RequestURI"]=(IsSet($parameters["path"]) ? $parameters["path"] : "/").(IsSet($parameters["query"]) ? "?".$parameters["query"] : "");
if(strlen($this->user_agent))
$arguments["Headers"]["User-Agent"]=$this->user_agent;
if(strlen($this->accept))
$arguments["Headers"]["Accept"]=$this->accept;
return("");
}
Function Open($arguments)
{
if(strlen($this->error))
return($this->error);
$error_code = HTTP_CLIENT_ERROR_UNSPECIFIED_ERROR;
if(IsSet($arguments["HostName"]))
$this->host_name=$arguments["HostName"];
if(IsSet($arguments["HostPort"]))
$this->host_port=$arguments["HostPort"];
if(IsSet($arguments["ProxyHostName"]))
$this->proxy_host_name=$arguments["ProxyHostName"];
if(IsSet($arguments["ProxyHostPort"]))
$this->proxy_host_port=$arguments["ProxyHostPort"];
if(IsSet($arguments["SOCKSHostName"]))
$this->socks_host_name=$arguments["SOCKSHostName"];
if(IsSet($arguments["SOCKSHostPort"]))
$this->socks_host_port=$arguments["SOCKSHostPort"];
if(IsSet($arguments["SOCKSVersion"]))
$this->socks_version=$arguments["SOCKSVersion"];
if(IsSet($arguments["Protocol"]))
$this->protocol=$arguments["Protocol"];
switch(strtolower($this->protocol))
{
case "http":
$default_port=80;
break;
case "https":
$default_port=443;
break;
default:
return($this->SetError("it was not specified a valid connection protocol", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
}
if(strlen($this->proxy_host_name)==0)
{
if(strlen($this->host_name)==0)
return($this->SetError("it was not specified a valid hostname", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
$host_name=$this->host_name;
$host_port=($this->host_port ? $this->host_port : $default_port);
$server_type = 'HTTP';
}
else
{
$host_name=$this->proxy_host_name;
$host_port=$this->proxy_host_port;
$server_type = 'HTTP proxy';
}
$ssl=(strtolower($this->protocol)=="https" && strlen($this->proxy_host_name)==0);
if($ssl
&& strlen($this->socks_host_name))
return($this->SetError('establishing SSL connections via a SOCKS server is not yet supported', HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
$this->use_curl=($ssl && $this->prefer_curl && function_exists("curl_init"));
switch($this->state)
{
case 'Connected':
if(!strcmp($host_name, $this->connected_host)
&& intval($host_port) == $this->connected_port
&& intval($ssl) == $this->connected_ssl)
{
if($this->debug)
$this->OutputDebug("Reusing connection to ".$this->connected_host);
return('');
}
if(strlen($error = $this->Disconnect()))
return($error);
case "Disconnected":
break;
default:
return("1 already connected");
}
if($this->debug)
$this->OutputDebug("Connecting to ".$this->host_name);
if($this->use_curl)
{
$error=(($this->connection=curl_init($this->protocol."://".$this->host_name.($host_port==$default_port ? "" : ":".strval($host_port))."/")) ? "" : "Could not initialize a CURL session");
if(strlen($error)==0)
{
if(IsSet($arguments["SSLCertificateFile"]))
curl_setopt($this->connection,CURLOPT_SSLCERT,$arguments["SSLCertificateFile"]);
if(IsSet($arguments["SSLCertificatePassword"]))
curl_setopt($this->connection,CURLOPT_SSLCERTPASSWD,$arguments["SSLCertificatePassword"]);
if(IsSet($arguments["SSLKeyFile"]))
curl_setopt($this->connection,CURLOPT_SSLKEY,$arguments["SSLKeyFile"]);
if(IsSet($arguments["SSLKeyPassword"]))
curl_setopt($this->connection,CURLOPT_SSLKEYPASSWD,$arguments["SSLKeyPassword"]);
}
$this->state="Connected";
}
else
{
$error="";
if(strlen($this->proxy_host_name)
&& (IsSet($arguments["SSLCertificateFile"])
|| IsSet($arguments["SSLCertificateFile"])))
$error="establishing SSL connections using certificates or private keys via non-SSL proxies is not supported";
else
{
if($ssl)
{
if(IsSet($arguments["SSLCertificateFile"]))
$error="establishing SSL connections using certificates is only supported when the cURL extension is enabled";
elseif(IsSet($arguments["SSLKeyFile"]))
$error="establishing SSL connections using a private key is only supported when the cURL extension is enabled";
else
{
$version=explode(".",function_exists("phpversion") ? phpversion() : "3.0.7");
$php_version=intval($version[0])*1000000+intval($version[1])*1000+intval($version[2]);
if($php_version<4003000)
$error="establishing SSL connections requires at least PHP version 4.3.0 or having the cURL extension enabled";
elseif(!function_exists("extension_loaded")
|| !extension_loaded("openssl"))
$error="establishing SSL connections requires the OpenSSL extension enabled";
}
}
if(strlen($error)==0)
{
$error=$this->Connect($host_name, $host_port, $ssl, $server_type);
$error_code = $this->error_code;
}
}
}
if(strlen($error))
return($this->SetError($error, $error_code));
$this->session=md5(uniqid(""));
$this->connected_host = $host_name;
$this->connected_port = intval($host_port);
$this->connected_ssl = intval($ssl);
return("");
}
Function Close($force = 0)
{
if($this->state=="Disconnected")
return("1 already disconnected");
if(!$this->force_close
&& $this->keep_alive
&& !$force
&& $this->state == 'ResponseReceived')
{
if($this->debug)
$this->OutputDebug('Keeping the connection alive to '.$this->connected_host);
$this->state = 'Connected';
return('');
}
return($this->Disconnect());
}
Function PickCookies(&$cookies,$secure)
{
if(IsSet($this->cookies[$secure]))
{
$now=gmdate("Y-m-d H-i-s");
for($domain=0,Reset($this->cookies[$secure]);$domain<count($this->cookies[$secure]);Next($this->cookies[$secure]),$domain++)
{
$domain_pattern=Key($this->cookies[$secure]);
$match=strlen($this->request_host)-strlen($domain_pattern);
if($match>=0
&& !strcmp($domain_pattern,substr($this->request_host,$match))
&& ($match==0
|| $domain_pattern[0]=="."
|| $this->request_host[$match-1]=="."))
{
for(Reset($this->cookies[$secure][$domain_pattern]),$path_part=0;$path_part<count($this->cookies[$secure][$domain_pattern]);Next($this->cookies[$secure][$domain_pattern]),$path_part++)
{
$path=Key($this->cookies[$secure][$domain_pattern]);
if(strlen($this->request_uri)>=strlen($path)
&& substr($this->request_uri,0,strlen($path))==$path)
{
for(Reset($this->cookies[$secure][$domain_pattern][$path]),$cookie=0;$cookie<count($this->cookies[$secure][$domain_pattern][$path]);Next($this->cookies[$secure][$domain_pattern][$path]),$cookie++)
{
$cookie_name=Key($this->cookies[$secure][$domain_pattern][$path]);
$expires=$this->cookies[$secure][$domain_pattern][$path][$cookie_name]["expires"];
if($expires==""
|| strcmp($now,$expires)<0)
$cookies[$cookie_name]=$this->cookies[$secure][$domain_pattern][$path][$cookie_name];
}
}
}
}
}
}
}
Function GetFileDefinition($file, &$definition)
{
$name="";
if(IsSet($file["FileName"]))
$name=basename($file["FileName"]);
if(IsSet($file["Name"]))
$name=$file["Name"];
if(strlen($name)==0)
return("it was not specified the file part name");
if(IsSet($file["Content-Type"]))
{
$content_type=$file["Content-Type"];
$type=$this->Tokenize(strtolower($content_type),"/");
$sub_type=$this->Tokenize("");
switch($type)
{
case "text":
case "image":
case "audio":
case "video":
case "application":
case "message":
break;
case "automatic":
switch($sub_type)
{
case "name":
switch(GetType($dot=strrpos($name,"."))=="integer" ? strtolower(substr($name,$dot)) : "")
{
case ".xls":
$content_type="application/excel";
break;
case ".hqx":
$content_type="application/macbinhex40";
break;
case ".doc":
case ".dot":
case ".wrd":
$content_type="application/msword";
break;
case ".pdf":
$content_type="application/pdf";
break;
case ".pgp":
$content_type="application/pgp";
break;
case ".ps":
case ".eps":
case ".ai":
$content_type="application/postscript";
break;
case ".ppt":
$content_type="application/powerpoint";
break;
case ".rtf":
$content_type="application/rtf";
break;
case ".tgz":
case ".gtar":
$content_type="application/x-gtar";
break;
case ".gz":
$content_type="application/x-gzip";
break;
case ".php":
case ".php3":
$content_type="application/x-httpd-php";
break;
case ".js":
$content_type="application/x-javascript";
break;
case ".ppd":
case ".psd":
$content_type="application/x-photoshop";
break;
case ".swf":
case ".swc":
case ".rf":
$content_type="application/x-shockwave-flash";
break;
case ".tar":
$content_type="application/x-tar";
break;
case ".zip":
$content_type="application/zip";
break;
case ".mid":
case ".midi":
case ".kar":
$content_type="audio/midi";
break;
case ".mp2":
case ".mp3":
case ".mpga":
$content_type="audio/mpeg";
break;
case ".ra":
$content_type="audio/x-realaudio";
break;
case ".wav":
$content_type="audio/wav";
break;
case ".bmp":
$content_type="image/bitmap";
break;
case ".gif":
$content_type="image/gif";
break;
case ".iff":
$content_type="image/iff";
break;
case ".jb2":
$content_type="image/jb2";
break;
case ".jpg":
case ".jpe":
case ".jpeg":
$content_type="image/jpeg";
break;
case ".jpx":
$content_type="image/jpx";
break;
case ".png":
$content_type="image/png";
break;
case ".tif":
case ".tiff":
$content_type="image/tiff";
break;
case ".wbmp":
$content_type="image/vnd.wap.wbmp";
break;
case ".xbm":
$content_type="image/xbm";
break;
case ".css":
$content_type="text/css";
break;
case ".txt":
$content_type="text/plain";
break;
case ".htm":
case ".html":
$content_type="text/html";
break;
case ".xml":
$content_type="text/xml";
break;
case ".mpg":
case ".mpe":
case ".mpeg":
$content_type="video/mpeg";
break;
case ".qt":
case ".mov":
$content_type="video/quicktime";
break;
case ".avi":
$content_type="video/x-ms-video";
break;
case ".eml":
$content_type="message/rfc822";
break;
default:
$content_type="application/octet-stream";
break;
}
break;
default:
return($content_type." is not a supported automatic content type detection method");
}
break;
default:
return($content_type." is not a supported file content type");
}
}
else
$content_type="application/octet-stream";
$definition=array(
"Content-Type"=>$content_type,
"NAME"=>$name
);
if(IsSet($file["FileName"]))
{
if(GetType($length=@filesize($file["FileName"]))!="integer")
{
$error="it was not possible to determine the length of the file ".$file["FileName"];
if(IsSet($php_errormsg)
&& strlen($php_errormsg))
$error.=": ".$php_errormsg;
if(!file_exists($file["FileName"]))
$error="it was not possible to access the file ".$file["FileName"];
return($error);
}
$definition["FILENAME"]=$file["FileName"];
$definition["Content-Length"]=$length;
}
elseif(IsSet($file["Data"]))
$definition["Content-Length"]=strlen($definition["DATA"]=$file["Data"]);
else
return("it was not specified a valid file name");
return("");
}
Function ConnectFromProxy($arguments, &$headers)
{
if(!$this->PutLine('CONNECT '.$this->host_name.':'.($this->host_port ? $this->host_port : 443).' HTTP/1.0')
|| (strlen($this->user_agent)
&& !$this->PutLine('User-Agent: '.$this->user_agent))
|| (strlen($this->accept)
&& !$this->PutLine('Accept: '.$this->accept))
|| (IsSet($arguments['Headers']['Proxy-Authorization'])
&& !$this->PutLine('Proxy-Authorization: '.$arguments['Headers']['Proxy-Authorization']))
|| !$this->PutLine(''))
{
$this->Disconnect();
return($this->error);
}
$this->state = "ConnectSent";
if(strlen($error=$this->ReadReplyHeadersResponse($headers)))
return($error);
$proxy_authorization="";
while(!strcmp($this->response_status, "100"))
{
$this->state="ConnectSent";
if(strlen($error=$this->ReadReplyHeadersResponse($headers)))
return($error);
}
switch($this->response_status)
{
case "200":
if(!@stream_socket_enable_crypto($this->connection, 1, STREAM_CRYPTO_METHOD_SSLv23_CLIENT))
{
$this->SetPHPError('it was not possible to start a SSL encrypted connection via this proxy', $php_errormsg, HTTP_CLIENT_ERROR_COMMUNICATION_FAILURE);
$this->Disconnect();
return($this->error);
}
$this->state = "Connected";
break;
case "407":
if(strlen($error=$this->Authenticate($headers, -1, $proxy_authorization, $this->proxy_request_user, $this->proxy_request_password, $this->proxy_request_realm, $this->proxy_request_workstation)))
return($error);
break;
default:
return($this->SetError("unable to send request via proxy", HTTP_CLIENT_ERROR_PROTOCOL_FAILURE));
}
return("");
}
Function SendRequest($arguments)
{
if(strlen($this->error))
return($this->error);
if(IsSet($arguments["ProxyUser"]))
$this->proxy_request_user=$arguments["ProxyUser"];
elseif(IsSet($this->proxy_user))
$this->proxy_request_user=$this->proxy_user;
if(IsSet($arguments["ProxyPassword"]))
$this->proxy_request_password=$arguments["ProxyPassword"];
elseif(IsSet($this->proxy_password))
$this->proxy_request_password=$this->proxy_password;
if(IsSet($arguments["ProxyRealm"]))
$this->proxy_request_realm=$arguments["ProxyRealm"];
elseif(IsSet($this->proxy_realm))
$this->proxy_request_realm=$this->proxy_realm;
if(IsSet($arguments["ProxyWorkstation"]))
$this->proxy_request_workstation=$arguments["ProxyWorkstation"];
elseif(IsSet($this->proxy_workstation))
$this->proxy_request_workstation=$this->proxy_workstation;
switch($this->state)
{
case "Disconnected":
return($this->SetError("connection was not yet established", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
case "Connected":
$connect = 0;
break;
case "ConnectedToProxy":
if(strlen($error = $this->ConnectFromProxy($arguments, $headers)))
return($error);
$connect = 1;
break;
default:
return($this->SetError("can not send request in the current connection state", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
}
if(IsSet($arguments["RequestMethod"]))
$this->request_method=$arguments["RequestMethod"];
if(IsSet($arguments["User-Agent"]))
$this->user_agent=$arguments["User-Agent"];
if(!IsSet($arguments["Headers"]["User-Agent"])
&& strlen($this->user_agent))
$arguments["Headers"]["User-Agent"]=$this->user_agent;
if(IsSet($arguments["KeepAlive"]))
$this->keep_alive=intval($arguments["KeepAlive"]);
if(!IsSet($arguments["Headers"]["Connection"])
&& $this->keep_alive)
$arguments["Headers"]["Connection"]='Keep-Alive';
if(IsSet($arguments["Accept"]))
$this->user_agent=$arguments["Accept"];
if(!IsSet($arguments["Headers"]["Accept"])
&& strlen($this->accept))
$arguments["Headers"]["Accept"]=$this->accept;
if(strlen($this->request_method)==0)
return($this->SetError("it was not specified a valid request method", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
if(IsSet($arguments["RequestURI"]))
$this->request_uri=$arguments["RequestURI"];
if(strlen($this->request_uri)==0
|| substr($this->request_uri,0,1)!="/")
return($this->SetError("it was not specified a valid request URI", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
$this->request_arguments=$arguments;
$this->request_headers=(IsSet($arguments["Headers"]) ? $arguments["Headers"] : array());
$body_length=0;
$this->request_body="";
$get_body=1;
if($this->request_method=="POST"
|| $this->request_method=="PUT")
{
if(IsSet($arguments['StreamRequest']))
{
$get_body = 0;
$this->request_headers["Transfer-Encoding"]="chunked";
}
elseif(IsSet($arguments["PostFiles"])
|| ($this->force_multipart_form_post
&& IsSet($arguments["PostValues"])))
{
$boundary="--".md5(uniqid(time()));
$this->request_headers["Content-Type"]="multipart/form-data; boundary=".$boundary.(IsSet($arguments["CharSet"]) ? "; charset=".$arguments["CharSet"] : "");
$post_parts=array();
if(IsSet($arguments["PostValues"]))
{
$values=$arguments["PostValues"];
if(GetType($values)!="array")
return($this->SetError("it was not specified a valid POST method values array", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
for(Reset($values),$value=0;$value<count($values);Next($values),$value++)
{
$input=Key($values);
$headers="--".$boundary."\r\nContent-Disposition: form-data; name=\"".$input."\"\r\n\r\n";
$data=$values[$input];
$post_parts[]=array("HEADERS"=>$headers,"DATA"=>$data);
$body_length+=strlen($headers)+strlen($data)+strlen("\r\n");
}
}
$body_length+=strlen("--".$boundary."--\r\n");
$files=(IsSet($arguments["PostFiles"]) ? $arguments["PostFiles"] : array());
Reset($files);
$end=(GetType($input=Key($files))!="string");
for(;!$end;)
{
if(strlen($error=$this->GetFileDefinition($files[$input],$definition)))
return("3 ".$error);
$headers="--".$boundary."\r\nContent-Disposition: form-data; name=\"".$input."\"; filename=\"".$definition["NAME"]."\"\r\nContent-Type: ".$definition["Content-Type"]."\r\n\r\n";
$part=count($post_parts);
$post_parts[$part]=array("HEADERS"=>$headers);
if(IsSet($definition["FILENAME"]))
{
$post_parts[$part]["FILENAME"]=$definition["FILENAME"];
$data="";
}
else
$data=$definition["DATA"];
$post_parts[$part]["DATA"]=$data;
$body_length+=strlen($headers)+$definition["Content-Length"]+strlen("\r\n");
Next($files);
$end=(GetType($input=Key($files))!="string");
}
$get_body=0;
}
elseif(IsSet($arguments["PostValues"]))
{
$values=$arguments["PostValues"];
if(GetType($values)!="array")
return($this->SetError("it was not specified a valid POST method values array", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
for(Reset($values),$value=0;$value<count($values);Next($values),$value++)
{
$k=Key($values);
if(GetType($values[$k])=="array")
{
for($v = 0; $v < count($values[$k]); $v++)
{
if($value+$v>0)
$this->request_body.="&";
$this->request_body.=UrlEncode($k)."=".UrlEncode($values[$k][$v]);
}
}
else
{
if($value>0)
$this->request_body.="&";
$this->request_body.=UrlEncode($k)."=".UrlEncode($values[$k]);
}
}
$this->request_headers["Content-Type"]="application/x-www-form-urlencoded".(IsSet($arguments["CharSet"]) ? "; charset=".$arguments["CharSet"] : "");
$get_body=0;
}
}
if($get_body
&& (IsSet($arguments["Body"])
|| IsSet($arguments["BodyStream"])))
{
if(IsSet($arguments["Body"]))
$this->request_body=$arguments["Body"];
else
{
$stream=$arguments["BodyStream"];
$this->request_body="";
for($part=0; $part<count($stream); $part++)
{
if(IsSet($stream[$part]["Data"]))
$this->request_body.=$stream[$part]["Data"];
elseif(IsSet($stream[$part]["File"]))
{
if(!($file=@fopen($stream[$part]["File"],"rb")))
return($this->SetPHPError("could not open upload file ".$stream[$part]["File"], $php_errormsg, HTTP_CLIENT_ERROR_CANNOT_ACCESS_LOCAL_FILE));
while(!feof($file))
{
if(GetType($block=@fread($file,$this->file_buffer_length))!="string")
{
$error=$this->SetPHPError("could not read body stream file ".$stream[$part]["File"], $php_errormsg, HTTP_CLIENT_ERROR_CANNOT_ACCESS_LOCAL_FILE);
fclose($file);
return($error);
}
$this->request_body.=$block;
}
fclose($file);
}
else
return("5 it was not specified a valid file or data body stream element at position ".$part);
}
}
if(!IsSet($this->request_headers["Content-Type"]))
$this->request_headers["Content-Type"]="application/octet-stream".(IsSet($arguments["CharSet"]) ? "; charset=".$arguments["CharSet"] : "");
}
if(IsSet($arguments["AuthUser"]))
$this->request_user=$arguments["AuthUser"];
elseif(IsSet($this->user))
$this->request_user=$this->user;
if(IsSet($arguments["AuthPassword"]))
$this->request_password=$arguments["AuthPassword"];
elseif(IsSet($this->password))
$this->request_password=$this->password;
if(IsSet($arguments["AuthRealm"]))
$this->request_realm=$arguments["AuthRealm"];
elseif(IsSet($this->realm))
$this->request_realm=$this->realm;
if(IsSet($arguments["AuthWorkstation"]))
$this->request_workstation=$arguments["AuthWorkstation"];
elseif(IsSet($this->workstation))
$this->request_workstation=$this->workstation;
if(strlen($this->proxy_host_name)==0
|| $connect)
$request_uri=$this->request_uri;
else
{
switch(strtolower($this->protocol))
{
case "http":
$default_port=80;
break;
case "https":
$default_port=443;
break;
}
$request_uri=strtolower($this->protocol)."://".$this->host_name.(($this->host_port==0 || $this->host_port==$default_port) ? "" : ":".$this->host_port).$this->request_uri;
}
if($this->use_curl)
{
$version=(GetType($v=curl_version())=="array" ? (IsSet($v["version"]) ? $v["version"] : "0.0.0") : (preg_match("/^libcurl\\/([0-9]+\\.[0-9]+\\.[0-9]+)/",$v,$m) ? $m[1] : "0.0.0"));
$curl_version=100000*intval($this->Tokenize($version,"."))+1000*intval($this->Tokenize("."))+intval($this->Tokenize(""));
$protocol_version=($curl_version<713002 ? "1.0" : $this->protocol_version);
}
else
$protocol_version=$this->protocol_version;
$this->request=$this->request_method." ".$request_uri." HTTP/".$protocol_version;
if($body_length
|| ($body_length=strlen($this->request_body))
|| !strcmp($this->request_method, 'POST'))
$this->request_headers["Content-Length"]=$body_length;
for($headers=array(),$host_set=0,Reset($this->request_headers),$header=0;$header<count($this->request_headers);Next($this->request_headers),$header++)
{
$header_name=Key($this->request_headers);
$header_value=$this->request_headers[$header_name];
if(GetType($header_value)=="array")
{
for(Reset($header_value),$value=0;$value<count($header_value);Next($header_value),$value++)
$headers[]=$header_name.": ".$header_value[Key($header_value)];
}
else
$headers[]=$header_name.": ".$header_value;
if(strtolower(Key($this->request_headers))=="host")
{
$this->request_host=strtolower($header_value);
$host_set=1;
}
}
if(!$host_set)
{
$headers[]="Host: ".$this->host_name;
$this->request_host=strtolower($this->host_name);
}
if(count($this->cookies))
{
$cookies=array();
$this->PickCookies($cookies,0);
if(strtolower($this->protocol)=="https")
$this->PickCookies($cookies,1);
if(count($cookies))
{
$h=count($headers);
$headers[$h]="Cookie:";
for(Reset($cookies),$cookie=0;$cookie<count($cookies);Next($cookies),$cookie++)
{
$cookie_name=Key($cookies);
$headers[$h].=" ".$cookie_name."=".$cookies[$cookie_name]["value"].";";
}
}
}
$next_state = "RequestSent";
if($this->use_curl)
{
if(IsSet($arguments['StreamRequest']))
return($this->SetError("Streaming request data is not supported when using Curl", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
if($body_length
&& strlen($this->request_body)==0)
{
for($request_body="",$success=1,$part=0;$part<count($post_parts);$part++)
{
$request_body.=$post_parts[$part]["HEADERS"].$post_parts[$part]["DATA"];
if(IsSet($post_parts[$part]["FILENAME"]))
{
if(!($file=@fopen($post_parts[$part]["FILENAME"],"rb")))
{
$this->SetPHPError("could not open upload file ".$post_parts[$part]["FILENAME"], $php_errormsg, HTTP_CLIENT_ERROR_CANNOT_ACCESS_LOCAL_FILE);
$success=0;
break;
}
while(!feof($file))
{
if(GetType($block=@fread($file,$this->file_buffer_length))!="string")
{
$this->SetPHPError("could not read upload file", $php_errormsg, HTTP_CLIENT_ERROR_CANNOT_ACCESS_LOCAL_FILE);
$success=0;
break;
}
$request_body.=$block;
}
fclose($file);
if(!$success)
break;
}
$request_body.="\r\n";
}
$request_body.="--".$boundary."--\r\n";
}
else
$request_body=$this->request_body;
curl_setopt($this->connection,CURLOPT_HEADER,1);
curl_setopt($this->connection,CURLOPT_RETURNTRANSFER,1);
if($this->timeout)
curl_setopt($this->connection,CURLOPT_TIMEOUT,$this->timeout);
curl_setopt($this->connection,CURLOPT_SSL_VERIFYPEER,0);
curl_setopt($this->connection,CURLOPT_SSL_VERIFYHOST,0);
$request=$this->request."\r\n".implode("\r\n",$headers)."\r\n\r\n".$request_body;
curl_setopt($this->connection,CURLOPT_CUSTOMREQUEST,$request);
if($this->debug)
$this->OutputDebug("C ".$request);
if(!($success=(strlen($this->response=curl_exec($this->connection))!=0)))
{
$error=curl_error($this->connection);
$this->SetError("Could not execute the request".(strlen($error) ? ": ".$error : ""), HTTP_CLIENT_ERROR_PROTOCOL_FAILURE);
}
}
else
{
if(($success=$this->PutLine($this->request)))
{
for($header=0;$header<count($headers);$header++)
{
if(!$success=$this->PutLine($headers[$header]))
break;
}
if($success
&& ($success=$this->PutLine("")))
{
if(IsSet($arguments['StreamRequest']))
$next_state = "SendingRequestBody";
elseif($body_length)
{
if(strlen($this->request_body))
$success=$this->PutData($this->request_body);
else
{
for($part=0;$part<count($post_parts);$part++)
{
if(!($success=$this->PutData($post_parts[$part]["HEADERS"]))
|| !($success=$this->PutData($post_parts[$part]["DATA"])))
break;
if(IsSet($post_parts[$part]["FILENAME"]))
{
if(!($file=@fopen($post_parts[$part]["FILENAME"],"rb")))
{
$this->SetPHPError("could not open upload file ".$post_parts[$part]["FILENAME"], $php_errormsg, HTTP_CLIENT_ERROR_CANNOT_ACCESS_LOCAL_FILE);
$success=0;
break;
}
while(!feof($file))
{
if(GetType($block=@fread($file,$this->file_buffer_length))!="string")
{
$this->SetPHPError("could not read upload file", $php_errormsg, HTTP_CLIENT_ERROR_CANNOT_ACCESS_LOCAL_FILE);
$success=0;
break;
}
if(!($success=$this->PutData($block)))
break;
}
fclose($file);
if(!$success)
break;
}
if(!($success=$this->PutLine("")))
break;
}
if($success)
$success=$this->PutLine("--".$boundary."--");
}
if($success)
$sucess=$this->FlushData();
}
}
}
}
if(!$success)
return($this->SetError("could not send the HTTP request: ".$this->error, $this->error_code));
$this->state=$next_state;
return("");
}
Function SetCookie($name, $value, $expires="" , $path="/" , $domain="" , $secure=0, $verbatim=0)
{
if(strlen($this->error))
return($this->error);
if(strlen($name)==0)
return($this->SetError("it was not specified a valid cookie name", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
if(strlen($path)==0
|| strcmp($path[0],"/"))
return($this->SetError($path." is not a valid path for setting cookie ".$name, HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
if($domain==""
|| !strpos($domain,".",$domain[0]=="." ? 1 : 0))
return($this->SetError($domain." is not a valid domain for setting cookie ".$name, HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
$domain=strtolower($domain);
if(!strcmp($domain[0],"."))
$domain=substr($domain,1);
if(!$verbatim)
{
$name=$this->CookieEncode($name,1);
$value=$this->CookieEncode($value,0);
}
$secure=intval($secure);
$this->cookies[$secure][$domain][$path][$name]=array(
"name"=>$name,
"value"=>$value,
"domain"=>$domain,
"path"=>$path,
"expires"=>$expires,
"secure"=>$secure
);
return("");
}
Function SendRequestBody($data, $end_of_data)
{
if(strlen($this->error))
return($this->error);
switch($this->state)
{
case "Disconnected":
return($this->SetError("connection was not yet established", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
case "Connected":
case "ConnectedToProxy":
return($this->SetError("request was not sent", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
case "SendingRequestBody":
break;
case "RequestSent":
return($this->SetError("request body was already sent", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
default:
return($this->SetError("can not send the request body in the current connection state", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
}
$length = strlen($data);
if($length)
{
$size = dechex($length)."\r\n";
if(!$this->PutData($size)
|| !$this->PutData($data))
return($this->error);
}
if($end_of_data)
{
$size = "0\r\n";
if(!$this->PutData($size))
return($this->error);
$this->state = "RequestSent";
}
return("");
}
Function ReadReplyHeadersResponse(&$headers)
{
$headers=array();
if(strlen($this->error))
return($this->error);
switch($this->state)
{
case "Disconnected":
return($this->SetError("connection was not yet established", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
case "Connected":
return($this->SetError("request was not sent", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
case "ConnectedToProxy":
return($this->SetError("connection from the remote server from the proxy was not yet established", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
case "SendingRequestBody":
return($this->SetError("request body data was not completely sent", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
case "ConnectSent":
$connect = 1;
break;
case "RequestSent":
$connect = 0;
break;
default:
return($this->SetError("can not get request headers in the current connection state", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
}
$this->content_length=$this->read_length=$this->read_response=$this->remaining_chunk=0;
$this->content_length_set=$this->chunked=$this->last_chunk_read=$chunked=0;
$this->force_close = $this->connection_close=0;
for($this->response_status="";;)
{
$line=$this->GetLine();
if(GetType($line)!="string")
return($this->SetError("could not read request reply: ".$this->error, $this->error_code));
if(strlen($this->response_status)==0)
{
if(!preg_match($match="/^http\\/[0-9]+\\.[0-9]+[ \t]+([0-9]+)[ \t]*(.*)\$/i",$line,$matches))
return($this->SetError("it was received an unexpected HTTP response status", HTTP_CLIENT_ERROR_PROTOCOL_FAILURE));
$this->response_status=$matches[1];
$this->response_message=$matches[2];
}
if($line=="")
{
if(strlen($this->response_status)==0)
return($this->SetError("it was not received HTTP response status", HTTP_CLIENT_ERROR_PROTOCOL_FAILURE));
$this->state=($connect ? "GotConnectHeaders" : "GotReplyHeaders");
break;
}
$header_name=strtolower($this->Tokenize($line,":"));
$header_value=Trim(Chop($this->Tokenize("\r\n")));
if(IsSet($headers[$header_name]))
{
if(GetType($headers[$header_name])=="string")
$headers[$header_name]=array($headers[$header_name]);
$headers[$header_name][]=$header_value;
}
else
$headers[$header_name]=$header_value;
if(!$connect)
{
switch($header_name)
{
case "content-length":
$this->content_length=intval($headers[$header_name]);
$this->content_length_set=1;
break;
case "transfer-encoding":
$encoding=$this->Tokenize($header_value,"; \t");
if(!$this->use_curl
&& !strcmp($encoding,"chunked"))
$chunked=1;
break;
case "set-cookie":
if($this->support_cookies)
{
if(GetType($headers[$header_name])=="array")
$cookie_headers=$headers[$header_name];
else
$cookie_headers=array($headers[$header_name]);
for($cookie=0;$cookie<count($cookie_headers);$cookie++)
{
$cookie_name=trim($this->Tokenize($cookie_headers[$cookie],"="));
$cookie_value=$this->Tokenize(";");
$domain=$this->request_host;
$path="/";
$expires="";
$secure=0;
while(($name = strtolower(trim(UrlDecode($this->Tokenize("=")))))!="")
{
$value=UrlDecode($this->Tokenize(";"));
switch($name)
{
case "domain":
$domain=$value;
break;
case "path":
$path=$value;
break;
case "expires":
if(preg_match("/^((Mon|Monday|Tue|Tuesday|Wed|Wednesday|Thu|Thursday|Fri|Friday|Sat|Saturday|Sun|Sunday), )?([0-9]{2})\\-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\\-([0-9]{2,4}) ([0-9]{2})\\:([0-9]{2})\\:([0-9]{2}) GMT\$/",$value,$matches))
{
$year=intval($matches[5]);
if($year<1900)
$year+=($year<70 ? 2000 : 1900);
$expires="$year-".$this->months[$matches[4]]."-".$matches[3]." ".$matches[6].":".$matches[7].":".$matches[8];
}
break;
case "secure":
$secure=1;
break;
}
}
if(strlen($this->SetCookie($cookie_name, $cookie_value, $expires, $path , $domain, $secure, 1)))
$this->error="";
}
}
break;
case "connection":
$this->force_close = $this->connection_close=!strcmp(strtolower($header_value),"close");
break;
}
}
}
$this->chunked=$chunked;
if($this->content_length_set)
$this->connection_close=0;
return("");
}
Function Redirect(&$headers)
{
if($this->follow_redirect)
{
if(!IsSet($headers["location"])
|| (GetType($headers["location"])!="array"
&& strlen($location=$headers["location"])==0)
|| (GetType($headers["location"])=="array"
&& strlen($location=$headers["location"][0])==0))
return($this->SetError("it was received a redirect without location URL", HTTP_CLIENT_ERROR_PROTOCOL_FAILURE));
if(strcmp($location[0],"/"))
{
if(!($location_arguments=@parse_url($location)))
return($this->SetError("the server did not return a valid redirection location URL", HTTP_CLIENT_ERROR_PROTOCOL_FAILURE));
if(!IsSet($location_arguments["scheme"]))
$location=((GetType($end=strrpos($this->request_uri,"/"))=="integer" && $end>1) ? substr($this->request_uri,0,$end) : "")."/".$location;
}
if(!strcmp($location[0],"/"))
$location=$this->protocol."://".$this->host_name.($this->host_port ? ":".$this->host_port : "").$location;
$error=$this->GetRequestArguments($location,$arguments);
if(strlen($error))
return($this->SetError("could not process redirect url: ".$error, HTTP_CLIENT_ERROR_PROTOCOL_FAILURE));
$arguments["RequestMethod"]="GET";
if(strlen($error=$this->Close())==0
&& strlen($error=$this->Open($arguments))==0
&& strlen($error=$this->SendRequest($arguments))==0)
{
$this->redirection_level++;
if($this->redirection_level>$this->redirection_limit)
{
$error="it was exceeded the limit of request redirections";
$this->error_code = HTTP_CLIENT_ERROR_PROTOCOL_FAILURE;
}
else
$error=$this->ReadReplyHeaders($headers);
$this->redirection_level--;
}
if(strlen($error))
return($this->SetError($error, $this->error_code));
}
return("");
}
Function Authenticate(&$headers, $proxy, &$proxy_authorization, &$user, &$password, &$realm, &$workstation)
{
if($proxy)
{
$authenticate_header="proxy-authenticate";
$authorization_header="Proxy-Authorization";
$authenticate_status="407";
$authentication_mechanism=$this->proxy_authentication_mechanism;
}
else
{
$authenticate_header="www-authenticate";
$authorization_header="Authorization";
$authenticate_status="401";
$authentication_mechanism=$this->authentication_mechanism;
}
if(IsSet($headers[$authenticate_header])
&& $this->sasl_authenticate)
{
if(function_exists("class_exists")
&& !class_exists("sasl_client_class"))
return($this->SetError("the SASL client class needs to be loaded to be able to authenticate".($proxy ? " with the proxy server" : "")." and access this site", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
if(GetType($headers[$authenticate_header])=="array")
$authenticate=$headers[$authenticate_header];
else
$authenticate=array($headers[$authenticate_header]);
for($response="", $mechanisms=array(),$m=0;$m<count($authenticate);$m++)
{
$mechanism=$this->Tokenize($authenticate[$m]," ");
$response=$this->Tokenize("");
if(strlen($authentication_mechanism))
{
if(!strcmp($authentication_mechanism,$mechanism))
{
$mechanisms[]=$mechanism;
break;
}
}
else
$mechanisms[]=$mechanism;
}
$sasl=new sasl_client_class;
if(IsSet($user))
$sasl->SetCredential("user",$user);
if(IsSet($password))
$sasl->SetCredential("password",$password);
if(IsSet($realm))
$sasl->SetCredential("realm",$realm);
if(IsSet($workstation))
$sasl->SetCredential("workstation",$workstation);
$sasl->SetCredential("uri",$this->request_uri);
$sasl->SetCredential("method",$this->request_method);
$sasl->SetCredential("session",$this->session);
do
{
$status=$sasl->Start($mechanisms,$message,$interactions);
}
while($status==SASL_INTERACT);
switch($status)
{
case SASL_CONTINUE:
break;
case SASL_NOMECH:
return($this->SetError(($proxy ? "proxy " : "")."authentication error: ".(strlen($authentication_mechanism) ? "authentication mechanism ".$authentication_mechanism." may not be used: " : "").$sasl->error, HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
default:
return($this->SetError("Could not start the SASL ".($proxy ? "proxy " : "")."authentication client: ".$sasl->error, HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
}
if($proxy >= 0)
{
for(;;)
{
if(strlen($error=$this->ReadReplyBody($body,$this->file_buffer_length)))
return($error);
if(strlen($body)==0)
break;
}
}
$authorization_value=$sasl->mechanism.(IsSet($message) ? " ".($sasl->encode_response ? base64_encode($message) : $message) : "");
$request_arguments=$this->request_arguments;
$arguments=$request_arguments;
$arguments["Headers"][$authorization_header]=$authorization_value;
if(!$proxy
&& strlen($proxy_authorization))
$arguments["Headers"]["Proxy-Authorization"]=$proxy_authorization;
if(strlen($error=$this->Close())
|| strlen($error=$this->Open($arguments)))
return($this->SetError($error, $this->error_code));
$authenticated=0;
if(IsSet($message))
{
if($proxy < 0)
{
if(strlen($error=$this->ConnectFromProxy($arguments, $headers)))
return($this->SetError($error, $this->error_code));
}
else
{
if(strlen($error=$this->SendRequest($arguments))
|| strlen($error=$this->ReadReplyHeadersResponse($headers)))
return($this->SetError($error, $this->error_code));
}
if(!IsSet($headers[$authenticate_header]))
$authenticate=array();
elseif(GetType($headers[$authenticate_header])=="array")
$authenticate=$headers[$authenticate_header];
else
$authenticate=array($headers[$authenticate_header]);
for($mechanism=0;$mechanism<count($authenticate);$mechanism++)
{
if(!strcmp($this->Tokenize($authenticate[$mechanism]," "),$sasl->mechanism))
{
$response=$this->Tokenize("");
break;
}
}
switch($this->response_status)
{
case $authenticate_status:
break;
case "301":
case "302":
case "303":
case "307":
if($proxy >= 0)
return($this->Redirect($headers));
default:
if(intval($this->response_status/100)==2)
{
if($proxy)
$proxy_authorization=$authorization_value;
$authenticated=1;
break;
}
if($proxy
&& !strcmp($this->response_status,"401"))
{
$proxy_authorization=$authorization_value;
$authenticated=1;
break;
}
return($this->SetError(($proxy ? "proxy " : "")."authentication error: ".$this->response_status." ".$this->response_message, HTTP_CLIENT_ERROR_PROTOCOL_FAILURE));
}
}
for(;!$authenticated;)
{
do
{
$status=$sasl->Step($response,$message,$interactions);
}
while($status==SASL_INTERACT);
switch($status)
{
case SASL_CONTINUE:
$authorization_value=$sasl->mechanism.(IsSet($message) ? " ".($sasl->encode_response ? base64_encode($message) : $message) : "");
$arguments=$request_arguments;
$arguments["Headers"][$authorization_header]=$authorization_value;
if(!$proxy
&& strlen($proxy_authorization))
$arguments["Headers"]["Proxy-Authorization"]=$proxy_authorization;
if($proxy < 0)
{
if(strlen($error=$this->ConnectFromProxy($arguments, $headers)))
return($this->SetError($error, $this->error_code));
}
else
{
if(strlen($error=$this->SendRequest($arguments))
|| strlen($error=$this->ReadReplyHeadersResponse($headers)))
return($this->SetError($error, $this->error_code));
}
switch($this->response_status)
{
case $authenticate_status:
if(GetType($headers[$authenticate_header])=="array")
$authenticate=$headers[$authenticate_header];
else
$authenticate=array($headers[$authenticate_header]);
for($response="",$mechanism=0;$mechanism<count($authenticate);$mechanism++)
{
if(!strcmp($this->Tokenize($authenticate[$mechanism]," "),$sasl->mechanism))
{
$response=$this->Tokenize("");
break;
}
}
if($proxy >= 0)
{
for(;;)
{
if(strlen($error=$this->ReadReplyBody($body,$this->file_buffer_length)))
return($error);
if(strlen($body)==0)
break;
}
}
$this->state="Connected";
break;
case "301":
case "302":
case "303":
case "307":
if($proxy >= 0)
return($this->Redirect($headers));
default:
if(intval($this->response_status/100)==2)
{
if($proxy)
$proxy_authorization=$authorization_value;
$authenticated=1;
break;
}
if($proxy
&& !strcmp($this->response_status,"401"))
{
$proxy_authorization=$authorization_value;
$authenticated=1;
break;
}
return($this->SetError(($proxy ? "proxy " : "")."authentication error: ".$this->response_status." ".$this->response_message));
}
break;
default:
return($this->SetError("Could not process the SASL ".($proxy ? "proxy " : "")."authentication step: ".$sasl->error, HTTP_CLIENT_ERROR_PROTOCOL_FAILURE));
}
}
}
return("");
}
Function ReadReplyHeaders(&$headers)
{
if(strlen($error=$this->ReadReplyHeadersResponse($headers)))
return($error);
$proxy_authorization="";
while(!strcmp($this->response_status, "100"))
{
$this->state="RequestSent";
if(strlen($error=$this->ReadReplyHeadersResponse($headers)))
return($error);
}
switch($this->response_status)
{
case "301":
case "302":
case "303":
case "307":
if(strlen($error=$this->Redirect($headers)))
return($error);
break;
case "407":
if(strlen($error=$this->Authenticate($headers, 1, $proxy_authorization, $this->proxy_request_user, $this->proxy_request_password, $this->proxy_request_realm, $this->proxy_request_workstation)))
return($error);
if(strcmp($this->response_status,"401"))
return("");
case "401":
return($this->Authenticate($headers, 0, $proxy_authorization, $this->request_user, $this->request_password, $this->request_realm, $this->request_workstation));
}
return("");
}
Function ReadReplyBody(&$body,$length)
{
$body="";
if(strlen($this->error))
return($this->error);
switch($this->state)
{
case "Disconnected":
return($this->SetError("connection was not yet established", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
case "Connected":
case "ConnectedToProxy":
return($this->SetError("request was not sent", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
case "RequestSent":
if(($error=$this->ReadReplyHeaders($headers))!="")
return($error);
break;
case "GotReplyHeaders":
break;
case 'ResponseReceived':
$body = '';
return('');
default:
return($this->SetError("can not get request headers in the current connection state", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
}
if($this->content_length_set)
$length=min($this->content_length-$this->read_length,$length);
$body = '';
if($length>0)
{
if(!$this->EndOfInput()
&& ($body=$this->ReadBytes($length))=="")
{
if(strlen($this->error))
return($this->SetError("could not get the request reply body: ".$this->error, $this->error_code));
}
$this->read_length+=strlen($body);
if($this->EndOfInput())
$this->state = 'ResponseReceived';
}
return("");
}
Function ReadWholeReplyBody(&$body)
{
$body = '';
for(;;)
{
if(strlen($error = $this->ReadReplyBody($block, $this->file_buffer_length)))
return($error);
if(strlen($block) == 0)
return('');
$body .= $block;
}
}
Function ReadWholeReplyIntoTemporaryFile(&$file)
{
if(!($file = tmpfile()))
return $this->SetPHPError('could not create the temporary file to save the response', $php_errormsg, HTTP_CLIENT_ERROR_CANNOT_ACCESS_LOCAL_FILE);
for(;;)
{
if(strlen($error = $this->ReadReplyBody($block, $this->file_buffer_length)))
{
fclose($file);
return($error);
}
if(strlen($block) == 0)
{
if(@fseek($file, 0) != 0)
{
$error = $this->SetPHPError('could not seek to the beginning of temporary file with the response', $php_errormsg, HTTP_CLIENT_ERROR_CANNOT_ACCESS_LOCAL_FILE);
fclose($file);
return $error;
}
return('');
}
if(!@fwrite($file, $block))
{
$error = $this->SetPHPError('could not write to the temporary file to save the response', $php_errormsg, HTTP_CLIENT_ERROR_CANNOT_ACCESS_LOCAL_FILE);
fclose($file);
return $error;
}
}
}
Function SaveCookies(&$cookies, $domain='', $secure_only=0, $persistent_only=0)
{
$now=gmdate("Y-m-d H-i-s");
$cookies=array();
for($secure_cookies=0,Reset($this->cookies);$secure_cookies<count($this->cookies);Next($this->cookies),$secure_cookies++)
{
$secure=Key($this->cookies);
if(!$secure_only
|| $secure)
{
for($cookie_domain=0,Reset($this->cookies[$secure]);$cookie_domain<count($this->cookies[$secure]);Next($this->cookies[$secure]),$cookie_domain++)
{
$domain_pattern=Key($this->cookies[$secure]);
$match=strlen($domain)-strlen($domain_pattern);
if(strlen($domain)==0
|| ($match>=0
&& !strcmp($domain_pattern,substr($domain,$match))
&& ($match==0
|| $domain_pattern[0]=="."
|| $domain[$match-1]==".")))
{
for(Reset($this->cookies[$secure][$domain_pattern]),$path_part=0;$path_part<count($this->cookies[$secure][$domain_pattern]);Next($this->cookies[$secure][$domain_pattern]),$path_part++)
{
$path=Key($this->cookies[$secure][$domain_pattern]);
for(Reset($this->cookies[$secure][$domain_pattern][$path]),$cookie=0;$cookie<count($this->cookies[$secure][$domain_pattern][$path]);Next($this->cookies[$secure][$domain_pattern][$path]),$cookie++)
{
$cookie_name=Key($this->cookies[$secure][$domain_pattern][$path]);
$expires=$this->cookies[$secure][$domain_pattern][$path][$cookie_name]["expires"];
if((!$persistent_only
&& strlen($expires)==0)
|| (strlen($expires)
&& strcmp($now,$expires)<0))
$cookies[$secure][$domain_pattern][$path][$cookie_name]=$this->cookies[$secure][$domain_pattern][$path][$cookie_name];
}
}
}
}
}
}
}
Function SavePersistentCookies(&$cookies, $domain='', $secure_only=0)
{
$this->SaveCookies($cookies, $domain, $secure_only, 1);
}
Function GetPersistentCookies(&$cookies, $domain='', $secure_only=0)
{
$this->SavePersistentCookies($cookies, $domain, $secure_only);
}
Function RestoreCookies($cookies, $clear=1)
{
$new_cookies=($clear ? array() : $this->cookies);
for($secure_cookies=0, Reset($cookies); $secure_cookies<count($cookies); Next($cookies), $secure_cookies++)
{
$secure=Key($cookies);
if(GetType($secure)!="integer")
return($this->SetError("invalid cookie secure value type (".serialize($secure).")", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
for($cookie_domain=0,Reset($cookies[$secure]);$cookie_domain<count($cookies[$secure]);Next($cookies[$secure]),$cookie_domain++)
{
$domain_pattern=Key($cookies[$secure]);
if(GetType($domain_pattern)!="string")
return($this->SetError("invalid cookie domain value type (".serialize($domain_pattern).")", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
for(Reset($cookies[$secure][$domain_pattern]),$path_part=0;$path_part<count($cookies[$secure][$domain_pattern]);Next($cookies[$secure][$domain_pattern]),$path_part++)
{
$path=Key($cookies[$secure][$domain_pattern]);
if(GetType($path)!="string"
|| strcmp(substr($path, 0, 1), "/"))
return($this->SetError("invalid cookie path value type (".serialize($path).")", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
for(Reset($cookies[$secure][$domain_pattern][$path]),$cookie=0;$cookie<count($cookies[$secure][$domain_pattern][$path]);Next($cookies[$secure][$domain_pattern][$path]),$cookie++)
{
$cookie_name=Key($cookies[$secure][$domain_pattern][$path]);
$expires=$cookies[$secure][$domain_pattern][$path][$cookie_name]["expires"];
$value=$cookies[$secure][$domain_pattern][$path][$cookie_name]["value"];
if(GetType($expires)!="string"
|| (strlen($expires)
&& !preg_match("/^[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}\$/", $expires)))
return($this->SetError("invalid cookie expiry value type (".serialize($expires).")", HTTP_CLIENT_ERROR_INVALID_PARAMETERS));
$new_cookies[$secure][$domain_pattern][$path][$cookie_name]=array(
"name"=>$cookie_name,
"value"=>$value,
"domain"=>$domain_pattern,
"path"=>$path,
"expires"=>$expires,
"secure"=>$secure
);
}
}
}
}
$this->cookies=$new_cookies;
return("");
}
};
?>

View file

@ -0,0 +1,2486 @@
<?php
/*
* oauth_client.php
*
* @(#) $Id: oauth_client.php,v 1.97 2014/04/29 01:16:28 mlemos Exp $
*
*/
/*
{metadocument}<?xml version="1.0" encoding="ISO-8859-1" ?>
<class>
<package>net.manuellemos.oauth</package>
<version>@(#) $Id: oauth_client.php,v 1.97 2014/04/29 01:16:28 mlemos Exp $</version>
<copyright>Copyright © (C) Manuel Lemos 2012</copyright>
<title>OAuth client</title>
<author>Manuel Lemos</author>
<authoraddress>mlemos-at-acm.org</authoraddress>
<documentation>
<idiom>en</idiom>
<purpose>This class serves two main purposes:<paragraphbreak />
1) Implement the OAuth protocol to retrieve a token from a server to
authorize the access to an API on behalf of the current
user.<paragraphbreak />
2) Perform calls to a Web services API using a token previously
obtained using this class or a token provided some other way by the
Web services provider.</purpose>
<usage>Regardless of your purposes, you always need to start calling
the class <functionlink>Initialize</functionlink> function after
initializing setup variables. After you are done with the class,
always call the <functionlink>Finalize</functionlink> function at
the end.<paragraphbreak />
This class supports either OAuth protocol versions 1.0, 1.0a and
2.0. It abstracts the differences between these protocol versions,
so the class usage is the same independently of the OAuth
version of the server.<paragraphbreak />
The class also provides built-in support to several popular OAuth
servers, so you do not have to manually configure all the details to
access those servers. Just set the
<variablelink>server</variablelink> variable to configure the class
to access one of the built-in supported servers.<paragraphbreak />
If you need to access one type of server that is not yet directly
supported by the class, you need to configure it explicitly setting
the variables: <variablelink>oauth_version</variablelink>,
<variablelink>url_parameters</variablelink>,
<variablelink>authorization_header</variablelink>,
<variablelink>request_token_url</variablelink>,
<variablelink>dialog_url</variablelink>,
<variablelink>offline_dialog_url</variablelink>,
<variablelink>append_state_to_redirect_uri</variablelink> and
<variablelink>access_token_url</variablelink>.<paragraphbreak />
Before proceeding to the actual OAuth authorization process, you
need to have registered your application with the OAuth server. The
registration provides you values to set the variables
<variablelink>client_id</variablelink> and
<variablelink>client_secret</variablelink>. Some servers also
provide an additional value to set the
<variablelink>api_key</variablelink> variable.<paragraphbreak />
You also need to set the variables
<variablelink>redirect_uri</variablelink> and
<variablelink>scope</variablelink> before calling the
<functionlink>Process</functionlink> function to make the class
perform the necessary interactions with the OAuth
server.<paragraphbreak />
The OAuth protocol involves multiple steps that include redirection
to the OAuth server. There it asks permission to the current user to
grant your application access to APIs on his/her behalf. When there
is a redirection, the class will set the
<variablelink>exit</variablelink> variable to
<booleanvalue>1</booleanvalue>. Then your script should exit
immediately without outputting anything.<paragraphbreak />
When the OAuth access token is successfully obtained, the following
variables are set by the class with the obtained values:
<variablelink>access_token</variablelink>,
<variablelink>access_token_secret</variablelink>,
<variablelink>access_token_expiry</variablelink>,
<variablelink>access_token_type</variablelink>. You may want to
store these values to use them later when calling the server
APIs.<paragraphbreak />
If there was a problem during OAuth authorization process, check the
variable <variablelink>authorization_error</variablelink> to
determine the reason.<paragraphbreak />
Once you get the access token, you can call the server APIs using
the <functionlink>CallAPI</functionlink> function. Check the
<variablelink>access_token_error</variablelink> variable to
determine if there was an error when trying to to call the
API.<paragraphbreak />
If for some reason the user has revoked the access to your
application, you need to ask the user to authorize your application
again. First you may need to call the function
<functionlink>ResetAccessToken</functionlink> to reset the value of
the access token that may be cached in session variables.</usage>
</documentation>
{/metadocument}
*/
class oauth_client_class
{
/*
{metadocument}
<variable>
<name>error</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Store the message that is returned when an error
occurs.</purpose>
<usage>Check this variable to understand what happened when a call to
any of the class functions has failed.<paragraphbreak />
This class uses cumulative error handling. This means that if one
class functions that may fail is called and this variable was
already set to an error message due to a failure in a previous call
to the same or other function, the function will also fail and does
not do anything.<paragraphbreak />
This allows programs using this class to safely call several
functions that may fail and only check the failure condition after
the last function call.<paragraphbreak />
Just set this variable to an empty string to clear the error
condition.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $error = '';
/*
{metadocument}
<variable>
<name>debug</name>
<type>BOOLEAN</type>
<value>0</value>
<documentation>
<purpose>Control whether debug output is enabled</purpose>
<usage>Set this variable to <booleanvalue>1</booleanvalue> if you
need to check what is going on during calls to the class. When
enabled, the debug output goes either to the variable
<variablelink>debug_output</variablelink> and the PHP error log.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $debug = false;
/*
{metadocument}
<variable>
<name>debug_http</name>
<type>BOOLEAN</type>
<value>0</value>
<documentation>
<purpose>Control whether the dialog with the remote Web server
should also be logged.</purpose>
<usage>Set this variable to <booleanvalue>1</booleanvalue> if you
want to inspect the data exchange with the OAuth server.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $debug_http = false;
/*
{metadocument}
<variable>
<name>exit</name>
<type>BOOLEAN</type>
<value>0</value>
<documentation>
<purpose>Determine if the current script should be exited.</purpose>
<usage>Check this variable after calling the
<functionlink>Process</functionlink> function and exit your script
immediately if the variable is set to
<booleanvalue>1</booleanvalue>.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $exit = false;
/*
{metadocument}
<variable>
<name>debug_output</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Capture the debug output generated by the class</purpose>
<usage>Inspect this variable if you need to see what happened during
the class function calls.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $debug_output = '';
/*
{metadocument}
<variable>
<name>debug_prefix</name>
<type>STRING</type>
<value>OAuth client: </value>
<documentation>
<purpose>Mark the lines of the debug output to identify actions
performed by this class.</purpose>
<usage>Change this variable if you prefer the debug output lines to
be prefixed with a different text.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $debug_prefix = 'OAuth client: ';
/*
{metadocument}
<variable>
<name>server</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Identify the type of OAuth server to access.</purpose>
<usage>The class provides built-in support to several types of OAuth
servers. This means that the class can automatically initialize
several configuration variables just by setting this server
variable.<paragraphbreak />
Currently it supports the following servers:
<stringvalue>37Signals</stringvalue>,
<stringvalue>Amazon</stringvalue>,
<stringvalue>Bitbucket</stringvalue>,
<stringvalue>Box</stringvalue>,
<stringvalue>Buffer</stringvalue>,
<stringvalue>Dailymotion</stringvalue>,
<stringvalue>Discogs</stringvalue>,
<stringvalue>Disqus</stringvalue>,
<stringvalue>Dropbox</stringvalue> (Dropbox with OAuth 1.0),
<stringvalue>Dropbox2</stringvalue> (Dropbox with OAuth 2.0),
<stringvalue>Etsy</stringvalue>,
<stringvalue>Eventful</stringvalue>,
<stringvalue>Facebook</stringvalue>,
<stringvalue>Fitbit</stringvalue>,
<stringvalue>Flickr</stringvalue>,
<stringvalue>Foursquare</stringvalue>,
<stringvalue>github</stringvalue>,
<stringvalue>Google</stringvalue>,
<stringvalue>Google1</stringvalue> (Google with OAuth 1.0),
<stringvalue>Instagram</stringvalue>,
<stringvalue>LinkedIn</stringvalue>,
<stringvalue>Microsoft</stringvalue>,
<stringvalue>Rdio</stringvalue>,
<stringvalue>Reddit</stringvalue>,
<stringvalue>Salesforce</stringvalue>,
<stringvalue>Scoop.it</stringvalue>,
<stringvalue>StockTwits</stringvalue>,
<stringvalue>SurveyMonkey</stringvalue>,
<stringvalue>Tumblr</stringvalue>,
<stringvalue>Twitter</stringvalue>,
<stringvalue>Vimeo</stringvalue>,
<stringvalue>VK</stringvalue>,
<stringvalue>Withings</stringvalue>,
<stringvalue>Wordpress</stringvalue>,
<stringvalue>Xero</stringvalue>,
<stringvalue>XING</stringvalue> and
<stringvalue>Yahoo</stringvalue>. Please contact the author if you
would like to ask to add built-in support for other types of OAuth
servers.<paragraphbreak />
If you want to access other types of OAuth servers that are not
yet supported, set this variable to an empty string and configure
other variables with values specific to those servers.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $server = '';
/*
{metadocument}
<variable>
<name>configuration_file</name>
<type>STRING</type>
<value>oauth_configuration.json</value>
<documentation>
<purpose>Specify the path of the configuration file that defines the
properties of additional OAuth server types.</purpose>
<usage>Change the path in this variable if you are accessing a type
of server without support built-in the class and you need to put
the configuration file path in a different directory.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $configuration_file = 'oauth_configuration.json';
/*
{metadocument}
<variable>
<name>request_token_url</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>URL of the OAuth server to request the initial token for
OAuth 1.0 and 1.0a servers.</purpose>
<usage>Set this variable to the OAuth request token URL when you are
not accessing one of the built-in supported OAuth
servers.<paragraphbreak />
For OAuth 1.0 and 1.0a servers, the request token URL can have
certain marks that will act as template placeholders which will be
replaced with given values before requesting the authorization
token. Currently it supports the following placeholder
marks:<paragraphbreak />
{SCOPE} - scope of the requested permissions to the granted by the
OAuth server with the user permissions</usage>
</documentation>
</variable>
{/metadocument}
*/
var $request_token_url = '';
/*
{metadocument}
<variable>
<name>dialog_url</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>URL of the OAuth server to redirect the browser so the user
can grant access to your application.</purpose>
<usage>Set this variable to the OAuth request token URL when you are
not accessing one of the built-in supported OAuth servers.<paragraphbreak />
For OAuth 1.0a servers that return the login dialog URL
automatically, set this variable to
<stringvalue>automatic</stringvalue><paragraphbreak />
For certain servers, the dialog URL can have certain marks that
will act as template placeholders which will be replaced with
values defined before redirecting the users browser. Currently it
supports the following placeholder marks:<paragraphbreak />
{REDIRECT_URI} - URL to redirect when returning from the OAuth
server authorization page<paragraphbreak />
{CLIENT_ID} - client application identifier registered at the
server<paragraphbreak />
{SCOPE} - scope of the requested permissions to the granted by the
OAuth server with the user permissions<paragraphbreak />
{STATE} - identifier of the OAuth session state<paragraphbreak />
{API_KEY} - API key to access the server</usage>
</documentation>
</variable>
{/metadocument}
*/
var $dialog_url = '';
/*
{metadocument}
<variable>
<name>offline_dialog_url</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>URL of the OAuth server to redirect the browser so the user
can grant access to your application when offline access is
requested.</purpose>
<usage>Set this variable to the OAuth request token URL when you are
not accessing one of the built-in supported OAuth servers and the
OAuth server supports offline access.<paragraphbreak />
It should have the same format as the
<variablelink>dialog_url</variablelink> variable.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $offline_dialog_url = '';
/*
{metadocument}
<variable>
<name>append_state_to_redirect_uri</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Pass the OAuth session state in a variable with a different
name to work around implementation bugs of certain OAuth
servers</purpose>
<usage>Set this variable when you are not accessing one of the
built-in supported OAuth servers if the OAuth server has a bug
that makes it not pass back the OAuth state identifier in a
request variable named state.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $append_state_to_redirect_uri = '';
/*
{metadocument}
<variable>
<name>access_token_url</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>OAuth server URL that will return the access token
URL.</purpose>
<usage>Set this variable to the OAuth access token URL when you are
not accessing one of the built-in supported OAuth servers.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $access_token_url = '';
/*
{metadocument}
<variable>
<name>oauth_version</name>
<type>STRING</type>
<value>2.0</value>
<documentation>
<purpose>Version of the protocol version supported by the OAuth
server.</purpose>
<usage>Set this variable to the OAuth server protocol version when
you are not accessing one of the built-in supported OAuth
servers.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $oauth_version = '2.0';
/*
{metadocument}
<variable>
<name>url_parameters</name>
<type>BOOLEAN</type>
<value>0</value>
<documentation>
<purpose>Determine if the API call parameters should be moved to the
call URL.</purpose>
<usage>Set this variable to <booleanvalue>1</booleanvalue> if the
API you need to call requires that the call parameters always be
passed via the API URL.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $url_parameters = false;
/*
{metadocument}
<variable>
<name>authorization_header</name>
<type>BOOLEAN</type>
<value>1</value>
<documentation>
<purpose>Determine if the OAuth parameters should be passed via HTTP
Authorization request header.</purpose>
<usage>Set this variable to <booleanvalue>1</booleanvalue> if the
OAuth server requires that the OAuth parameters be passed using
the HTTP Authorization instead of the request URI parameters.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $authorization_header = true;
/*
{metadocument}
<variable>
<name>token_request_method</name>
<type>STRING</type>
<value>GET</value>
<documentation>
<purpose>Define the HTTP method that should be used to request
tokens from the server.</purpose>
<usage>Set this variable to <stringvalue>POST</stringvalue> if the
OAuth server does not support requesting tokens using the HTTP GET
method.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $token_request_method = 'GET';
/*
{metadocument}
<variable>
<name>signature_method</name>
<type>STRING</type>
<value>HMAC-SHA1</value>
<documentation>
<purpose>Define the method to generate the signature for API request
parameters values.</purpose>
<usage>Currently it supports <stringvalue>PLAINTEXT</stringvalue>
and <stringvalue>HMAC-SHA1</stringvalue>.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $signature_method = 'HMAC-SHA1';
/*
{metadocument}
<variable>
<name>redirect_uri</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>URL of the current script page that is calling this
class</purpose>
<usage>Set this variable to the current script page URL before
proceeding the the OAuth authorization process.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $redirect_uri = '';
/*
{metadocument}
<variable>
<name>client_id</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Identifier of your application registered with the OAuth
server</purpose>
<usage>Set this variable to the application identifier that is
provided by the OAuth server when you register the
application.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $client_id = '';
/*
{metadocument}
<variable>
<name>client_secret</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Secret value assigned to your application when it is
registered with the OAuth server.</purpose>
<usage>Set this variable to the application secret that is provided
by the OAuth server when you register the application.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $client_secret = '';
/*
{metadocument}
<variable>
<name>api_key</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Identifier of your API key provided by the OAuth
server</purpose>
<usage>Set this variable to the API key if the OAuth server requires
one.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $api_key = '';
/*
{metadocument}
<variable>
<name>get_token_with_api_key</name>
<type>BOOLEAN</type>
<value>0</value>
<documentation>
<purpose>Option to determine if the access token should be retrieved
using the API key value instead of the client secret.</purpose>
<usage>Set this variable to <booleanvalue>1</booleanvalue> if the
OAuth server requires that the client secret be set to the API key
when retrieving the OAuth token.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $get_token_with_api_key = false;
/*
{metadocument}
<variable>
<name>scope</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Permissions that your application needs to call the OAuth
server APIs</purpose>
<usage>Check the documentation of the APIs that your application
needs to call to set this variable with the identifiers of the
permissions that the user needs to grant to your application.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $scope = '';
/*
{metadocument}
<variable>
<name>offline</name>
<type>BOOLEAN</type>
<value>0</value>
<documentation>
<purpose>Specify whether it will be necessary to call the API when
the user is not present and the server supports renewing expired
access tokens using refresh tokens.</purpose>
<usage>Set this variable to <booleanvalue>1</booleanvalue> if the
server supports renewing expired tokens automatically when the
user is not present.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $offline = false;
/*
{metadocument}
<variable>
<name>access_token</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Access token obtained from the OAuth server</purpose>
<usage>Check this variable to get the obtained access token upon
successful OAuth authorization.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $access_token = '';
/*
{metadocument}
<variable>
<name>access_token_secret</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Access token secret obtained from the OAuth server</purpose>
<usage>If the OAuth protocol version is 1.0 or 1.0a, check this
variable to get the obtained access token secret upon successful
OAuth authorization.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $access_token_secret = '';
/*
{metadocument}
<variable>
<name>access_token_expiry</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Timestamp of the expiry of the access token obtained from
the OAuth server.</purpose>
<usage>Check this variable to get the obtained access token expiry
time upon successful OAuth authorization. If this variable is
empty, that means no expiry time was set.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $access_token_expiry = '';
/*
{metadocument}
<variable>
<name>access_token_type</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Type of access token obtained from the OAuth server.</purpose>
<usage>Check this variable to get the obtained access token type
upon successful OAuth authorization.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $access_token_type = '';
/*
{metadocument}
<variable>
<name>default_access_token_type</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Type of access token to be assumed when the OAuth server
does not specify an access token type.</purpose>
<usage>Set this variable if the server requires a certain type of
access token to be used but it does not specify a token type
when the access token is returned.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $default_access_token_type = '';
/*
{metadocument}
<variable>
<name>access_token_parameter</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Name of the access token parameter to be passed in API call
requests.</purpose>
<usage>Set this variable to a non-empty string to override the
default name for the access token parameter which is
<stringvalue>oauth_token</stringvalue> of OAuth 1 and
<stringvalue>access_token</stringvalue> for OAuth 2.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $access_token_parameter = '';
/*
{metadocument}
<variable>
<name>access_token_response</name>
<type>ARRAY</type>
<documentation>
<purpose>The original response for the access token request</purpose>
<usage>Check this variable if the OAuth server returns custom
parameters in the request to obtain the access token.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $access_token_response;
/*
{metadocument}
<variable>
<name>store_access_token_response</name>
<type>BOOLEAN</type>
<value>0</value>
<documentation>
<purpose>Option to determine if the original response for the access
token request should be stored in the
<variablelink>access_token_response</variablelink>
variable.</purpose>
<usage>Set this variable to <booleanvalue>1</booleanvalue> if the
OAuth server returns custom parameters in the request to obtain
the access token that may be needed in subsequent API calls.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $store_access_token_response = false;
/*
{metadocument}
<variable>
<name>access_token_authentication</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Option to determine if the requests to obtain a new access
token should use authentication to pass the application client ID
and secret.</purpose>
<usage>Set this variable to <stringvalue>basic</stringvalue> if the
OAuth server requires that the the client ID and secret be passed
using HTTP basic authentication headers when retrieving a new
token.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $access_token_authentication = '';
/*
{metadocument}
<variable>
<name>refresh_token</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Refresh token obtained from the OAuth server</purpose>
<usage>Check this variable to get the obtained refresh token upon
successful OAuth authorization.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $refresh_token = '';
/*
{metadocument}
<variable>
<name>access_token_error</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Error message returned when a call to the API fails.</purpose>
<usage>Check this variable to determine if there was an error while
calling the Web services API when using the
<functionlink>CallAPI</functionlink> function.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $access_token_error = '';
/*
{metadocument}
<variable>
<name>authorization_error</name>
<type>STRING</type>
<value></value>
<documentation>
<purpose>Error message returned when it was not possible to obtain
an OAuth access token</purpose>
<usage>Check this variable to determine if there was an error while
trying to obtain the OAuth access token.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $authorization_error = '';
/*
{metadocument}
<variable>
<name>response_status</name>
<type>INTEGER</type>
<value>0</value>
<documentation>
<purpose>HTTP response status returned by the server when calling an
API</purpose>
<usage>Check this variable after calling the
<functionlink>CallAPI</functionlink> function if the API calls and you
need to process the error depending the response status.
<integervalue>200</integervalue> means no error.
<integervalue>0</integervalue> means the server response was not
retrieved.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $response_status = 0;
var $oauth_user_agent = 'PHP-OAuth-API (http://www.phpclasses.org/oauth-api $Revision: 1.97 $)';
Function SetError($error)
{
$this->error = $error;
if($this->debug)
$this->OutputDebug('Error: '.$error);
return(false);
}
Function SetPHPError($error, &$php_error_message)
{
if(IsSet($php_error_message)
&& strlen($php_error_message))
$error.=": ".$php_error_message;
return($this->SetError($error));
}
Function OutputDebug($message)
{
if($this->debug)
{
$message = $this->debug_prefix.$message;
$this->debug_output .= $message."\n";;
echo $message; error_log($message);
}
return(true);
}
Function GetRequestTokenURL(&$request_token_url)
{
$request_token_url = $this->request_token_url;
return(true);
}
Function GetDialogURL(&$url, $redirect_uri = '', $state = '')
{
$url = (($this->offline && strlen($this->offline_dialog_url)) ? $this->offline_dialog_url : $this->dialog_url);
if(strlen($url) === 0)
return $this->SetError('the dialog URL '.($this->offline ? 'for offline access ' : '').'is not defined for this server');
$url = str_replace(
'{REDIRECT_URI}', UrlEncode($redirect_uri), str_replace(
'{STATE}', UrlEncode($state), str_replace(
'{CLIENT_ID}', UrlEncode($this->client_id), str_replace(
'{API_KEY}', UrlEncode($this->api_key), str_replace(
'{SCOPE}', UrlEncode($this->scope),
$url)))));
return(true);
}
Function GetAccessTokenURL(&$access_token_url)
{
$access_token_url = str_replace('{API_KEY}', $this->api_key, $this->access_token_url);
return(true);
}
Function GetStoredState(&$state)
{
if(!function_exists('session_start'))
return $this->SetError('Session variables are not accessible in this PHP environment');
if(session_id() === ''
&& !session_start())
return($this->SetPHPError('it was not possible to start the PHP session', $php_errormsg));
if(IsSet($_SESSION['OAUTH_STATE']))
$state = $_SESSION['OAUTH_STATE'];
else
$state = $_SESSION['OAUTH_STATE'] = time().'-'.substr(md5(rand().time()), 0, 6);
return(true);
}
Function GetRequestState(&$state)
{
$check = (strlen($this->append_state_to_redirect_uri) ? $this->append_state_to_redirect_uri : 'state');
$state = (IsSet($_GET[$check]) ? $_GET[$check] : null);
return(true);
}
Function GetRequestCode(&$code)
{
$code = (IsSet($_GET['code']) ? $_GET['code'] : null);
return(true);
}
Function GetRequestError(&$error)
{
$error = (IsSet($_GET['error']) ? $_GET['error'] : null);
return(true);
}
Function GetRequestDenied(&$denied)
{
$denied = (IsSet($_GET['denied']) ? $_GET['denied'] : null);
return(true);
}
Function GetRequestToken(&$token, &$verifier)
{
$token = (IsSet($_GET['oauth_token']) ? $_GET['oauth_token'] : null);
$verifier = (IsSet($_GET['oauth_verifier']) ? $_GET['oauth_verifier'] : null);
return(true);
}
Function GetRedirectURI(&$redirect_uri)
{
if(strlen($this->redirect_uri))
$redirect_uri = $this->redirect_uri;
else
$redirect_uri = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
return true;
}
/*
{metadocument}
<function>
<name>Redirect</name>
<type>VOID</type>
<documentation>
<purpose>Redirect the user browser to a given page.</purpose>
<usage>This function is meant to be only be called from inside the
class. By default it issues HTTP 302 response status and sets the
redirection location to a given URL. Sub-classes may override this
function to implement a different way to redirect the user
browser.</usage>
</documentation>
<argument>
<name>url</name>
<type>STRING</type>
<documentation>
<purpose>String with the full URL of the page to redirect.</purpose>
</documentation>
</argument>
<do>
{/metadocument}
*/
Function Redirect($url)
{
Header('HTTP/1.0 302 OAuth Redirection');
Header('Location: '.$url);
}
/*
{metadocument}
</do>
</function>
{/metadocument}
*/
/*
{metadocument}
<function>
<name>StoreAccessToken</name>
<type>BOOLEAN</type>
<documentation>
<purpose>Store the values of the access token when it is succefully
retrieved from the OAuth server.</purpose>
<usage>This function is meant to be only be called from inside the
class. By default it stores access tokens in a session variable
named <stringvalue>OAUTH_ACCESS_TOKEN</stringvalue>.<paragraphbreak />
Actual implementations should create a sub-class and override this
function to make the access token values be stored in other types
of containers, like for instance databases.</usage>
<returnvalue>This function should return
<booleanvalue>1</booleanvalue> if the access token was stored
successfully.</returnvalue>
</documentation>
<argument>
<name>access_token</name>
<type>HASH</type>
<documentation>
<purpose>Associative array with properties of the access token.
The array may have set the following
properties:<paragraphbreak />
<stringvalue>value</stringvalue>: string value of the access
token<paragraphbreak />
<stringvalue>authorized</stringvalue>: boolean value that
determines if the access token was obtained
successfully<paragraphbreak />
<stringvalue>expiry</stringvalue>: (optional) timestamp in ISO
format relative to UTC time zone of the access token expiry
time<paragraphbreak />
<stringvalue>type</stringvalue>: (optional) type of OAuth token
that may determine how it should be used when sending API call
requests.<paragraphbreak />
<stringvalue>refresh</stringvalue>: (optional) token that some
servers may set to allowing refreshing access tokens when they
expire.</purpose>
</documentation>
</argument>
<do>
{/metadocument}
*/
Function StoreAccessToken($access_token)
{
if(!function_exists('session_start'))
return $this->SetError('Session variables are not accessible in this PHP environment');
if(session_id() === ''
&& !session_start())
return($this->SetPHPError('it was not possible to start the PHP session', $php_errormsg));
if(!$this->GetAccessTokenURL($access_token_url))
return false;
$_SESSION['OAUTH_ACCESS_TOKEN'][$access_token_url] = $access_token;
return true;
}
/*
{metadocument}
</do>
</function>
{/metadocument}
*/
/*
{metadocument}
<function>
<name>GetAccessToken</name>
<type>BOOLEAN</type>
<documentation>
<purpose>Retrieve the OAuth access token if it was already
previously stored by the
<functionlink>StoreAccessToken</functionlink> function.</purpose>
<usage>This function is meant to be only be called from inside the
class. By default it retrieves access tokens stored in a session
variable named
<stringvalue>OAUTH_ACCESS_TOKEN</stringvalue>.<paragraphbreak />
Actual implementations should create a sub-class and override this
function to retrieve the access token values from other types of
containers, like for instance databases.</usage>
<returnvalue>This function should return
<booleanvalue>1</booleanvalue> if the access token was retrieved
successfully.</returnvalue>
</documentation>
<argument>
<name>access_token</name>
<type>STRING</type>
<out />
<documentation>
<purpose>Return the properties of the access token in an
associative array. If the access token was not yet stored, it
returns an empty array. Otherwise, the properties it may return
are the same that may be passed to the
<functionlink>StoreAccessToken</functionlink>.</purpose>
</documentation>
</argument>
<do>
{/metadocument}
*/
Function GetAccessToken(&$access_token)
{
if(!function_exists('session_start'))
return $this->SetError('Session variables are not accessible in this PHP environment');
if(session_id() === ''
&& !session_start())
return($this->SetPHPError('it was not possible to start the PHP session', $php_errormsg));
if(!$this->GetAccessTokenURL($access_token_url))
return false;
if(IsSet($_SESSION['OAUTH_ACCESS_TOKEN'][$access_token_url]))
$access_token = $_SESSION['OAUTH_ACCESS_TOKEN'][$access_token_url];
else
$access_token = array();
return true;
}
/*
{metadocument}
</do>
</function>
{/metadocument}
*/
/*
{metadocument}
<function>
<name>ResetAccessToken</name>
<type>BOOLEAN</type>
<documentation>
<purpose>Reset the access token to a state back when the user has
not yet authorized the access to the OAuth server API.</purpose>
<usage>Call this function if for some reason the token to access
the API was revoked and you need to ask the user to authorize
the access again.<paragraphbreak />
By default the class stores and retrieves access tokens in a
session variable named
<stringvalue>OAUTH_ACCESS_TOKEN</stringvalue>.<paragraphbreak />
This function must be called when the user is accessing your site
pages, so it can reset the information stored in session variables
that cache the state of a previously retrieved access
token.<paragraphbreak />
Actual implementations should create a sub-class and override this
function to reset the access token state when it is stored in
other types of containers, like for instance databases.</usage>
<returnvalue>This function should return
<booleanvalue>1</booleanvalue> if the access token was resetted
successfully.</returnvalue>
</documentation>
<do>
{/metadocument}
*/
Function ResetAccessToken()
{
if(!$this->GetAccessTokenURL($access_token_url))
return false;
if($this->debug)
$this->OutputDebug('Resetting the access token status for OAuth server located at '.$access_token_url);
if(!function_exists('session_start'))
return $this->SetError('Session variables are not accessible in this PHP environment');
if(session_id() === ''
&& !session_start())
return($this->SetPHPError('it was not possible to start the PHP session', $php_errormsg));
if(IsSet($_SESSION['OAUTH_ACCESS_TOKEN'][$access_token_url]))
Unset($_SESSION['OAUTH_ACCESS_TOKEN'][$access_token_url]);
return true;
}
/*
{metadocument}
</do>
</function>
{/metadocument}
*/
Function Encode($value)
{
return(is_array($value) ? $this->EncodeArray($value) : str_replace('%7E', '~', str_replace('+',' ', RawURLEncode($value))));
}
Function EncodeArray($array)
{
foreach($array as $key => $value)
$array[$key] = $this->Encode($value);
return $array;
}
Function HMAC($function, $data, $key)
{
switch($function)
{
case 'sha1':
$pack = 'H40';
break;
default:
if($this->debug)
$this->OutputDebug($function.' is not a supported an HMAC hash type');
return('');
}
if(strlen($key) > 64)
$key = pack($pack, $function($key));
if(strlen($key) < 64)
$key = str_pad($key, 64, "\0");
return(pack($pack, $function((str_repeat("\x5c", 64) ^ $key).pack($pack, $function((str_repeat("\x36", 64) ^ $key).$data)))));
}
Function SendAPIRequest($url, $method, $parameters, $oauth, $options, &$response)
{
$this->response_status = 0;
$http = new http_class;
$http->debug = ($this->debug && $this->debug_http);
$http->log_debug = true;
$http->sasl_authenticate = 0;
$http->user_agent = $this->oauth_user_agent;
$http->redirection_limit = (IsSet($options['FollowRedirection']) ? intval($options['FollowRedirection']) : 0);
$http->follow_redirect = ($http->redirection_limit != 0);
if($this->debug)
$this->OutputDebug('Accessing the '.$options['Resource'].' at '.$url);
$post_files = array();
$method = strtoupper($method);
$authorization = '';
$type = (IsSet($options['RequestContentType']) ? strtolower(trim(strtok($options['RequestContentType'], ';'))) : (($method === 'POST' || IsSet($oauth)) ? 'application/x-www-form-urlencoded' : ''));
if(IsSet($oauth))
{
$values = array(
'oauth_consumer_key'=>$this->client_id,
'oauth_nonce'=>md5(uniqid(rand(), true)),
'oauth_signature_method'=>$this->signature_method,
'oauth_timestamp'=>time(),
'oauth_version'=>'1.0',
);
$files = (IsSet($options['Files']) ? $options['Files'] : array());
if(count($files))
{
foreach($files as $name => $value)
{
if(!IsSet($parameters[$name]))
return($this->SetError('it was specified an file parameters named '.$name));
$file = array();
switch(IsSet($value['Type']) ? $value['Type'] : 'FileName')
{
case 'FileName':
$file['FileName'] = $parameters[$name];
break;
case 'Data':
$file['Data'] = $parameters[$name];
break;
default:
return($this->SetError($value['Type'].' is not a valid type for file '.$name));
}
$file['Content-Type'] = (IsSet($value['ContentType']) ? $value['ContentType'] : 'automatic/name');
$post_files[$name] = $file;
}
UnSet($parameters[$name]);
if($method !== 'POST')
{
$this->OutputDebug('For uploading files the method should be POST not '.$method);
$method = 'POST';
}
if($type !== 'multipart/form-data')
{
if(IsSet($options['RequestContentType']))
return($this->SetError('the request content type for uploading files should be multipart/form-data'));
$type = 'multipart/form-data';
}
$value_parameters = array();
}
else
{
if($this->url_parameters
&& $type === 'application/x-www-form-urlencoded'
&& count($parameters))
{
$first = (strpos($url, '?') === false);
foreach($parameters as $parameter => $value)
{
$url .= ($first ? '?' : '&').UrlEncode($parameter).'='.UrlEncode($value);
$first = false;
}
$parameters = array();
}
$value_parameters = (($type !== 'application/x-www-form-urlencoded') ? array() : $parameters);
}
$header_values = ($method === 'GET' ? array_merge($values, $oauth, $value_parameters) : array_merge($values, $oauth));
$values = array_merge($values, $oauth, $value_parameters);
$key = $this->Encode($this->client_secret).'&'.$this->Encode($this->access_token_secret);
switch($this->signature_method)
{
case 'PLAINTEXT':
$values['oauth_signature'] = $key;
break;
case 'HMAC-SHA1':
$uri = strtok($url, '?');
$sign = $method.'&'.$this->Encode($uri).'&';
$first = true;
$sign_values = $values;
$u = parse_url($url);
if(IsSet($u['query']))
{
parse_str($u['query'], $q);
foreach($q as $parameter => $value)
$sign_values[$parameter] = $value;
}
KSort($sign_values);
foreach($sign_values as $parameter => $value)
{
$sign .= $this->Encode(($first ? '' : '&').$parameter.'='.$this->Encode($value));
$first = false;
}
$header_values['oauth_signature'] = $values['oauth_signature'] = base64_encode($this->HMAC('sha1', $sign, $key));
break;
default:
return $this->SetError($this->signature_method.' signature method is not yet supported');
}
if($this->authorization_header)
{
$authorization = 'OAuth';
$first = true;
foreach($header_values as $parameter => $value)
{
$authorization .= ($first ? ' ' : ',').$parameter.'="'.$this->Encode($value).'"';
$first = false;
}
$post_values = $parameters;
}
else
{
if($method === 'GET'
|| (IsSet($options['PostValuesInURI'])
&& $options['PostValuesInURI']))
{
$first = (strcspn($url, '?') == strlen($url));
foreach($values as $parameter => $value)
{
$url .= ($first ? '?' : '&').$parameter.'='.$this->Encode($value);
$first = false;
}
$post_values = array();
}
else
$post_values = $values;
}
}
else
{
$post_values = $parameters;
if(count($parameters))
{
switch($type)
{
case 'application/x-www-form-urlencoded':
case 'multipart/form-data':
case 'application/json':
break;
default:
$first = (strpos($url, '?') === false);
foreach($parameters as $name => $value)
{
if(GetType($value) === 'array')
{
foreach($value as $index => $value)
{
$url .= ($first ? '?' : '&').$name.'='.UrlEncode($value);
$first = false;
}
}
else
{
$url .= ($first ? '?' : '&').$name.'='.UrlEncode($value);
$first = false;
}
}
}
}
}
if(strlen($authorization) === 0
&& !strcasecmp($this->access_token_type, 'Bearer'))
$authorization = 'Bearer '.$this->access_token;
if(strlen($error = $http->GetRequestArguments($url, $arguments)))
return($this->SetError('it was not possible to open the '.$options['Resource'].' URL: '.$error));
if(strlen($error = $http->Open($arguments)))
return($this->SetError('it was not possible to open the '.$options['Resource'].' URL: '.$error));
if(count($post_files))
$arguments['PostFiles'] = $post_files;
$arguments['RequestMethod'] = $method;
switch($type)
{
case 'application/x-www-form-urlencoded':
case 'multipart/form-data':
if(IsSet($options['RequestBody']))
return($this->SetError('the request body is defined automatically from the parameters'));
$arguments['PostValues'] = $post_values;
break;
case 'application/json':
$arguments['Headers']['Content-Type'] = $options['RequestContentType'];
$arguments['Body'] = (IsSet($options['RequestBody']) ? $options['RequestBody'] : json_encode($parameters));
break;
default:
if(!IsSet($options['RequestBody']))
return($this->SetError('it was not specified the body value of the of the API call request'));
$arguments['Headers']['Content-Type'] = $options['RequestContentType'];
$arguments['Body'] = $options['RequestBody'];
break;
}
$arguments['Headers']['Accept'] = (IsSet($options['Accept']) ? $options['Accept'] : '*/*'); /* */
switch(IsSet($options['AccessTokenAuthentication']) ? strtolower($options['AccessTokenAuthentication']) : '')
{
case 'basic':
$arguments['Headers']['Authorization'] = 'Basic '.base64_encode($this->client_id.':'.($this->get_token_with_api_key ? $this->api_key : $this->client_secret));
break;
case '':
if(strlen($authorization))
$arguments['Headers']['Authorization'] = $authorization;
break;
default:
return($this->SetError($this->access_token_authentication.' is not a supported authentication mechanism to retrieve an access token'));
}
if(strlen($error = $http->SendRequest($arguments))
|| strlen($error = $http->ReadReplyHeaders($headers)))
{
$http->Close();
return($this->SetError('it was not possible to retrieve the '.$options['Resource'].': '.$error));
}
$error = $http->ReadWholeReplyBody($data);
$http->Close();
if(strlen($error))
{
return($this->SetError('it was not possible to access the '.$options['Resource'].': '.$error));
}
$this->response_status = intval($http->response_status);
$content_type = (IsSet($options['ResponseContentType']) ? $options['ResponseContentType'] : (IsSet($headers['content-type']) ? strtolower(trim(strtok($headers['content-type'], ';'))) : 'unspecified'));
$content_type = preg_replace('/^(.+\\/).+\\+(.+)$/', '\\1\\2', $content_type);
switch($content_type)
{
case 'text/javascript':
case 'application/json':
if(!function_exists('json_decode'))
return($this->SetError('the JSON extension is not available in this PHP setup'));
$object = json_decode($data);
switch(GetType($object))
{
case 'object':
if(!IsSet($options['ConvertObjects'])
|| !$options['ConvertObjects'])
$response = $object;
else
{
$response = array();
foreach($object as $property => $value)
$response[$property] = $value;
}
break;
case 'array':
$response = $object;
break;
default:
if(!IsSet($object))
return($this->SetError('it was not returned a valid JSON definition of the '.$options['Resource'].' values'));
$response = $object;
break;
}
break;
case 'application/x-www-form-urlencoded':
case 'text/plain':
case 'text/html':
parse_str($data, $response);
break;
case 'text/xml':
if(IsSet($options['DecodeXMLResponse']))
{
switch(strtolower($options['DecodeXMLResponse']))
{
case 'simplexml':
if($this->debug)
$this->OutputDebug('Decoding XML response with simplexml');
try
{
$response = @new SimpleXMLElement($data);
}
catch(Exception $exception)
{
return $this->SetError('Could not parse XML response: '.$exception->getMessage());
}
break 2;
default:
return $this->SetError($options['DecodeXML'].' is not a supported method to decode XML responses');
}
}
default:
$response = $data;
break;
}
if($this->response_status >= 200
&& $this->response_status < 300)
$this->access_token_error = '';
else
{
$this->access_token_error = 'it was not possible to access the '.$options['Resource'].': it was returned an unexpected response status '.$http->response_status.' Response: '.$data;
if($this->debug)
$this->OutputDebug('Could not retrieve the OAuth access token. Error: '.$this->access_token_error);
if(IsSet($options['FailOnAccessError'])
&& $options['FailOnAccessError'])
{
$this->error = $this->access_token_error;
return false;
}
}
return true;
}
Function ProcessToken($code, $refresh)
{
if(!$this->GetRedirectURI($redirect_uri))
return false;
if($refresh)
{
$values = array(
'refresh_token'=>$this->refresh_token,
'grant_type'=>'refresh_token',
'scope'=>$this->scope,
);
}
else
{
$values = array(
'code'=>$code,
'redirect_uri'=>$redirect_uri,
'grant_type'=>'authorization_code'
);
}
$options = array(
'Resource'=>'OAuth '.($refresh ? 'refresh' : 'access').' token',
'ConvertObjects'=>true
);
switch(strtolower($this->access_token_authentication))
{
case 'basic':
$options['AccessTokenAuthentication'] = $this->access_token_authentication;
$values['redirect_uri'] = $redirect_uri;
break;
case '':
$values['client_id'] = $this->client_id;
$values['client_secret'] = ($this->get_token_with_api_key ? $this->api_key : $this->client_secret);
break;
default:
return($this->SetError($this->access_token_authentication.' is not a supported authentication mechanism to retrieve an access token'));
}
if(!$this->GetAccessTokenURL($access_token_url))
return false;
if(!$this->SendAPIRequest($access_token_url, 'POST', $values, null, $options, $response))
return false;
if(strlen($this->access_token_error))
{
$this->authorization_error = $this->access_token_error;
return true;
}
if(!IsSet($response['access_token']))
{
if(IsSet($response['error']))
{
$this->authorization_error = 'it was not possible to retrieve the access token: it was returned the error: '.$response['error'];
return true;
}
return($this->SetError('OAuth server did not return the access token'));
}
$access_token = array(
'value'=>($this->access_token = $response['access_token']),
'authorized'=>true,
);
if($this->store_access_token_response)
$access_token['response'] = $this->access_token_response = $response;
if($this->debug)
$this->OutputDebug('Access token: '.$this->access_token);
if(IsSet($response['expires_in'])
&& $response['expires_in'] == 0)
{
if($this->debug)
$this->OutputDebug('Ignoring access token expiry set to 0');
$this->access_token_expiry = '';
}
elseif(IsSet($response['expires'])
|| IsSet($response['expires_in']))
{
$expires = (IsSet($response['expires']) ? $response['expires'] : $response['expires_in']);
if(strval($expires) !== strval(intval($expires))
|| $expires <= 0)
return($this->SetError('OAuth server did not return a supported type of access token expiry time'));
$this->access_token_expiry = gmstrftime('%Y-%m-%d %H:%M:%S', time() + $expires);
if($this->debug)
$this->OutputDebug('Access token expiry: '.$this->access_token_expiry.' UTC');
$access_token['expiry'] = $this->access_token_expiry;
}
else
$this->access_token_expiry = '';
if(IsSet($response['token_type']))
{
$this->access_token_type = $response['token_type'];
if(strlen($this->access_token_type)
&& $this->debug)
$this->OutputDebug('Access token type: '.$this->access_token_type);
$access_token['type'] = $this->access_token_type;
}
else
{
$this->access_token_type = $this->default_access_token_type;
if(strlen($this->access_token_type)
&& $this->debug)
$this->OutputDebug('Assumed the default for OAuth access token type which is '.$this->access_token_type);
}
if(IsSet($response['refresh_token']))
{
$this->refresh_token = $response['refresh_token'];
if($this->debug)
$this->OutputDebug('New refresh token: '.$this->refresh_token);
$access_token['refresh'] = $this->refresh_token;
}
elseif(strlen($this->refresh_token))
{
if($this->debug)
$this->OutputDebug('Reusing previous refresh token: '.$this->refresh_token);
$access_token['refresh'] = $this->refresh_token;
}
if(!$this->StoreAccessToken($access_token))
return false;
return true;
}
Function RetrieveToken(&$valid)
{
$valid = false;
if(!$this->GetAccessToken($access_token))
return false;
if(IsSet($access_token['value']))
{
$this->access_token_expiry = '';
$expired = (IsSet($access_token['expiry']) && strcmp($this->access_token_expiry = $access_token['expiry'], gmstrftime('%Y-%m-%d %H:%M:%S')) < 0);
if($expired)
{
if($this->debug)
$this->OutputDebug('The OAuth access token expired in '.$this->access_token_expiry);
}
$this->access_token = $access_token['value'];
if(!$expired
&& $this->debug)
$this->OutputDebug('The OAuth access token '.$this->access_token.' is valid');
if(IsSet($access_token['type']))
{
$this->access_token_type = $access_token['type'];
if(strlen($this->access_token_type)
&& !$expired
&& $this->debug)
$this->OutputDebug('The OAuth access token is of type '.$this->access_token_type);
}
else
{
$this->access_token_type = $this->default_access_token_type;
if(strlen($this->access_token_type)
&& !$expired
&& $this->debug)
$this->OutputDebug('Assumed the default for OAuth access token type which is '.$this->access_token_type);
}
if(IsSet($access_token['secret']))
{
$this->access_token_secret = $access_token['secret'];
if($this->debug
&& !$expired)
$this->OutputDebug('The OAuth access token secret is '.$this->access_token_secret);
}
if(IsSet($access_token['refresh']))
$this->refresh_token = $access_token['refresh'];
else
$this->refresh_token = '';
$this->access_token_response = (($this->store_access_token_response && IsSet($access_token['response'])) ? $access_token['response'] : null);
$valid = true;
}
return true;
}
/*
{metadocument}
<function>
<name>CallAPI</name>
<type>BOOLEAN</type>
<documentation>
<purpose>Send a HTTP request to the Web services API using a
previously obtained authorization token via OAuth.</purpose>
<usage>This function can be used to call an API after having
previously obtained an access token through the OAuth protocol
using the <functionlink>Process</functionlink> function, or by
directly setting the variables
<variablelink>access_token</variablelink>, as well as
<variablelink>access_token_secret</variablelink> in case of using
OAuth 1.0 or 1.0a services.</usage>
<returnvalue>This function returns <booleanvalue>1</booleanvalue> if
the call was done successfully.</returnvalue>
</documentation>
<argument>
<name>url</name>
<type>STRING</type>
<documentation>
<purpose>URL of the API where the HTTP request will be sent.</purpose>
</documentation>
</argument>
<argument>
<name>method</name>
<type>STRING</type>
<documentation>
<purpose>HTTP method that will be used to send the request. It can
be <stringvalue>GET</stringvalue>,
<stringvalue>POST</stringvalue>,
<stringvalue>DELETE</stringvalue>, <stringvalue>PUT</stringvalue>,
etc..</purpose>
</documentation>
</argument>
<argument>
<name>parameters</name>
<type>HASH</type>
<documentation>
<purpose>Associative array with the names and values of the API
call request parameters.</purpose>
</documentation>
</argument>
<argument>
<name>options</name>
<type>HASH</type>
<documentation>
<purpose>Associative array with additional options to configure
the request. Currently it supports the following
options:<paragraphbreak />
<stringvalue>2Legged</stringvalue>: boolean option that
determines if the API request should be 2 legged. The default
value is <tt><booleanvalue>0</booleanvalue></tt>.<paragraphbreak />
<stringvalue>Accept</stringvalue>: content type value of the
Accept HTTP header to be sent in the API call HTTP request.
Some APIs require that a certain value be sent to specify
which version of the API is being called. The default value is
<stringvalue>*&#47;*</stringvalue>.<paragraphbreak />
<stringvalue>ConvertObjects</stringvalue>: boolean option that
determines if objects should be converted into arrays when the
response is returned in JSON format. The default value is
<booleanvalue>0</booleanvalue>.<paragraphbreak />
<stringvalue>DecodeXMLResponse</stringvalue>: name of the method
to decode XML responses. Currently only
<stringvalue>simplexml</stringvalue> is supported. It makes a
XML response be parsed and returned as a SimpleXMLElement
object.<paragraphbreak />
<stringvalue>FailOnAccessError</stringvalue>: boolean option
that determines if this functions should fail when the server
response status is not between 200 and 299. The default value
is <booleanvalue>0</booleanvalue>.<paragraphbreak />
<stringvalue>Files</stringvalue>: associative array with
details of the parameters that must be passed as file uploads.
The array indexes must have the same name of the parameters
to be sent as files. The respective array entry values must
also be associative arrays with the parameters for each file.
Currently it supports the following parameters:<paragraphbreak />
- <tt>Type</tt> - defines how the parameter value should be
treated. It can be <tt>'FileName'</tt> if the parameter value is
is the name of a local file to be uploaded. It may also be
<tt>'Data'</tt> if the parameter value is the actual data of
the file to be uploaded.<paragraphbreak />
- Default: <tt>'FileName'</tt><paragraphbreak />
- <tt>ContentType</tt> - MIME value of the content type of the
file. It can be <tt>'automatic/name'</tt> if the content type
should be determine from the file name extension.<paragraphbreak />
- Default: <tt>'automatic/name'</tt><paragraphbreak />
<stringvalue>PostValuesInURI</stringvalue>: boolean option to
determine that a POST request should pass the request values
in the URI. The default value is
<booleanvalue>0</booleanvalue>.<paragraphbreak />
<stringvalue>FollowRedirection</stringvalue>: limit number of
times that HTTP response redirects will be followed. If it is
set to <integervalue>0</integervalue>, redirection responses
fail in error. The default value is
<integervalue>0</integervalue>.<paragraphbreak />
<stringvalue>RequestBody</stringvalue>: request body data of a
custom type. The <stringvalue>RequestContentType</stringvalue>
option must be specified, so the
<stringvalue>RequestBody</stringvalue> option is considered.<paragraphbreak />
<stringvalue>RequestContentType</stringvalue>: content type that
should be used to send the request values. It can be either
<stringvalue>application/x-www-form-urlencoded</stringvalue>
for sending values like from Web forms, or
<stringvalue>application/json</stringvalue> for sending the
values encoded in JSON format. Other types are accepted if the
<stringvalue>RequestBody</stringvalue> option is specified.
The default value is
<stringvalue>application/x-www-form-urlencoded</stringvalue>.<paragraphbreak />
<stringvalue>RequestBody</stringvalue>: request body data of a
custom type. The <stringvalue>RequestContentType</stringvalue>
option must be specified, so the
<stringvalue>RequestBody</stringvalue> option is considered.<paragraphbreak />
<stringvalue>Resource</stringvalue>: string with a label that
will be used in the error messages and debug log entries to
identify what operation the request is performing. The default
value is <stringvalue>API call</stringvalue>.<paragraphbreak />
<stringvalue>ResponseContentType</stringvalue>: content type
that should be considered when decoding the API request
response. This overrides the <tt>Content-Type</tt> header
returned by the server. If the content type is
<stringvalue>application/x-www-form-urlencoded</stringvalue>
the function will parse the data returning an array of
key-value pairs. If the content type is
<stringvalue>application/json</stringvalue> the response will
be decode as a JSON-encoded data type. Other content type
values will make the function return the original response
value as it was returned from the server. The default value
for this option is to use what the server returned in the
<tt>Content-Type</tt> header.</purpose>
</documentation>
</argument>
<argument>
<name>response</name>
<type>STRING</type>
<out />
<documentation>
<purpose>Return the value of the API response. If the value is
JSON encoded, this function will decode it and return the value
converted to respective types. If the value is form encoded,
this function will decode the response and return it as an
array. Otherwise, the class will return the value as a
string.</purpose>
</documentation>
</argument>
<do>
{/metadocument}
*/
Function CallAPI($url, $method, $parameters, $options, &$response)
{
if(!IsSet($options['Resource']))
$options['Resource'] = 'API call';
if(!IsSet($options['ConvertObjects']))
$options['ConvertObjects'] = false;
if(strlen($this->access_token) === 0)
{
if(!$this->RetrieveToken($valid))
return false;
if(!$valid)
return $this->SetError('the access token is not set to a valid value');
}
switch(intval($this->oauth_version))
{
case 1:
$oauth = array(
(strlen($this->access_token_parameter) ? $this->access_token_parameter : 'oauth_token')=>((IsSet($options['2Legged']) && $options['2Legged']) ? '' : $this->access_token)
);
break;
case 2:
if(strlen($this->access_token_expiry)
&& strcmp($this->access_token_expiry, gmstrftime('%Y-%m-%d %H:%M:%S')) <= 0)
{
if(strlen($this->refresh_token) === 0)
return($this->SetError('the access token expired and no refresh token is available'));
if($this->debug)
$this->OutputDebug('Refreshing the OAuth access token');
if(!$this->ProcessToken(null, true))
return false;
if(IsSet($options['FailOnAccessError'])
&& $options['FailOnAccessError']
&& strlen($this->authorization_error))
{
$this->error = $this->authorization_error;
return false;
}
}
$oauth = null;
if(strcasecmp($this->access_token_type, 'Bearer'))
$url .= (strcspn($url, '?') < strlen($url) ? '&' : '?').(strlen($this->access_token_parameter) ? $this->access_token_parameter : 'access_token').'='.UrlEncode($this->access_token);
break;
default:
return($this->SetError($this->oauth_version.' is not a supported version of the OAuth protocol'));
}
return($this->SendAPIRequest($url, $method, $parameters, $oauth, $options, $response));
}
/*
{metadocument}
</do>
</function>
{/metadocument}
*/
/*
{metadocument}
<function>
<name>Initialize</name>
<type>BOOLEAN</type>
<documentation>
<purpose>Initialize the class variables and internal state. It must
be called before calling other class functions.</purpose>
<usage>Set the <variablelink>server</variablelink> variable before
calling this function to let it initialize the class variables to
work with the specified server type. Alternatively, you can set
other class variables manually to make it work with servers that
are not yet built-in supported.</usage>
<returnvalue>This function returns <booleanvalue>1</booleanvalue> if
it was able to successfully initialize the class for the specified
server type.</returnvalue>
</documentation>
<do>
{/metadocument}
*/
Function Initialize()
{
if(strlen($this->server) === 0)
return true;
$this->oauth_version =
$this->dialog_url =
$this->access_token_url =
$this->request_token_url =
$this->append_state_to_redirect_uri = '';
$this->authorization_header = true;
$this->url_parameters = false;
$this->token_request_method = 'GET';
$this->signature_method = 'HMAC-SHA1';
$this->access_token_authentication = '';
$this->access_token_parameter = '';
$this->default_access_token_type = '';
$this->store_access_token_response = false;
switch($this->server)
{
case 'Facebook':
$this->oauth_version = '2.0';
$this->dialog_url = 'https://www.facebook.com/dialog/oauth?client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&scope={SCOPE}&state={STATE}';
$this->access_token_url = 'https://graph.facebook.com/oauth/access_token';
break;
case 'github':
$this->oauth_version = '2.0';
$this->dialog_url = 'https://github.com/login/oauth/authorize?client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&scope={SCOPE}&state={STATE}';
$this->access_token_url = 'https://github.com/login/oauth/access_token';
break;
case 'Google':
$this->oauth_version = '2.0';
$this->dialog_url = 'https://accounts.google.com/o/oauth2/auth?response_type=code&client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&scope={SCOPE}&state={STATE}';
$this->offline_dialog_url = 'https://accounts.google.com/o/oauth2/auth?response_type=code&client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&scope={SCOPE}&state={STATE}&access_type=offline&approval_prompt=force';
$this->access_token_url = 'https://accounts.google.com/o/oauth2/token';
break;
case 'LinkedIn':
$this->oauth_version = '1.0a';
$this->request_token_url = 'https://api.linkedin.com/uas/oauth/requestToken?scope={SCOPE}';
$this->dialog_url = 'https://api.linkedin.com/uas/oauth/authenticate';
$this->access_token_url = 'https://api.linkedin.com/uas/oauth/accessToken';
$this->url_parameters = true;
break;
case 'Microsoft':
$this->oauth_version = '2.0';
$this->dialog_url = 'https://login.live.com/oauth20_authorize.srf?client_id={CLIENT_ID}&scope={SCOPE}&response_type=code&redirect_uri={REDIRECT_URI}&state={STATE}';
$this->access_token_url = 'https://login.live.com/oauth20_token.srf';
break;
case 'Twitter':
$this->oauth_version = '1.0a';
$this->request_token_url = 'https://api.twitter.com/oauth/request_token';
$this->dialog_url = 'https://api.twitter.com/oauth/authenticate';
$this->access_token_url = 'https://api.twitter.com/oauth/access_token';
$this->url_parameters = false;
break;
case 'Yahoo':
$this->oauth_version = '1.0a';
$this->request_token_url = 'https://api.login.yahoo.com/oauth/v2/get_request_token';
$this->dialog_url = 'https://api.login.yahoo.com/oauth/v2/request_auth';
$this->access_token_url = 'https://api.login.yahoo.com/oauth/v2/get_token';
$this->authorization_header = false;
break;
default:
if(!($json = @file_get_contents($this->configuration_file)))
{
if(!file_exists($this->configuration_file))
return $this->SetError('the OAuth server configuration file '.$this->configuration_file.' does not exist');
return $this->SetPHPError('could not read the OAuth server configuration file '.$this->configuration_file, $php_errormsg);
}
$oauth_server = json_decode($json);
if(!IsSet($oauth_server))
return $this->SetPHPError('It was not possible to decode the OAuth server configuration file '.$this->configuration_file.' eventually due to incorrect format', $php_errormsg);
if(GetType($oauth_server) !== 'object')
return $this->SetError('It was not possible to decode the OAuth server configuration file '.$this->configuration_file.' because it does not correctly define a JSON object');
if(!IsSet($oauth_server->servers)
|| GetType($oauth_server->servers) !== 'object')
return $this->SetError('It was not possible to decode the OAuth server configuration file '.$this->configuration_file.' because it does not correctly define a JSON object for servers');
if(!IsSet($oauth_server->servers->{$this->server}))
return($this->SetError($this->server.' is not yet a supported type of OAuth server. Please send a request in this class support forum (preferred) http://www.phpclasses.org/oauth-api , or if it is a security or private matter, contact the author Manuel Lemos mlemos@acm.org to request adding built-in support to this type of OAuth server.'));
$properties = $oauth_server->servers->{$this->server};
if(GetType($properties) !== 'object')
return $this->SetError('The OAuth server configuration file '.$this->configuration_file.' for the "'.$this->server.'" server does not correctly define a JSON object');
$types = array(
'oauth_version'=>'string',
'request_token_url'=>'string',
'dialog_url'=>'string',
'offline_dialog_url'=>'string',
'access_token_url'=>'string',
'append_state_to_redirect_uri'=> 'string',
'authorization_header'=>'boolean',
'url_parameters' => 'boolean',
'token_request_method'=>'string',
'signature_method'=>'string',
'access_token_authentication'=>'string',
'access_token_parameter'=>'string',
'default_access_token_type'=>'string',
'store_access_token_response'=>'boolean'
);
$required = array(
'oauth_version'=>array(),
'request_token_url'=>array('1.0', '1.0a'),
'dialog_url'=>array(),
'access_token_url'=>array(),
);
foreach($properties as $property => $value)
{
if(!IsSet($types[$property]))
return $this->SetError($property.' is not a supported property for the "'.$this->server.'" server in the OAuth server configuration file '.$this->configuration_file);
$type = GetType($value);
$expected = $types[$property];
if($type !== $expected)
return $this->SetError(' the property "'.$property.'" for the "'.$this->server.'" server is not of type "'.$expected.'", it is of type "'.$type.'", in the OAuth server configuration file '.$this->configuration_file);
$this->{$property} = $value;
UnSet($required[$property]);
}
foreach($required as $property => $value)
{
if(count($value)
&& in_array($this->oauth_version, $value))
return $this->SetError('the property "'.$property.'" is not defined for the "'.$this->server.'" server in the OAuth server configuration file '.$this->configuration_file);
}
break;
}
return(true);
}
/*
{metadocument}
</do>
</function>
{/metadocument}
*/
/*
{metadocument}
<function>
<name>Process</name>
<type>BOOLEAN</type>
<documentation>
<purpose>Process the OAuth protocol interaction with the OAuth
server.</purpose>
<usage>Call this function when you need to retrieve the OAuth access
token. Check the <variablelink>access_token</variablelink> to
determine if the access token was obtained successfully.</usage>
<returnvalue>This function returns <booleanvalue>1</booleanvalue> if
the OAuth protocol was processed without errors.</returnvalue>
</documentation>
<do>
{/metadocument}
*/
Function Process()
{
switch(intval($this->oauth_version))
{
case 1:
$one_a = ($this->oauth_version === '1.0a');
if($this->debug)
$this->OutputDebug('Checking the OAuth token authorization state');
if(!$this->GetAccessToken($access_token))
return false;
if(IsSet($access_token['authorized'])
&& IsSet($access_token['value']))
{
$expired = (IsSet($access_token['expiry']) && strcmp($access_token['expiry'], gmstrftime('%Y-%m-%d %H:%M:%S')) <= 0);
if(!$access_token['authorized']
|| $expired)
{
if($this->debug)
{
if($expired)
$this->OutputDebug('The OAuth token expired on '.$access_token['expiry'].'UTC');
else
$this->OutputDebug('The OAuth token is not yet authorized');
$this->OutputDebug('Checking the OAuth token and verifier');
}
if(!$this->GetRequestToken($token, $verifier))
return false;
if(!IsSet($token)
|| ($one_a
&& !IsSet($verifier)))
{
if(!$this->GetRequestDenied($denied))
return false;
if(IsSet($denied)
&& $denied === $access_token['value'])
{
if($this->debug)
$this->OutputDebug('The authorization request was denied');
$this->authorization_error = 'the request was denied';
return true;
}
else
{
if($this->debug)
$this->OutputDebug('Reset the OAuth token state because token and verifier are not both set');
$access_token = array();
}
}
elseif($token !== $access_token['value'])
{
if($this->debug)
$this->OutputDebug('Reset the OAuth token state because token does not match what as previously retrieved');
$access_token = array();
}
else
{
if(!$this->GetAccessTokenURL($url))
return false;
$oauth = array(
'oauth_token'=>$token,
);
if($one_a)
$oauth['oauth_verifier'] = $verifier;
$this->access_token_secret = $access_token['secret'];
$options = array('Resource'=>'OAuth access token');
$method = strtoupper($this->token_request_method);
switch($method)
{
case 'GET':
break;
case 'POST':
$options['PostValuesInURI'] = true;
break;
default:
$this->error = $method.' is not a supported method to request tokens';
break;
}
if(!$this->SendAPIRequest($url, $method, array(), $oauth, $options, $response))
return false;
if(strlen($this->access_token_error))
{
$this->authorization_error = $this->access_token_error;
return true;
}
if(!IsSet($response['oauth_token'])
|| !IsSet($response['oauth_token_secret']))
{
$this->authorization_error= 'it was not returned the access token and secret';
return true;
}
$access_token = array(
'value'=>$response['oauth_token'],
'secret'=>$response['oauth_token_secret'],
'authorized'=>true
);
if(IsSet($response['oauth_expires_in'])
&& $response['oauth_expires_in'] == 0)
{
if($this->debug)
$this->OutputDebug('Ignoring access token expiry set to 0');
$this->access_token_expiry = '';
}
elseif(IsSet($response['oauth_expires_in']))
{
$expires = $response['oauth_expires_in'];
if(strval($expires) !== strval(intval($expires))
|| $expires <= 0)
return($this->SetError('OAuth server did not return a supported type of access token expiry time'));
$this->access_token_expiry = gmstrftime('%Y-%m-%d %H:%M:%S', time() + $expires);
if($this->debug)
$this->OutputDebug('Access token expiry: '.$this->access_token_expiry.' UTC');
$access_token['expiry'] = $this->access_token_expiry;
}
else
$this->access_token_expiry = '';
if(!$this->StoreAccessToken($access_token))
return false;
if($this->debug)
$this->OutputDebug('The OAuth token was authorized');
}
}
elseif($this->debug)
$this->OutputDebug('The OAuth token was already authorized');
if(IsSet($access_token['authorized'])
&& $access_token['authorized'])
{
$this->access_token = $access_token['value'];
$this->access_token_secret = $access_token['secret'];
return true;
}
}
else
{
if($this->debug)
$this->OutputDebug('The OAuth access token is not set');
$access_token = array();
}
if(!IsSet($access_token['authorized']))
{
if($this->debug)
$this->OutputDebug('Requesting the unauthorized OAuth token');
if(!$this->GetRequestTokenURL($url))
return false;
$url = str_replace('{SCOPE}', UrlEncode($this->scope), $url);
if(!$this->GetRedirectURI($redirect_uri))
return false;
$oauth = array(
'oauth_callback'=>$redirect_uri,
);
$options = array(
'Resource'=>'OAuth request token',
'FailOnAccessError'=>true
);
$method = strtoupper($this->token_request_method);
switch($method)
{
case 'GET':
break;
case 'POST':
$options['PostValuesInURI'] = true;
break;
default:
$this->error = $method.' is not a supported method to request tokens';
break;
}
if(!$this->SendAPIRequest($url, $method, array(), $oauth, $options, $response))
return false;
if(strlen($this->access_token_error))
{
$this->authorization_error = $this->access_token_error;
return true;
}
if(!IsSet($response['oauth_token'])
|| !IsSet($response['oauth_token_secret']))
{
$this->authorization_error = 'it was not returned the requested token';
return true;
}
$access_token = array(
'value'=>$response['oauth_token'],
'secret'=>$response['oauth_token_secret'],
'authorized'=>false
);
if(IsSet($response['login_url']))
$access_token['login_url'] = $response['login_url'];
if(!$this->StoreAccessToken($access_token))
return false;
}
if(!$this->GetDialogURL($url))
return false;
if($url === 'automatic')
{
if(!IsSet($access_token['login_url']))
return($this->SetError('The request token response did not automatically the login dialog URL as expected'));
if($this->debug)
$this->OutputDebug('Dialog URL obtained automatically from the request token response: '.$url);
$url = $access_token['login_url'];
}
else
$url .= (strpos($url, '?') === false ? '?' : '&').'oauth_token='.$access_token['value'];
if(!$one_a)
{
if(!$this->GetRedirectURI($redirect_uri))
return false;
$url .= '&oauth_callback='.UrlEncode($redirect_uri);
}
if($this->debug)
$this->OutputDebug('Redirecting to OAuth authorize page '.$url);
$this->Redirect($url);
$this->exit = true;
return true;
case 2:
if($this->debug)
{
if(!$this->GetAccessTokenURL($access_token_url))
return false;
$this->OutputDebug('Checking if OAuth access token was already retrieved from '.$access_token_url);
}
if(!$this->RetrieveToken($valid))
return false;
if($valid)
return true;
if($this->debug)
$this->OutputDebug('Checking the authentication state in URI '.$_SERVER['REQUEST_URI']);
if(!$this->GetStoredState($stored_state))
return false;
if(strlen($stored_state) == 0)
return($this->SetError('it was not set the OAuth state'));
if(!$this->GetRequestState($state))
return false;
if($state === $stored_state)
{
if($this->debug)
$this->OutputDebug('Checking the authentication code');
if(!$this->GetRequestCode($code))
return false;
if(strlen($code) == 0)
{
if(!$this->GetRequestError($this->authorization_error))
return false;
if(IsSet($this->authorization_error))
{
if($this->debug)
$this->OutputDebug('Authorization failed with error code '.$this->authorization_error);
switch($this->authorization_error)
{
case 'invalid_request':
case 'unauthorized_client':
case 'access_denied':
case 'unsupported_response_type':
case 'invalid_scope':
case 'server_error':
case 'temporarily_unavailable':
case 'user_denied':
return true;
default:
return($this->SetError('it was returned an unknown OAuth error code'));
}
}
return($this->SetError('it was not returned the OAuth dialog code'));
}
if(!$this->ProcessToken($code, false))
return false;
}
else
{
if(!$this->GetRedirectURI($redirect_uri))
return false;
if(strlen($this->append_state_to_redirect_uri))
$redirect_uri .= (strpos($redirect_uri, '?') === false ? '?' : '&').$this->append_state_to_redirect_uri.'='.$stored_state;
if(!$this->GetDialogURL($url, $redirect_uri, $stored_state))
return false;
if(strlen($url) == 0)
return($this->SetError('it was not set the OAuth dialog URL'));
if($this->debug)
$this->OutputDebug('Redirecting to OAuth Dialog '.$url);
$this->Redirect($url);
$this->exit = true;
}
break;
default:
return($this->SetError($this->oauth_version.' is not a supported version of the OAuth protocol'));
}
return(true);
}
/*
{metadocument}
</do>
</function>
{/metadocument}
*/
/*
{metadocument}
<function>
<name>Finalize</name>
<type>BOOLEAN</type>
<documentation>
<purpose>Cleanup any resources that may have been used during the
OAuth protocol processing or execution of API calls.</purpose>
<usage>Always call this function as the last step after calling the
functions <functionlink>Process</functionlink> or
<functionlink>CallAPI</functionlink>.</usage>
<returnvalue>This function returns <booleanvalue>1</booleanvalue> if
the function cleaned up any resources successfully.</returnvalue>
</documentation>
<argument>
<name>success</name>
<type>BOOLEAN</type>
<documentation>
<purpose>Pass the last success state returned by the class or any
external code processing the class function results.</purpose>
</documentation>
</argument>
<do>
{/metadocument}
*/
Function Finalize($success)
{
return($success);
}
/*
{metadocument}
</do>
</function>
{/metadocument}
*/
/*
{metadocument}
<function>
<name>Output</name>
<type>VOID</type>
<documentation>
<purpose>Display the results of the OAuth protocol processing.</purpose>
<usage>Only call this function if you are debugging the OAuth
authorization process and you need to view what was its
results.</usage>
</documentation>
<do>
{/metadocument}
*/
Function Output()
{
if(strlen($this->authorization_error)
|| strlen($this->access_token_error)
|| strlen($this->access_token))
{
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>OAuth client result</title>
</head>
<body>
<h1>OAuth client result</h1>
<?php
if(strlen($this->authorization_error))
{
?>
<p>It was not possible to authorize the application.<?php
if($this->debug)
{
?>
<br>Authorization error: <?php echo HtmlSpecialChars($this->authorization_error);
}
?></p>
<?php
}
elseif(strlen($this->access_token_error))
{
?>
<p>It was not possible to use the application access token.
<?php
if($this->debug)
{
?>
<br>Error: <?php echo HtmlSpecialChars($this->access_token_error);
}
?></p>
<?php
}
elseif(strlen($this->access_token))
{
?>
<p>The application authorization was obtained successfully.
<?php
if($this->debug)
{
?>
<br>Access token: <?php echo HtmlSpecialChars($this->access_token);
if(IsSet($this->access_token_secret))
{
?>
<br>Access token secret: <?php echo HtmlSpecialChars($this->access_token_secret);
}
}
?></p>
<?php
if(strlen($this->access_token_expiry))
{
?>
<p>Access token expiry: <?php echo $this->access_token_expiry; ?> UTC</p>
<?php
}
}
?>
</body>
</html>
<?php
}
}
/*
{metadocument}
</do>
</function>
{/metadocument}
*/
};
/*
{metadocument}
</class>
{/metadocument}
*/
?>

View file

@ -0,0 +1,272 @@
{
"version": "$Id: oauth_configuration.json,v 1.6 2014/04/12 10:24:01 mlemos Exp $",
"comments": [
"The servers entry should be an object with a list of object",
"entries, one for each server type. The server object entry name is",
"the name of the server type. Each server entry is an object with",
"some mandatory properties: oauth_version, dialog_url,",
"access_token_url and request_token_url (just for Oauth 1.0 and",
"1.0a). Check the OAuth client class for the complete list of server",
"properties."
],
"servers":
{
"37Signals":
{
"oauth_version": "2.0",
"dialog_url": "https://launchpad.37signals.com/authorization/new?type=web_server&client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&state={STATE}&scope={SCOPE}",
"access_token_url": "https://launchpad.37signals.com/authorization/token?type=web_server"
},
"Amazon":
{
"oauth_version": "2.0",
"dialog_url": "https://www.amazon.com/ap/oa?client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&scope={SCOPE}&response_type=code&state={STATE}",
"access_token_url": "https://api.amazon.com/auth/o2/token"
},
"Bitbucket":
{
"oauth_version": "1.0a",
"request_token_url": "https://bitbucket.org/!api/1.0/oauth/request_token",
"dialog_url": "https://bitbucket.org/!api/1.0/oauth/authenticate",
"access_token_url": "https://bitbucket.org/!api/1.0/oauth/access_token",
"url_parameters": false
},
"Box":
{
"oauth_version": "2.0",
"dialog_url": "https://www.box.com/api/oauth2/authorize?response_type=code&client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&state={STATE}&scope={SCOPE}",
"offline_dialog_url": "https://www.box.com/api/oauth2/authorize?response_type=code&client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&state={STATE}&access_type=offline&approval_prompt=force",
"access_token_url": "https://www.box.com/api/oauth2/token"
},
"Buffer":
{
"oauth_version": "2.0",
"dialog_url": "https://bufferapp.com/oauth2/authorize?client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&response_type=code&state={STATE}&scope={SCOPE}",
"access_token_url": "https://api.bufferapp.com/1/oauth2/token.json"
},
"Dailymotion":
{
"oauth_version": "2.0",
"dialog_url": "https://api.dailymotion.com/oauth/authorize?client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&response_type=code&state={STATE}&scope={SCOPE}",
"access_token_url": "https://api.dailymotion.com/oauth/token"
},
"Discogs":
{
"oauth_version": "1.0a",
"request_token_url": "http://api.discogs.com/oauth/request_token",
"dialog_url": "http://www.discogs.com/oauth/authorize",
"access_token_url": "http://api.discogs.com/oauth/access_token"
},
"Disqus":
{
"oauth_version": "2.0",
"dialog_url": "https://disqus.com/api/oauth/2.0/authorize/?response_type=code&client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&scope={SCOPE}&state={STATE}",
"access_token_url": "https://disqus.com/api/oauth/2.0/access_token/"
},
"Dropbox":
{
"oauth_version": "1.0",
"request_token_url": "https://api.dropbox.com/1/oauth/request_token",
"dialog_url": "https://www.dropbox.com/1/oauth/authorize",
"access_token_url": "https://api.dropbox.com/1/oauth/access_token",
"authorization_header": false
},
"Dropbox2":
{
"oauth_version": "2.0",
"dialog_url": "https://www.dropbox.com/1/oauth2/authorize?response_type=code&client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&scope={SCOPE}&state={STATE}",
"access_token_url": "https://www.dropbox.com/1/oauth2/token"
},
"Etsy":
{
"oauth_version": "1.0a",
"request_token_url": "https://openapi.etsy.com/v2/oauth/request_token?scope={SCOPE}",
"dialog_url": "automatic",
"access_token_url": "https://openapi.etsy.com/v2/oauth/access_token"
},
"Eventful":
{
"oauth_version": "1.0a",
"request_token_url": "http://eventful.com/oauth/request_token",
"dialog_url": "http://eventful.com/oauth/authorize",
"access_token_url": "http://eventful.com/oauth/access_token",
"authorization_header": false,
"url_parameters": true,
"token_request_method": "POST"
},
"Evernote":
{
"oauth_version": "1.0a",
"request_token_url": "https://sandbox.evernote.com/oauth",
"dialog_url": "https://sandbox.evernote.com/OAuth.action",
"access_token_url": "https://sandbox.evernote.com/oauth",
"url_parameters": true,
"authorization_header": false
},
"Fitbit":
{
"oauth_version": "1.0a",
"request_token_url": "http://api.fitbit.com/oauth/request_token",
"dialog_url": "http://api.fitbit.com/oauth/authorize",
"access_token_url": "http://api.fitbit.com/oauth/access_token"
},
"Flickr":
{
"oauth_version": "1.0a",
"request_token_url": "http://www.flickr.com/services/oauth/request_token",
"dialog_url": "http://www.flickr.com/services/oauth/authorize?perms={SCOPE}",
"access_token_url": "http://www.flickr.com/services/oauth/access_token",
"authorization_header": false
},
"Foursquare":
{
"oauth_version": "2.0",
"dialog_url": "https://foursquare.com/oauth2/authorize?client_id={CLIENT_ID}&scope={SCOPE}&response_type=code&redirect_uri={REDIRECT_URI}&state={STATE}",
"access_token_url": "https://foursquare.com/oauth2/access_token",
"access_token_parameter": "oauth_token"
},
"Google1":
{
"oauth_version": "1.0a",
"dialog_url": "https://www.google.com/accounts/OAuthAuthorizeToken",
"access_token_url": "https://www.google.com/accounts/OAuthGetAccessToken",
"request_token_url": "https://www.google.com/accounts/OAuthGetRequestToken?scope={SCOPE}"
},
"Instagram":
{
"oauth_version": "2.0",
"dialog_url": "https://api.instagram.com/oauth/authorize/?client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&scope={SCOPE}&response_type=code&state={STATE}",
"access_token_url": "https://api.instagram.com/oauth/access_token"
},
"Rdio":
{
"oauth_version": "1.0a",
"request_token_url": "http://api.rdio.com/oauth/request_token",
"dialog_url": "https://www.rdio.com/oauth/authorize",
"access_token_url": "http://api.rdio.com/oauth/access_token"
},
"Reddit":
{
"oauth_version": "2.0",
"dialog_url": "https://ssl.reddit.com/api/v1/authorize?response_type=code&client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&scope={SCOPE}&state={STATE}",
"offline_dialog_url": "https://ssl.reddit.com/api/v1/authorize?response_type=code&client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&scope={SCOPE}&state={STATE}&duration=permanent",
"access_token_url": "https://ssl.reddit.com/api/v1/access_token",
"access_token_authentication": "basic"
},
"RightSignature":
{
"oauth_version": "1.0a",
"request_token_url": "https://rightsignature.com/oauth/request_token",
"dialog_url": "https://rightsignature.com/oauth/authorize",
"access_token_url": "https://rightsignature.com/oauth/access_token",
"authorization_header": false
},
"Salesforce":
{
"oauth_version": "2.0",
"dialog_url": "https://login.salesforce.com/services/oauth2/authorize?response_type=code&client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&scope={SCOPE}&state={STATE}",
"access_token_url": "https://login.salesforce.com/services/oauth2/token",
"default_access_token_type": "Bearer",
"store_access_token_response": true
},
"Scoop.it":
{
"oauth_version": "1.0a",
"request_token_url": "https://www.scoop.it/oauth/request",
"dialog_url": "https://www.scoop.it/oauth/authorize",
"access_token_url": "https://www.scoop.it/oauth/access",
"authorization_header": false
},
"StockTwits":
{
"oauth_version": "2.0",
"dialog_url": "https://api.stocktwits.com/api/2/oauth/authorize?client_id={CLIENT_ID}&response_type=code&redirect_uri={REDIRECT_URI}&scope={SCOPE}&state={STATE}",
"access_token_url": "https://api.stocktwits.com/api/2/oauth/token"
},
"SurveyMonkey":
{
"oauth_version": "2.0",
"dialog_url": "https://api.surveymonkey.net/oauth/authorize?client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&response_type=code&state={STATE}&api_key={API_KEY}&scope={SCOPE}",
"access_token_url": "https://api.surveymonkey.net/oauth/token?api_key={API_KEY}"
},
"Tumblr":
{
"oauth_version": "1.0a",
"request_token_url": "http://www.tumblr.com/oauth/request_token",
"dialog_url": "http://www.tumblr.com/oauth/authorize",
"access_token_url": "http://www.tumblr.com/oauth/access_token"
},
"Vimeo":
{
"oauth_version": "2.0",
"dialog_url": "https://api.vimeo.com/oauth/authorize?client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&response_type=code&state={STATE}&scope={SCOPE}",
"access_token_url": "https://api.vimeo.com/oauth/access_token"
},
"VK":
{
"oauth_version": "2.0",
"dialog_url": "https://oauth.vk.com/authorize?client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&scope={SCOPE}&state={STATE}",
"access_token_url": "https://oauth.vk.com/access_token"
},
"Withings":
{
"oauth_version": "1.0",
"request_token_url": "https://oauth.withings.com/account/request_token",
"dialog_url": "https://oauth.withings.com/account/authorize",
"access_token_url": "https://oauth.withings.com/account/access_token",
"authorization_header": false
},
"Wordpress":
{
"oauth_version": "2.0",
"dialog_url": "https://public-api.wordpress.com/oauth2/authorize?client_id={CLIENT_ID}&redirect_uri={REDIRECT_URI}&response_type=code&state={STATE}&scope={SCOPE}",
"access_token_url": "https://public-api.wordpress.com/oauth2/token"
},
"Xero":
{
"oauth_version": "1.0a",
"request_token_url": "https://api.xero.com/oauth/RequestToken",
"dialog_url": "https://api.xero.com/oauth/Authorize",
"access_token_url": "https://api.xero.com/oauth/AccessToken"
},
"XING":
{
"oauth_version": "1.0a",
"request_token_url": "https://api.xing.com/v1/request_token",
"dialog_url": "https://api.xing.com/v1/authorize",
"access_token_url": "https://api.xing.com/v1/access_token",
"authorization_header": false
}
}
}

BIN
appnet/test/master.zip Normal file

Binary file not shown.

29
appnet/test2.php Executable file
View file

@ -0,0 +1,29 @@
<?php
require_once("boot.php");
if(@is_null($a)) {
$a = new App;
}
@include(".htconfig.php");
require_once("dba.php");
dba::connect($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
$a->set_baseurl(get_config('system','url'));
$items = q("select * from item where id=3602849");
$b = $items[0];
$b["body"] = "[vimeo]http://vimeo.com/91121293[/vimeo]";
$b["body"] = "[share author='KueltuertageAugsburg' profile='https://twitter.com/KueltuertageA' avatar='https://pbs.twimg.com/profile_images/1575855154/logo_kueltuerverein_brief_normal.jpg' link='https://twitter.com/KueltuertageA/status/424977769080958976']Da will eine 'Bürgerinitiative Ausländerstopp' in #Augsburg zur [url=http://www.heise.de]Kommunalwahl[/url] antreten.[/share]";
require_once("include/plaintext.php");
require_once("addon/appnet/appnet.php");
$post = plaintext($a, $b, 256, false, 6);
$text = appnet_create_entities($a, $b, $post);
//print_r($post);
echo $text;

6284
appnet/users.txt Normal file
View file

@ -0,0 +1,6284 @@
https://alpha.app.net/polarstern - polarstern
https://alpha.app.net/schoeni - schoeni
https://alpha.app.net/furstenberg - furstenberg
https://alpha.app.net/hekau - hekau
https://alpha.app.net/rossa - rossa
https://alpha.app.net/rabryst - rabryst
https://alpha.app.net/bazbt3 - bazbt3
https://alpha.app.net/hazardwarning - hazardwarning
https://alpha.app.net/wickedgood - wickedgood
https://alpha.app.net/joeo10 - joeo10
https://alpha.app.net/raghed - raghed
https://alpha.app.net/tangentworlds - Brian
https://alpha.app.net/jvimedia - Johannes V.
https://alpha.app.net/cyberage - Christian
https://alpha.app.net/kgz - Klaus Zanders
https://alpha.app.net/hd4711 - hd4711
https://alpha.app.net/weed_99 - wedyan
https://alpha.app.net/spectruminfo - Curtis Pilon
https://alpha.app.net/ciarand - Ciaran Downey
https://alpha.app.net/nuff_nuff - Lisa
https://alpha.app.net/akulbe - Aaron Kulbe
https://alpha.app.net/rretsiem - René
https://alpha.app.net/gtwilson - Tom Wilson
https://alpha.app.net/kdfrawg - Michael W. Jones
https://alpha.app.net/vivalavida - Viva La vida
https://alpha.app.net/fahrni - Rob Fahrni
https://alpha.app.net/fakre - Fabian
https://alpha.app.net/knaeckez - Chris Jaenecke
https://alpha.app.net/espoir - J
https://alpha.app.net/timpritlove - Tim Pritlove
https://alpha.app.net/ggirton - George Girton
https://alpha.app.net/ottost - Otto Schmilinsky
https://alpha.app.net/wookiee - Mikey Ward
https://alpha.app.net/smartwatermelon - andrew m rich
https://alpha.app.net/danatnr - Dan Engle
https://alpha.app.net/totalroofing - Scott McIntyre
https://alpha.app.net/duerig - Jonathon Duerig
https://alpha.app.net/kirschen - Kirschen Seah
https://alpha.app.net/nickrosencrans - Nick Rosencrans
https://alpha.app.net/unixb0y - Davide
https://alpha.app.net/shawna - Shawna
https://alpha.app.net/invalidname - Chris Adamson
https://alpha.app.net/remus - Brandon
https://alpha.app.net/safetysaver - Sebastian
https://alpha.app.net/m0rt3l_king - m0rt3l
https://alpha.app.net/redqueencoder - Janie Clayton-Hasz
https://alpha.app.net/or - Alex
https://alpha.app.net/neilco - Neil
https://alpha.app.net/husseink - Hussein Khalife
https://alpha.app.net/morrick - Riccardo Mori
https://alpha.app.net/whoisashygirl - Michelle
https://alpha.app.net/fam - Jason Famularo
https://alpha.app.net/mcdemarco - M. C. DeMarco
https://alpha.app.net/larand - Larry
https://alpha.app.net/tokochan0514 - Taichi Tokoyoda
https://alpha.app.net/streakmachine - Robert Falck
https://alpha.app.net/egghat - Dieter Meyeer
https://alpha.app.net/smc - Scott A. McIntyre
https://alpha.app.net/rstockm - Ralf Stockmann
https://alpha.app.net/braincutlery - Darren Tong
https://alpha.app.net/martinsteiger - Martin Steiger
https://alpha.app.net/clarkgoble - Clark Goble
https://alpha.app.net/longstride - Jason Rehmus
https://alpha.app.net/ranti - Ranti Junus
https://alpha.app.net/escapesouth - Rodster
https://alpha.app.net/alanhogan - Alan Hogan
https://alpha.app.net/hashbang - Nick Gamewell
https://alpha.app.net/elenaa_plebani - elena plebani
https://alpha.app.net/michael1011 - Michael
https://alpha.app.net/hodor - Hodor
https://alpha.app.net/ozjacktaz - OzKimberleyTourGuide
https://alpha.app.net/masifpanel - Serender Ahşap
https://alpha.app.net/mandyd - Mandy
https://alpha.app.net/lechindianer - Pascal Schmid
https://alpha.app.net/berklee - Berklee
https://alpha.app.net/allmybot - AllmyBot
https://alpha.app.net/mrm - Maryam
https://alpha.app.net/annatarkov - Anna Tarkov
https://alpha.app.net/phoneboy - PhoneBoy
https://alpha.app.net/evs - Evan
https://alpha.app.net/matthewmspace - Matthew Miller
https://alpha.app.net/jessicadennis - Jessica Dennis
https://alpha.app.net/joanna - Joanna Castillo
https://alpha.app.net/javierlianes - Javier Lianes
https://alpha.app.net/joemmac - Joe Macirowski
https://alpha.app.net/9x - ekusu
https://alpha.app.net/cano - Cano
https://alpha.app.net/schmidt_fu - Florian Schmidt
https://alpha.app.net/philipsjones01 - Philips Jones
https://alpha.app.net/morningstarfood - Morning Star Restaurant
https://alpha.app.net/jacobrealo - Jacob Realo
https://alpha.app.net/sulgi - Sulgi
https://alpha.app.net/antijingoist - Abelardo Gonzalez
https://alpha.app.net/mdhughes - App Captain Dagon Hughes
https://alpha.app.net/oluseyi - Oluseyi
https://alpha.app.net/mps - Maddie Shirey
https://alpha.app.net/jstinson0590 - Jennifer Stinson
https://alpha.app.net/ukhaiku - Dave Marshall
https://alpha.app.net/graphicgoo - Amber Hewitt
https://alpha.app.net/severinggecko - Eliott Geisler
https://alpha.app.net/jextxadore - Hugo
https://alpha.app.net/jacstite - Jose Antonio Castaño
https://alpha.app.net/muncman - Kevin Munc
https://alpha.app.net/tla_ - Michael
https://alpha.app.net/skoll - skoll
https://alpha.app.net/kla4spieler - Fred
https://alpha.app.net/rocketpilot - Nick Caldwell
https://alpha.app.net/abebe_no_be - あべちゃん
https://alpha.app.net/matigo - Jason F. Irwin
https://alpha.app.net/mhmd - محمد باحمدين
https://alpha.app.net/pamdavis - Pam Davis
https://alpha.app.net/iconmaster - John Marstall
https://alpha.app.net/x5 - あきー
https://alpha.app.net/charliewilson - Charlie Wilson
https://alpha.app.net/hala - HALA
https://alpha.app.net/ti_leo - Ti Leo
https://alpha.app.net/ganzbeitrost - Christian Meyer
https://alpha.app.net/indigo - Indigo
https://alpha.app.net/b79 - じょー
https://alpha.app.net/hacker_news - Hacker News
https://alpha.app.net/mgrimes - Mark Grimes
https://alpha.app.net/yaas - Yelling as a Service
https://alpha.app.net/andrewschmidt - Andrew Schmidt
https://alpha.app.net/erwin - Erwin Mazariegos
https://alpha.app.net/chriskrycho - Chris Krycho
https://alpha.app.net/adiabatic - adiabatic
https://alpha.app.net/teezeitpodcasts - Teezeit-Podcasts
https://alpha.app.net/jaredsinclair - Jared Sinclair
https://alpha.app.net/leftlanecruiser - LeftLaneCruiser
https://alpha.app.net/shauncollins - Shaun Collins
https://alpha.app.net/oxifresh - Cory Anderson
https://alpha.app.net/squozen - Squozen
https://alpha.app.net/jeremyfrick - Jeremy Frick
https://alpha.app.net/uhr - Die Uhr
https://alpha.app.net/bradchoate - Brad Choate
https://alpha.app.net/sr_rolando - Señor Rolando
https://alpha.app.net/samweinberg - Sam Weinberg
https://alpha.app.net/jws - Jeremy W. Sherman
https://alpha.app.net/lucasbowen -
https://alpha.app.net/augustjoki - August Joki
https://alpha.app.net/gm7add9 - Gm7add9
https://alpha.app.net/axodys - Jason Gilman
https://alpha.app.net/wa8dzp - Dewayne Hendricks
https://alpha.app.net/akrom1777 -
https://alpha.app.net/birchtree - Matt Birchler
https://alpha.app.net/houseof_darien - Darien Greene
https://alpha.app.net/mattfusf - Matthew Fusfield
https://alpha.app.net/relivetechnik - ReliveTechnik
https://alpha.app.net/fancycwabs - Randal Cooper
https://alpha.app.net/mlv - Michael Vezie
https://alpha.app.net/relivekultur - ReliveKultur
https://alpha.app.net/cmd - Chris Downey
https://alpha.app.net/anth - Anthony Sorace
https://alpha.app.net/konrad - Konrad Neuwirth
https://alpha.app.net/ky0 - ky0
https://alpha.app.net/jnm - Jeff Melton
https://alpha.app.net/kasyut2207 - カッスー
https://alpha.app.net/muo - Muo
https://alpha.app.net/digitaltourbus - Digital Tour Bus
https://alpha.app.net/thashilo - 제니아르
https://alpha.app.net/maha - Martin Haase
https://alpha.app.net/_luckb - Luc Baudin
https://alpha.app.net/scottsmith - Scott Smith
https://alpha.app.net/bondman - Tim
https://alpha.app.net/aaandy - Andrew
https://alpha.app.net/yostos - Toshiyuki Yoshida
https://alpha.app.net/keita - Keitaroh Kobayashi
https://alpha.app.net/relivemix - ReliveRadioMix
https://alpha.app.net/sirshannon - Sirshannon
https://alpha.app.net/387tsukiha - 未花 月葉
https://alpha.app.net/sblatorreta - Sant Blai-La Torreta
https://alpha.app.net/cyvindustries - Mark Villarosa
https://alpha.app.net/lograh - lograh
https://alpha.app.net/bcallah - Brian Callahan
https://alpha.app.net/protocol - PROTOCOL
https://alpha.app.net/cotne1980 -
https://alpha.app.net/leanne - Leanne
https://alpha.app.net/darrennoble - Darren
https://alpha.app.net/cthulhudroid - N. Snyder
https://alpha.app.net/seansbooks - Sean O'Sullivan
https://alpha.app.net/dshirley - Dave Shirley
https://alpha.app.net/taehokw - Taeho Kwon
https://alpha.app.net/jedi - johnnie pittman
https://alpha.app.net/jdalrymple - Jim Dalrymple
https://alpha.app.net/huro - 風呂
https://alpha.app.net/heiko_linke - Heiko Linke
https://alpha.app.net/mayamayfield - Maya mayfield
https://alpha.app.net/zepfhyr - Jared Cash
https://alpha.app.net/allergyrelief - David Doyle
https://alpha.app.net/lomifeh - Lawrence Sica
https://alpha.app.net/dslemay - Daniel Lemay
https://alpha.app.net/xl_ent - XL
https://alpha.app.net/coreint - Core Intuition Podcast
https://alpha.app.net/absoluteprocare - Wes Benko
https://alpha.app.net/infodriveway - Jonathan Holbert
https://alpha.app.net/keizo - keizo
https://alpha.app.net/sabby - Sabrina Wood
https://alpha.app.net/udon_oishii - jun gle
https://alpha.app.net/savaran - Cedric Pansky
https://alpha.app.net/aurynn - Aurynn Shaw
https://alpha.app.net/ttaiyo - Taiyo Totsuka
https://alpha.app.net/iyuto - iyuto
https://alpha.app.net/anlumo - Andreas Monitzer
https://alpha.app.net/bws - name value
https://alpha.app.net/pme - Petr M Emery
https://alpha.app.net/gorn - Naoya Ikeda
https://alpha.app.net/deuxdoom - Juhyun P.
https://alpha.app.net/caiofmart - Caio
https://alpha.app.net/mjberryman - Matthew Berryman
https://alpha.app.net/worr - William Orr
https://alpha.app.net/mniwa - Masaki NIWA
https://alpha.app.net/giminoshi - Trent Guillory
https://alpha.app.net/barchard - Gregory Barchard
https://alpha.app.net/sons_of_valkyrie - valkyrie
https://alpha.app.net/thrrgilag - Morgan McMillian
https://alpha.app.net/curtismchale - Curtis McHale
https://alpha.app.net/jamie - Jamie Jenkins
https://alpha.app.net/kirbyt - Kirby Turner
https://alpha.app.net/abu_saud2030 - abu_saud2030
https://alpha.app.net/franksting - Gavin Costello
https://alpha.app.net/donnywdavis - Donny Davis
https://alpha.app.net/mrbeefy - Sam Davies
https://alpha.app.net/ats - Alan
https://alpha.app.net/jeffmueller - Jeff Mueller
https://alpha.app.net/bogo_lode - bogo_lode
https://alpha.app.net/misterpoppet - Bryan Redeagle
https://alpha.app.net/rafial - Wilhelm Fitzpatrick
https://alpha.app.net/chogun - 조군(趙君)
https://alpha.app.net/eyeballtrees - Stephen Malone
https://alpha.app.net/nabeharu - 15歳JC
https://alpha.app.net/guscost - Augustine Cost
https://alpha.app.net/button - Steven A. Button
https://alpha.app.net/yasmine - Yasmine
https://alpha.app.net/iptaylm - R.I.P #ADN
https://alpha.app.net/k2arcondicionado - k2arcondicionado
https://alpha.app.net/pod - Pod
https://alpha.app.net/_tsukumoya_ - ツクモ屋
https://alpha.app.net/paulgit - Paul Rudkin
https://alpha.app.net/dearcat - void Manji(){
https://alpha.app.net/teeheehee - Dan K
https://alpha.app.net/wadiah - wadiah
https://alpha.app.net/eyes - Isaac
https://alpha.app.net/psacreates - Philip Allen
https://alpha.app.net/marumaru - まるまる
https://alpha.app.net/randymurray - Randy Murray
https://alpha.app.net/supverlu - supverlu
https://alpha.app.net/seowondeuk - Seo, Won-Deuk
https://alpha.app.net/leebennett - Lee Bennett
https://alpha.app.net/sjay - SJ
https://alpha.app.net/abslim - abslim
https://alpha.app.net/redjunglefowl - ไก่ป่า
https://alpha.app.net/nextzard - Void
https://alpha.app.net/rushvora - Rushabh Vora
https://alpha.app.net/rbosuccess - Renee of TigressRevolution.com
https://alpha.app.net/satsat - tsukamoto
https://alpha.app.net/socialmark357 -
https://alpha.app.net/dimebag147 -
https://alpha.app.net/moneymike147 -
https://alpha.app.net/robertporten - RobertPorten
https://alpha.app.net/meemee - Mimi
https://alpha.app.net/santiago - Santiago Lema
https://alpha.app.net/johngordon - John Gordon
https://alpha.app.net/jessicadehring - Jessica
https://alpha.app.net/edwardloveall - Edward Loveall
https://alpha.app.net/charlesg - Charles G
https://alpha.app.net/sumudu - Sumudu
https://alpha.app.net/nitinkhanna - Nitin Khanna
https://alpha.app.net/tm2 - Teena Melton™
https://alpha.app.net/apostoloff - Apostol Apostoloff
https://alpha.app.net/stingalarm - Sting Alarm
https://alpha.app.net/robertgeorge - Robert George
https://alpha.app.net/yeefom - Yeefom
https://alpha.app.net/danimal - Dan Weeks
https://alpha.app.net/beavertongracebible - Beaverton Grace Bible Church
https://alpha.app.net/natalia - Natalia
https://alpha.app.net/shawndrape - Shawn Drape
https://alpha.app.net/keage - Keage Y
https://alpha.app.net/manton - Manton Reece
https://alpha.app.net/qwerty - くおーてぃ
https://alpha.app.net/ryb - Ryan B
https://alpha.app.net/maxdavid - mhaquary
https://alpha.app.net/benjamindorsey - Benjamin Dorsey
https://alpha.app.net/peace - Be
https://alpha.app.net/virgin - まろまゆ
https://alpha.app.net/ino - いの
https://alpha.app.net/cyr1l - Cyril
https://alpha.app.net/kaguya - kaguya
https://alpha.app.net/craigcottingham - Craig S. Cottingham
https://alpha.app.net/soleily - りゃ
https://alpha.app.net/glassbox - glassbox
https://alpha.app.net/socialmediabizuk - Business Social Media Executive
https://alpha.app.net/knts - 空見沢佳奈
https://alpha.app.net/randomcabinet - João
https://alpha.app.net/swilliams - Scott Williams
https://alpha.app.net/processstreet - Process Street
https://alpha.app.net/mschechter - Michael Schechter
https://alpha.app.net/ohmybrain - Brian Williford
https://alpha.app.net/zero - Alex Knight
https://alpha.app.net/mikevardy - Mike Vardy
https://alpha.app.net/fauxfurmessca - Lily Smith
https://alpha.app.net/nevin - Nevin Ng
https://alpha.app.net/irc - Ian Chesal
https://alpha.app.net/rpluta - Rob Pluta
https://alpha.app.net/dmandl - Dave Mandl
https://alpha.app.net/joshducharme - Josh Ducharme
https://alpha.app.net/sgtstretch - Phil Olin
https://alpha.app.net/ipod - iPod
https://alpha.app.net/kerriann - K.
https://alpha.app.net/henry - Henry Todd
https://alpha.app.net/yisoku - Sara
https://alpha.app.net/yuugata - yuugata
https://alpha.app.net/guamaso - Juan Orozco
https://alpha.app.net/zegh - zegh
https://alpha.app.net/yuanyi2005 - Hawk Gudeer
https://alpha.app.net/mthurman - Mark Thurman
https://alpha.app.net/jmaddox34 - Jamie Maddox
https://alpha.app.net/platkus - Shawn Platkus
https://alpha.app.net/smiles - 바욜린
https://alpha.app.net/kevin_mac - Kevin McCleery
https://alpha.app.net/evefavretto - Everton Favretto
https://alpha.app.net/jmjeong - Jaemok Jeong
https://alpha.app.net/serviceclean - Bryan Tanghe
https://alpha.app.net/rathke - Tom Rathke 
https://alpha.app.net/maguay - Matthew Guay
https://alpha.app.net/cedricrice - cedric rice
https://alpha.app.net/randyb - Randy Balbuena
https://alpha.app.net/sirskidmore - Taylor Skidmore
https://alpha.app.net/kanno_explosion - kanno
https://alpha.app.net/abackstrom - Annika Backstrom
https://alpha.app.net/bennomatic - Ben O'Matic
https://alpha.app.net/preferredcarpetny - Hoss Tuseo
https://alpha.app.net/totat - totat
https://alpha.app.net/excln - exclusion
https://alpha.app.net/wife - Anna.be
https://alpha.app.net/jddsoftware - JDD Software
https://alpha.app.net/roscoaudit - roscoaudit
https://alpha.app.net/bayprogrammer - Zeb DeOs
https://alpha.app.net/mikehoss - Mike Hostetler
https://alpha.app.net/lindaraymond - Linda Raymond
https://alpha.app.net/bbanks99 - Brian T Banks
https://alpha.app.net/thegioimuonmau -
https://alpha.app.net/saldy - サルディサイリ
https://alpha.app.net/kazoo04 - kazoo04
https://alpha.app.net/divya_mahajan - Divya Mahajan
https://alpha.app.net/thejumpingsheep - Tiffany DeOs
https://alpha.app.net/thelma - Thelma Bowlen
https://alpha.app.net/zeitrafferin - julia seeliger
https://alpha.app.net/33mhz -
https://alpha.app.net/tellingtales - TellingTales
https://alpha.app.net/michelelewis - Michele 'ONE L' Lewis
https://alpha.app.net/semsemaeel - semsemaeel
https://alpha.app.net/myfromthestar - Fromthestar
https://alpha.app.net/thomasbrand - Thomas Brand
https://alpha.app.net/spacecab - Andrew
https://alpha.app.net/budwhitetea - Bud white tea
https://alpha.app.net/pnamu - Pnamu
https://alpha.app.net/jesusrosas - JesusRosas
https://alpha.app.net/bojan - Bojan Dordevic
https://alpha.app.net/thedadams - Donnie Adams
https://alpha.app.net/fujimaru_black - fujimaru_black
https://alpha.app.net/beewsee - Bernie Connors
https://alpha.app.net/appleuser_de - Janusch von apfelcheck
https://alpha.app.net/photoauge - Mark
https://alpha.app.net/davidkosename - David Kosename
https://alpha.app.net/teps999 - Emma Paul
https://alpha.app.net/height8 - height8
https://alpha.app.net/foresightchiro - Keith Lavender
https://alpha.app.net/tobepainfreeagain - Back To Action Chiropractic Clinic
https://alpha.app.net/tewha - Steven Fisher
https://alpha.app.net/manx - Anders
https://alpha.app.net/pilgrim - Schifferer
https://alpha.app.net/greenserveuk - Sean Williams
https://alpha.app.net/bsn - Björn SebastiaN
https://alpha.app.net/ejo - ejo090
https://alpha.app.net/mggx - Michael
https://alpha.app.net/buyperfumesonline - Buyperfumesonlineindia
https://alpha.app.net/elmak - Brian Rice
https://alpha.app.net/jussipekonen - Jussi Pekonen
https://alpha.app.net/_marcus - Marcus Herrmann
https://alpha.app.net/aphroditesw - Janene Pappas
https://alpha.app.net/capitalhousecleaning - Capital House Cleaning
https://alpha.app.net/xeyr - cassian
https://alpha.app.net/samidarasis - samidarasis
https://alpha.app.net/hawpunch - Jae Park
https://alpha.app.net/uliwitness - Uli Kusterer
https://alpha.app.net/truhe - Oliver K.
https://alpha.app.net/saschaholesch - Sascha M Holesch
https://alpha.app.net/rolletto - Bonaccio
https://alpha.app.net/crap - crp
https://alpha.app.net/tonymillion - Tony Million
https://alpha.app.net/yoikagura - yoikagura
https://alpha.app.net/thaddeus - Thaddeus Ternes
https://alpha.app.net/umecha24909 - 梅干茶漬け
https://alpha.app.net/edensol - Antonia
https://alpha.app.net/rehanaali -
https://alpha.app.net/samanthabond - Samantha Bond
https://alpha.app.net/ny_injurylawyer - Leandros Vrionedes
https://alpha.app.net/marc - Marc Edwards
https://alpha.app.net/wandscarpet - Walter Arrington
https://alpha.app.net/philipp_1 - Philipp
https://alpha.app.net/cgiffard - Gristopher Chiffard
https://alpha.app.net/smileykeith - Keith Smiley
https://alpha.app.net/phasenkasper - Lukas
https://alpha.app.net/rfnash - Robert F. Nash
https://alpha.app.net/mywizz - Yunseok Kim
https://alpha.app.net/nslogan - Logan McAnsh
https://alpha.app.net/loadcraft - Steve Lara
https://alpha.app.net/guidanceforsoul - Guidance 4 Your Soul
https://alpha.app.net/mttmccb - Matt M
https://alpha.app.net/oxypowercarpet - Paul Liu
https://alpha.app.net/allcleanreno - Chris Griego
https://alpha.app.net/1337 - Florian
https://alpha.app.net/jodiem - JodieM
https://alpha.app.net/rdo - Ryan O
https://alpha.app.net/t72 - ティガ
https://alpha.app.net/nullmaster - Ian Williams
https://alpha.app.net/deftone - |Deftone|
https://alpha.app.net/jayesh - jayesh
https://alpha.app.net/bulksupplier - Bulk Supplier
https://alpha.app.net/wjl - William LaFrance
https://alpha.app.net/treimannch - Torsten Reimann
https://alpha.app.net/katiechloe - katiecloe
https://alpha.app.net/remino - /^(R[eé]mi([nk]o)?|Edojin)$/
https://alpha.app.net/heluecht - Michael
https://alpha.app.net/hiry - Station employee
https://alpha.app.net/hawaiiboy - Randy Botti
https://alpha.app.net/i42n - i42n
https://alpha.app.net/cheesemaker - Jonathan Hays
https://alpha.app.net/sh_davis1027 - Shannon Davis
https://alpha.app.net/housecleaning - Get House Cleaning Marketing
https://alpha.app.net/davec - David Cross
https://alpha.app.net/linuzifer - Linus Neumann
https://alpha.app.net/netzzwerk - Jan-David Gude
https://alpha.app.net/jmergy - Jonathan Mergy
https://alpha.app.net/ica - ほろよいあいかちゃん
https://alpha.app.net/missywilde - Missy Wilde
https://alpha.app.net/arl4223 - arl4223
https://alpha.app.net/ameer - Ameer
https://alpha.app.net/sophistifunk - Josh "G" McDonald
https://alpha.app.net/hklose - Helmut Klose
https://alpha.app.net/runeranch - Rune Ranch
https://alpha.app.net/failgunner - Mikhail Madnani
https://alpha.app.net/lanzani - Giovanni Lanzani
https://alpha.app.net/sofiacoppol - Mobile App Development Company
https://alpha.app.net/eglobi - EGlobi.com
https://alpha.app.net/snugtechnologies - SNUG Technologies
https://alpha.app.net/u18 - Online MBA
https://alpha.app.net/alslv62 - Al Silva
https://alpha.app.net/godhopeful - bae kiyoung
https://alpha.app.net/saket - Saket Kulkarni
https://alpha.app.net/charver - Phil Anderson
https://alpha.app.net/geoffpv - Geoffrey Verdouw
https://alpha.app.net/warzabidul - Richard Azia
https://alpha.app.net/1password - 1Password
https://alpha.app.net/flusskiesel - Markus Becker
https://alpha.app.net/deandriaparker123 - Deandria Parker
https://alpha.app.net/derjan - jan
https://alpha.app.net/sirtomate - Jens Klün
https://alpha.app.net/ludolphus - Steven
https://alpha.app.net/steve_m - Steve M.
https://alpha.app.net/bsag - But She's A Girl
https://alpha.app.net/diekadda - Katrin Roenicke
https://alpha.app.net/geiststreicher - Geiststreicher
https://alpha.app.net/damario74 - Christian Obsieger
https://alpha.app.net/qtoof_danyah - قطوف دانية
https://alpha.app.net/m4ugan - Felix
https://alpha.app.net/bakhia789 - Dinh
https://alpha.app.net/ladinstitute - Andy Smith
https://alpha.app.net/save_the_queen - pls
https://alpha.app.net/seriously - David Garcia
https://alpha.app.net/fxdx - ___ Hans-Peter ___
https://alpha.app.net/advi - Thomas
https://alpha.app.net/molo - 来週さん
https://alpha.app.net/janvajda - Jan Vajda Attorney at Law Namestovo, Slovakia
https://alpha.app.net/basculethirascule - Lesley
https://alpha.app.net/anayahamber - Anayah Amber
https://alpha.app.net/aeldreath - Mac Shifford
https://alpha.app.net/menhera_otaku - ァ
https://alpha.app.net/jeremycherfas - Jeremy Cherfas
https://alpha.app.net/koseiboeki - Kosei Boeki
https://alpha.app.net/hazzor - Rafa
https://alpha.app.net/flekart - flekart
https://alpha.app.net/madscientistdigital - Mad Scientist Digital
https://alpha.app.net/skubo - Chris Garbers
https://alpha.app.net/hdakiiaa - Hideaki ISHIKAWA
https://alpha.app.net/michis0806 - Michael Schmid
https://alpha.app.net/chicio - George Chicioreanu
https://alpha.app.net/msoft - Martin Bergmann
https://alpha.app.net/kinako_daiz - きなぽこ
https://alpha.app.net/jenso - jenki
https://alpha.app.net/trine - Trine
https://alpha.app.net/amjaad95 - Amjaad Abdullah
https://alpha.app.net/der_jens - JenseConsulting
https://alpha.app.net/blumenkraft - Jochen Spalding
https://alpha.app.net/helmi - Helmi
https://alpha.app.net/r18 - r18
https://alpha.app.net/manare - Manare L. W
https://alpha.app.net/krokofant - Krokofant
https://alpha.app.net/johnpatkinson - John
https://alpha.app.net/enappled -  Hendrik
https://alpha.app.net/quitzi - Christoph (Herr Quitzi) Wienke
https://alpha.app.net/teferi - Jan
https://alpha.app.net/caitlin - cat
https://alpha.app.net/dukat - Juergen Jung
https://alpha.app.net/sotero - Sotero Garcia
https://alpha.app.net/marcusc - Marcus C
https://alpha.app.net/thedan84 - Dennis Parussini
https://alpha.app.net/dcas143 -
https://alpha.app.net/berenike - Franziska Naja
https://alpha.app.net/patentservices - Patent Services USA
https://alpha.app.net/danielgenser - Daniel Genser
https://alpha.app.net/thy2134 - Remarkable
https://alpha.app.net/cwd - chris
https://alpha.app.net/skapoorcs2013 - Samauya Kapoor
https://alpha.app.net/odisseja - odisseja
https://alpha.app.net/jenni - Jenni Brehm
https://alpha.app.net/adamkitokid - kitokid
https://alpha.app.net/mikekai - mikekai
https://alpha.app.net/csch - Clemens Schrimpe
https://alpha.app.net/dakshadesign -
https://alpha.app.net/dakai - Kai
https://alpha.app.net/clickproperty - Singapore Property Search
https://alpha.app.net/bobbele79 - Bobbele79
https://alpha.app.net/igrey - iGrey
https://alpha.app.net/acb - acb
https://alpha.app.net/norg - norg
https://alpha.app.net/planet_kai - Planet-Kai
https://alpha.app.net/diewebag - stromjacoviv
https://alpha.app.net/ffried - Florian Friedrich
https://alpha.app.net/ollie - Oliver Boermans
https://alpha.app.net/cunarders - Cunarders
https://alpha.app.net/svogt - Sascha Vogt
https://alpha.app.net/ahousewifecom - aHousewife.com
https://alpha.app.net/lasar - Lasar Liepins
https://alpha.app.net/lukasros - Lukas Rosenstock
https://alpha.app.net/mdj - Mark Jones
https://alpha.app.net/dishwashingexpert - Dishwashing Expert
https://alpha.app.net/jvk - John V. Keogh
https://alpha.app.net/matthewlang - Matthew Lang
https://alpha.app.net/acf - Alan Francis
https://alpha.app.net/yaroshevych - Oleg Yaroshevych
https://alpha.app.net/therealkerni - Andreas Linde
https://alpha.app.net/schoendorf - Walter Peter Schoendorf
https://alpha.app.net/tekshrek - Frank
https://alpha.app.net/sporkoliknet - Sporkolik
https://alpha.app.net/danlin - Daniel Lindenfelser
https://alpha.app.net/veganstraightedge - Shane Becker
https://alpha.app.net/funkyboy - Cesare Rocchi
https://alpha.app.net/juckeln - juckeln
https://alpha.app.net/mithril_1st - みすりる
https://alpha.app.net/pakorosen - Paco Maroto
https://alpha.app.net/giap - Wong Tooi Giap
https://alpha.app.net/flowfx - Florian Posdziech
https://alpha.app.net/claudette - Claudette Kulkarni
https://alpha.app.net/sjoongk - Sean Kim
https://alpha.app.net/cozycomfort14 - laurieladick
https://alpha.app.net/cms - Colin M. Strickland
https://alpha.app.net/purplapp - Purplapp
https://alpha.app.net/markrimmel - Mark Rimmel
https://alpha.app.net/arjankoole - Arjan Koole
https://alpha.app.net/dekkar - DekkaR
https://alpha.app.net/macsnider - Michél
https://alpha.app.net/jimandjacks - Taleen Kizirian
https://alpha.app.net/wci - 윈컴이
https://alpha.app.net/ozanadigo - Ozan Can
https://alpha.app.net/subares - Subares Software
https://alpha.app.net/galway932 - A Poison Tree
https://alpha.app.net/incorrect - Wade Roberts
https://alpha.app.net/chrisb86 - Chris π
https://alpha.app.net/snrkl - snrkl
https://alpha.app.net/mmm - محمد باحمدين
https://alpha.app.net/davmendels - David Mendels
https://alpha.app.net/256adn - 【ツ】
https://alpha.app.net/rnck - Heiko
https://alpha.app.net/dasuso - Uwe Sommer
https://alpha.app.net/bengreenfield - Ben Greenfield
https://alpha.app.net/romankominek - Roman Kominek
https://alpha.app.net/rie - チョコリエール
https://alpha.app.net/fergoto - fergoto
https://alpha.app.net/alanfluff - Alan Bristow
https://alpha.app.net/deltacomputers0 -
https://alpha.app.net/snipergirl - Sniper Girl
https://alpha.app.net/osama_dev - Osama.One
https://alpha.app.net/sham - sham
https://alpha.app.net/suaongchua - Suaongchua
https://alpha.app.net/albatr0n - 蒙德拉贡
https://alpha.app.net/heikopanjas - Heiko Panjas
https://alpha.app.net/seraphim - Molly
https://alpha.app.net/toptierbusiness - Top Tier Business
https://alpha.app.net/6sm2 - サムサム
https://alpha.app.net/trockenbilder - Leif Sikorski
https://alpha.app.net/thorwan - Thorwan
https://alpha.app.net/marcelwink - Martin
https://alpha.app.net/picolin - Frank Picolin
https://alpha.app.net/nehemoth - Nehemoth
https://alpha.app.net/holly148 - Anja Marzillier
https://alpha.app.net/henryswieca - Henry Swieca
https://alpha.app.net/voylla - Voylla
https://alpha.app.net/myfreeweb - greg
https://alpha.app.net/adrinux - Adrian Simmons
https://alpha.app.net/gadgetcoma - Leon Nisenfeld
https://alpha.app.net/alexzander55 -
https://alpha.app.net/watura - Wataru Nishimoto
https://alpha.app.net/niemeyer - RA Jens-Christof Niemeyer
https://alpha.app.net/nico_dot - nico.
https://alpha.app.net/holgerd77 - Holger Drewes
https://alpha.app.net/jailbird - André Klausing
https://alpha.app.net/ubr - bedur.
https://alpha.app.net/mrshaiku - Odette
https://alpha.app.net/pattex - Arne
https://alpha.app.net/napacar - Javier Martinez-salazar
https://alpha.app.net/maclemon - MacLemon
https://alpha.app.net/hermes - H3rmes
https://alpha.app.net/ranneshow6 - rannes
https://alpha.app.net/bemytechie - Paul Purcell
https://alpha.app.net/tarifrechner - Martin Kopka
https://alpha.app.net/tristatephiladelphia - Tri State Philadelphia
https://alpha.app.net/auphonic - Auphonic
https://alpha.app.net/bostonhomes - Boston Homes
https://alpha.app.net/tjcs63 - Terry Sanderson
https://alpha.app.net/marianneabadir - Marianne Abadir
https://alpha.app.net/pawanunited - Pawan
https://alpha.app.net/micronome - micronome
https://alpha.app.net/lindend - Linden deCarmo
https://alpha.app.net/kobi - Khalid Obaid
https://alpha.app.net/topgold - Bernie Goldbach
https://alpha.app.net/elisaley7 - elisa
https://alpha.app.net/carbon_compound - Joachim Heistinger
https://alpha.app.net/karimgeiger - Karim Geiger
https://alpha.app.net/darrinholst - Darrin Holst
https://alpha.app.net/cafeine - Arnaud Chaudron
https://alpha.app.net/mikael - Mikael Lechat
https://alpha.app.net/loonytoon - loonytoon
https://alpha.app.net/ada_cchi - あだっち
https://alpha.app.net/retrospectcoupon -
https://alpha.app.net/drewry - Drewry
https://alpha.app.net/alirosee9 - aliro
https://alpha.app.net/simon_w - Simon Welsh
https://alpha.app.net/gotowanieodswieta - Gotowanie od święta
https://alpha.app.net/alexhoaxmaster - Alexander Hoaxmaster
https://alpha.app.net/xclusivetouch - XclusiveTouch
https://alpha.app.net/infinity310 - 零 -zero-
https://alpha.app.net/techymom23 - Jennifer Watts
https://alpha.app.net/leelazens4 - leela
https://alpha.app.net/luminescent - Luminescent Lee
https://alpha.app.net/labhras - Lorenz Sahlmann
https://alpha.app.net/wwcruiselineink - WorldWideCruiseLine
https://alpha.app.net/oxlmultimedia - Livya
https://alpha.app.net/jacarandachick - Miyanda Nehwati
https://alpha.app.net/token386 -
https://alpha.app.net/suneo3476 - suneo3476
https://alpha.app.net/byrd - Andreas
https://alpha.app.net/igama - Marco Silva
https://alpha.app.net/bazzdream - Herr Jeh
https://alpha.app.net/mantoni - mantoni
https://alpha.app.net/abcyukicba - yukihiro
https://alpha.app.net/vasilisvj - Vasilis Stergiou
https://alpha.app.net/sugarkitten65 - Creative Engine
https://alpha.app.net/lmjabreu - Luis Abreu
https://alpha.app.net/sorcerer86 - sorcerer86
https://alpha.app.net/nitnelav - Valentin Renz
https://alpha.app.net/gaelicwizard - John D Pell
https://alpha.app.net/musa - Musa Furber
https://alpha.app.net/andresorraca11 - Andres
https://alpha.app.net/appils - Appils
https://alpha.app.net/macini - Tom
https://alpha.app.net/longislandhomes - LongIslandHomes
https://alpha.app.net/bobsica - Bob Sica
https://alpha.app.net/drgiorgini_uk - Martino Giorgini
https://alpha.app.net/mbermejoc - Miguel Bermejo
https://alpha.app.net/dakshahost -
https://alpha.app.net/dasdom - Dominik Hauser
https://alpha.app.net/rishabh - Rishabh R. Dassani
https://alpha.app.net/eddytancredi0 - Market Researcher
https://alpha.app.net/bleepnik - Nik Lal
https://alpha.app.net/jezcaudle - Jez Caudle
https://alpha.app.net/photoguy1st - Thomas 
https://alpha.app.net/jamienoguchi - Jamie Noguchi
https://alpha.app.net/patrickrhone - Patrick Rhone
https://alpha.app.net/juliagrill - julia
https://alpha.app.net/moapp - ★☆☆☆☆
https://alpha.app.net/thatdawnperson -
https://alpha.app.net/kem - Kris Markel
https://alpha.app.net/uoptutors3 -
https://alpha.app.net/velvor - Ernesto Bañuelos
https://alpha.app.net/nhk - Niels K.
https://alpha.app.net/dj_mima - monta
https://alpha.app.net/gusdrakopoulos - Gus Drakopoulos
https://alpha.app.net/lele - Lele Buonerba
https://alpha.app.net/loopdrive - wat ___
https://alpha.app.net/ryantharp - Ryan Tharp
https://alpha.app.net/timduran - Tim
https://alpha.app.net/hdbngr - hdbngr
https://alpha.app.net/simpfinity - Simpfinity.com
https://alpha.app.net/k5 - gigigial
https://alpha.app.net/astral1 - Jiung Jeong
https://alpha.app.net/kenleyneufeld - Kenley Neufeld
https://alpha.app.net/nomya - Nomya
https://alpha.app.net/pilky - Martin Pilkington
https://alpha.app.net/shigeyoshi - Kaname Shigeyoshi
https://alpha.app.net/gfrhomes - Pete Krebs
https://alpha.app.net/hhkb -
https://alpha.app.net/eurosunpackersmovers -
https://alpha.app.net/helmholtz - Helmholtz Gemeinschaft
https://alpha.app.net/oranebeautyacademy - Institute of Beauty and Wellness
https://alpha.app.net/sullychs - Sully Sullinger
https://alpha.app.net/samayou_futaro - M0ck
https://alpha.app.net/mrsjulia - Julia
https://alpha.app.net/petergowen - Peter Gowen
https://alpha.app.net/hoop33 - Rob Warner
https://alpha.app.net/daph - Daphniphyllum Macropodum
https://alpha.app.net/mti - ミツイ
https://alpha.app.net/tlattimore - Thomas Lattimore
https://alpha.app.net/aimsun - Aimsun
https://alpha.app.net/xsteadfastx - Marvin Steadfast
https://alpha.app.net/newdimension - Anthony Miklaszewski
https://alpha.app.net/derik543 -
https://alpha.app.net/dru_satori - Andy Satori
https://alpha.app.net/newspiritcasters - newspiritcasters
https://alpha.app.net/mattgemmell - Matt Gemmell
https://alpha.app.net/ichijo - 一条
https://alpha.app.net/morgannels - Morgan Sandquist
https://alpha.app.net/envivo - En Vivo Online
https://alpha.app.net/tpommer - Tim Pommerening
https://alpha.app.net/nileshahuja001 - Nilesh Ahuja
https://alpha.app.net/namppp86 - Namppp86
https://alpha.app.net/amro - Amro Gebreel
https://alpha.app.net/primiumcm - Miguel Angel
https://alpha.app.net/inea - Ineakim
https://alpha.app.net/garrickvanburen - Garrick van Buren
https://alpha.app.net/edporras - Ed Porras
https://alpha.app.net/filid - mat filid brandy
https://alpha.app.net/japchap - Jeff Chapman
https://alpha.app.net/podsafepilot - Podsafepilot
https://alpha.app.net/alanhenry - Alan Henry
https://alpha.app.net/pupe - derPUPE
https://alpha.app.net/21h - Wonhyeok Lee
https://alpha.app.net/ericd - Eric Dejonckheere
https://alpha.app.net/okke - Okke Timm
https://alpha.app.net/yanceycompany - Robin Yancey
https://alpha.app.net/herrvonspeck - Lars
https://alpha.app.net/da1ro - だいちろ
https://alpha.app.net/shleyward - Ashley Ward
https://alpha.app.net/boqaneyo - Boqaneyo
https://alpha.app.net/fahadinc - فهد المحمود
https://alpha.app.net/karoline - Karoline Knight
https://alpha.app.net/myrtlebeachac - MyrtleBeachAC
https://alpha.app.net/danv2 - Daniel Russell
https://alpha.app.net/logout128 - Martin Kukač
https://alpha.app.net/kickdown - KickDown
https://alpha.app.net/nifferknight - Jenny Knight
https://alpha.app.net/wegeneris - Sergio
https://alpha.app.net/javierdelpuerto - Javier
https://alpha.app.net/isaacjw - Soap MacTavish
https://alpha.app.net/lapcat - Jeff Johnson
https://alpha.app.net/documentally - Documentally
https://alpha.app.net/nashuahomes - Nashua Homes
https://alpha.app.net/bmwmaster88 - Ben Masterman
https://alpha.app.net/laurafisher - Laura Fisher
https://alpha.app.net/georgenica - George R. NICA
https://alpha.app.net/alexk - Alexander Kucera
https://alpha.app.net/phcsclean - Shawn Day
https://alpha.app.net/kalei - kalei
https://alpha.app.net/prozloi - prozloi
https://alpha.app.net/trecebicis - trecebicis
https://alpha.app.net/tow8ie - Tobias Adam
https://alpha.app.net/speitsch - Sebastian Peitsch
https://alpha.app.net/bsheep - bsheep feather
https://alpha.app.net/cleaningsolu - Roger Dufresne
https://alpha.app.net/hutattedonmyarm - Max
https://alpha.app.net/sternrubin - Maria Herzger
https://alpha.app.net/mazunoko - まずのこ
https://alpha.app.net/chrifpa - chrifpa
https://alpha.app.net/kkkfff2 - フジワラコウスケ
https://alpha.app.net/lenzmaster99 - Lightworks Photography
https://alpha.app.net/dlundh - Daniel Lundh
https://alpha.app.net/stefanproksch - Stefan Proksch
https://alpha.app.net/nao - NAO
https://alpha.app.net/bcb - Booker C Bense
https://alpha.app.net/westpointmedia - Timothy Eng
https://alpha.app.net/looneyzoon - And! Erber
https://alpha.app.net/bssresponders - spmelliott
https://alpha.app.net/silentroom - Silentroom
https://alpha.app.net/shyanneseth -
https://alpha.app.net/chemiker - Alex
https://alpha.app.net/pureplumbingsvc -
https://alpha.app.net/sakurannheiki - Sakuranheiki
https://alpha.app.net/pestawayexterminator - Matthew Doerrfeld
https://alpha.app.net/karen - Karen
https://alpha.app.net/alluringsmiles - Javier Portocarrero
https://alpha.app.net/isaregistrar - Barton Wilson
https://alpha.app.net/davidsheeks - David Sheeks
https://alpha.app.net/peroty - Carl Holscher
https://alpha.app.net/siqlo - siqlo
https://alpha.app.net/archang3l - Heiko Borchers
https://alpha.app.net/fredhani - fredhani
https://alpha.app.net/noivad - M
https://alpha.app.net/mhg3r - Michael H. Gerloff
https://alpha.app.net/gcwwinc - Frankie Celindro
https://alpha.app.net/pastorwalters - Dan Walters
https://alpha.app.net/agu69 - Agustín
https://alpha.app.net/etechsolutionsmo - Sara Hagemeyer
https://alpha.app.net/amjadag - Amjad²
https://alpha.app.net/emergencyaz - Kyle Duthie
https://alpha.app.net/revtucher - Jared Tucher
https://alpha.app.net/creativologist -
https://alpha.app.net/wedrifastct - Professional Restoration Systems
https://alpha.app.net/zitronenkojotin - Zitronenkojotin
https://alpha.app.net/pccsouthernct - Professional Carpet Systems
https://alpha.app.net/klaeren - Christian Klaeren
https://alpha.app.net/hjssupply - Bo Tolbert
https://alpha.app.net/piratenpanda - Benjamin Lebsanft
https://alpha.app.net/hottubsalbuquerque -
https://alpha.app.net/alexscleaning - Oksana Khochay
https://alpha.app.net/buypowertoolsonline - Mike Beggs
https://alpha.app.net/yalinosgb - YALIN OSGB
https://alpha.app.net/aris_setiono_10 - Aris Setiono
https://alpha.app.net/escuincle - Andreas
https://alpha.app.net/thehealingstation - Connie Chan
https://alpha.app.net/starbritedental - Maryam Seifi
https://alpha.app.net/herr_woodstock - Woody
https://alpha.app.net/dozen - どぜん@Ninja250
https://alpha.app.net/allscrapbooksteals - Jorjana Brown
https://alpha.app.net/yviscuit - Yui Amasora/びすたん
https://alpha.app.net/tcheb - tcheb
https://alpha.app.net/vphonesja - vphonesja
https://alpha.app.net/telcoworld - Mary Hagopian
https://alpha.app.net/khal1d - khalid
https://alpha.app.net/lukasepple - sternenseemann
https://alpha.app.net/photopuck - Sean M Puckett
https://alpha.app.net/pbccontractor - Tamas Orban
https://alpha.app.net/destinosingluten - Destinos Sin Gluten
https://alpha.app.net/robertbeeger - Robert Beeger
https://alpha.app.net/sillygwailo - Richard Eriksson
https://alpha.app.net/signsonthenet - Gaston Ballbe
https://alpha.app.net/leenquin - Eilin Quin
https://alpha.app.net/boredzo - Peter Hosey
https://alpha.app.net/hrpanjwani - Hardik Panjwani
https://alpha.app.net/vinz - Vinzenz Greger
https://alpha.app.net/clew_less - Andrew Clews
https://alpha.app.net/aaroncrocco - Aaron Crocco
https://alpha.app.net/cswichita - Sam Lazarus
https://alpha.app.net/hasaw - Mark Palmer
https://alpha.app.net/chrismarquardt - Chris Marquardt
https://alpha.app.net/digitaldentalmag - Digital Dental Magazine
https://alpha.app.net/tahabsim - Jordan Tahabsim
https://alpha.app.net/jtc - der Jeff™
https://alpha.app.net/rokina - Rokina
https://alpha.app.net/stock_footage - Anistock
https://alpha.app.net/ttheus - ttheus
https://alpha.app.net/wooddale219ck - Katie Fielmann
https://alpha.app.net/setem - Setem Favaille
https://alpha.app.net/robthirty - Rob Mccray
https://alpha.app.net/9minecrafts -
https://alpha.app.net/conc_ph - Phleguratone
https://alpha.app.net/pook - 푸욱
https://alpha.app.net/fastbreakcarpet - Chase Anderson
https://alpha.app.net/marketecturemktg - Marketecturemktg
https://alpha.app.net/gya9 - gya9
https://alpha.app.net/luckyisgood - Visnja Zeljeznjak
https://alpha.app.net/sanookza_web - สมชาย สระแก้ว
https://alpha.app.net/jeromekoehler - Jerome Koehler
https://alpha.app.net/like - Daniel
https://alpha.app.net/eaturfat - EatUrFat
https://alpha.app.net/patrickmorrissey - Patrick Morrissey
https://alpha.app.net/aaronstanley - Aaron Stanley
https://alpha.app.net/sbeebe - Sam Beebe
https://alpha.app.net/arduina - Fiona
https://alpha.app.net/laf_r_acryl - Rutherfordium
https://alpha.app.net/lukaszklekot - Lukasz Klekot
https://alpha.app.net/holgi - Holger Klein
https://alpha.app.net/synphonic - Synphonic
https://alpha.app.net/kountycleaning - Tyrone Meeks
https://alpha.app.net/louistrapani - Louis Trapani
https://alpha.app.net/kehrseite - Markus Jakobs
https://alpha.app.net/abcorientalrug - Harriet Adams
https://alpha.app.net/carpetrecovery - Matthew Jarnis
https://alpha.app.net/mastergrowers - Neil Patcher
https://alpha.app.net/cstege - Christoph Stegemann
https://alpha.app.net/toddsteckelberg - Todd Steckelberg
https://alpha.app.net/easthamforgeinc - Eastham Forge, Inc.
https://alpha.app.net/joeworkman - Joe Workman
https://alpha.app.net/wqoq - wqoq
https://alpha.app.net/sunburstshutter - Greg Arnett
https://alpha.app.net/dipead - Dirk Adam
https://alpha.app.net/crickoholic - Shubham
https://alpha.app.net/cafarmagent - Alan Naguit
https://alpha.app.net/flosse - Florian Schinkel
https://alpha.app.net/phroc - Philippe
https://alpha.app.net/sn0man - sn0man
https://alpha.app.net/bdegrande - Bob DeGrande
https://alpha.app.net/certaprowaterloo -
https://alpha.app.net/pelargir - Matthew Bass
https://alpha.app.net/nguarracino - Nicholas Guarracino
https://alpha.app.net/lizabingo - lizabingo
https://alpha.app.net/rotaxmetals - Cheryl Henderson
https://alpha.app.net/stelter - stelter
https://alpha.app.net/kayan - salma
https://alpha.app.net/klikekyle - Kyle Gray
https://alpha.app.net/rjames86 - Ryan M
https://alpha.app.net/rudelm - Markus Rudel
https://alpha.app.net/ramichaelseidlitz - RA Michael Seidlitz
https://alpha.app.net/thedoctor - Doctor
https://alpha.app.net/sheinsheish - sheinsheish
https://alpha.app.net/mirrranchgroup - Darren Lanphere
https://alpha.app.net/mdreschert - Malte Dreschert
https://alpha.app.net/blog2read - Blog Reader
https://alpha.app.net/zwentner - Sven Schneider
https://alpha.app.net/aarkon - Aarkon
https://alpha.app.net/johnwatt - John Watt
https://alpha.app.net/jobostrading - Jorge Lauzardo
https://alpha.app.net/pharaohmfg - Vaugh Cohen
https://alpha.app.net/schaloml - Andreas Friedl
https://alpha.app.net/capitalcareplumbing - James Warren
https://alpha.app.net/530 - 530
https://alpha.app.net/0xidi - J. Caleb Patton
https://alpha.app.net/cmscritic - Mike Johnston
https://alpha.app.net/tsp - Trudel Spalding
https://alpha.app.net/baldwinsubaru - Sarah Erwin
https://alpha.app.net/gatogatogato - gatogatogato
https://alpha.app.net/lindseycatfit - Lindsey Catarino
https://alpha.app.net/iisus13 - Новости Кургана
https://alpha.app.net/ironpointmortgage - Kevin Fritz
https://alpha.app.net/mymagedo - mymagedo
https://alpha.app.net/fight4vets - Jan Dils
https://alpha.app.net/kossie - Subaru Ichihara
https://alpha.app.net/n1k2_java - stridge
https://alpha.app.net/wiiilmaa - Jens Wilmer
https://alpha.app.net/berg - Bryan Berg
https://alpha.app.net/kreg - craig willford
https://alpha.app.net/gtc - Geoff
https://alpha.app.net/astrodicticum - Florian Freistetter
https://alpha.app.net/aysk - YNCT-AYSK
https://alpha.app.net/environmentald -
https://alpha.app.net/holbrook - Paul Holbrook
https://alpha.app.net/adamlcox - Adam L. Cox
https://alpha.app.net/regdon70 - Reginald Dontache
https://alpha.app.net/t_o_m - Guido
https://alpha.app.net/jaminguy - Jamin Guy
https://alpha.app.net/heathr - heather gold
https://alpha.app.net/ferebee - Chris Ferebee
https://alpha.app.net/healthybedstore - Dante Storey
https://alpha.app.net/jandilswv - Jan Dils
https://alpha.app.net/appfigures - appFigures
https://alpha.app.net/swelsh - Sean
https://alpha.app.net/antichrisis - Sid
https://alpha.app.net/variablepulserate - K
https://alpha.app.net/socialmediaunity - Marites Son
https://alpha.app.net/mehreen_hassan - Mehreen Hassan
https://alpha.app.net/thiva - THIVA REALNEWS
https://alpha.app.net/strike - Jesse James Herlitz
https://alpha.app.net/centralbasinca - Joseph Legaspi
https://alpha.app.net/hesaplidukkan - Hesapli Dukkan
https://alpha.app.net/feorlen - Andrea Longo
https://alpha.app.net/thoughtbrain - Jenni Leder
https://alpha.app.net/purzel - Nico
https://alpha.app.net/sinasck - Sina
https://alpha.app.net/himg - HIM G
https://alpha.app.net/opendev - Sven
https://alpha.app.net/evagregory -
https://alpha.app.net/band - William Anderson
https://alpha.app.net/hirnbloggade - Stefan Thesing
https://alpha.app.net/brezentrager - Manfred Maier
https://alpha.app.net/pmc - Petra
https://alpha.app.net/macmind - läuft
https://alpha.app.net/hothdwallpapers4u - Hot Hdwallpapers
https://alpha.app.net/kambfhase - Frank Hase
https://alpha.app.net/solobasssteve - Steve Lawson
https://alpha.app.net/genvitkot - Геннадий Котляров
https://alpha.app.net/leatherneck1983 - Greg C Grove
https://alpha.app.net/mktgtheproduct - Adam Ithiel
https://alpha.app.net/mndt - Marvin Niedt
https://alpha.app.net/wolfpaw - Wolfpaw Terria
https://alpha.app.net/derek_duncan - Derek Duncan
https://alpha.app.net/showrav_hauqe - Showrav Ssl
https://alpha.app.net/chrissiattersee - Chrissiattersee
https://alpha.app.net/spridlewv - Michael Davis
https://alpha.app.net/sblowes - Samuel Blowes
https://alpha.app.net/omega8cc - Omega8.cc
https://alpha.app.net/gtdandy - Andy Cerier
https://alpha.app.net/applekeynote - Apple Keynote
https://alpha.app.net/olmstead - Stephen Olmstead
https://alpha.app.net/shownotes - Shownot.es
https://alpha.app.net/obtusemusings - Baron
https://alpha.app.net/maidpromo -
https://alpha.app.net/ancientbuho - Gabo
https://alpha.app.net/philg - Phillip Gruneich
https://alpha.app.net/guillo - Guillermo
https://alpha.app.net/poolshopwa - Lee Delanay
https://alpha.app.net/thinkofdave - Dave Hidding
https://alpha.app.net/alancrossdc - Alan Cross
https://alpha.app.net/hitoriblog - moyashi
https://alpha.app.net/joshuaarnao - Joshua Arnao
https://alpha.app.net/angrydingo - David
https://alpha.app.net/sauerhvac - Richard Quicke
https://alpha.app.net/ericky - Erick Yamanaka
https://alpha.app.net/aaden - Aaden von Zynburg
https://alpha.app.net/verifiedsafe - Verified
https://alpha.app.net/verdantcoder - Laura Hart
https://alpha.app.net/omauliho - Ogunbiyi Mauliho
https://alpha.app.net/davidhoang - David Hoang
https://alpha.app.net/beatlesunion - Tyler Sepulveda
https://alpha.app.net/decorm - Vince Rainey
https://alpha.app.net/km3media - KM3 Media SEO
https://alpha.app.net/cte_ - Christian
https://alpha.app.net/dottie - Dörthe Hempel-Seebeck
https://alpha.app.net/chake - Chake
https://alpha.app.net/cocoasamurai - Colin Wheeler
https://alpha.app.net/pseudonym - Florian
https://alpha.app.net/countryrose - Richard Davies
https://alpha.app.net/sanantoniohouses - San Antonio Houses
https://alpha.app.net/dbdnvikas -
https://alpha.app.net/jtennis73 - J. Spann
https://alpha.app.net/weisserzimt - Laura
https://alpha.app.net/dmlandrum - Darren Landrum
https://alpha.app.net/xwordy - Hobbes
https://alpha.app.net/amin_aa - Amin Abdollahzadeh
https://alpha.app.net/zarfeblong - Andrew Plotkin
https://alpha.app.net/mspinkymaniri - Ms. Pinky Maniri
https://alpha.app.net/jiffyclub - Matt Davis
https://alpha.app.net/cryptopartywien - CryptoParty WIEN
https://alpha.app.net/textcenter - TextCenter for iOS
https://alpha.app.net/portenkirchner - Georg Portenkirchner
https://alpha.app.net/marcuslynch - Marcus Lynch
https://alpha.app.net/woleonard - Leonard Wolf
https://alpha.app.net/shawnthroop - Shawn Throop
https://alpha.app.net/chucker - Sören Kuklau
https://alpha.app.net/lovedoctorjeff - Love Doctor Jeff
https://alpha.app.net/andrewmarvin - Andrew Marvin
https://alpha.app.net/bernd - Bernd
https://alpha.app.net/yururu - ゆるる
https://alpha.app.net/glamagurl - Rebecca
https://alpha.app.net/kunz - Fabian Kunz
https://alpha.app.net/onsamyj - Andrew
https://alpha.app.net/seansharp - Sean Sharp
https://alpha.app.net/lennienoh - Lennie
https://alpha.app.net/bwebster - Brian Webster
https://alpha.app.net/codingmonk - Matt Luker
https://alpha.app.net/webkitnightlies - WebKit Nightly Updates
https://alpha.app.net/doctorlinguist - Gag Halfrunt
https://alpha.app.net/andygrant - Andrew Grant
https://alpha.app.net/ed3d - Peter
https://alpha.app.net/mo3ad - Moadh
https://alpha.app.net/minutesuae - Minutes Web Designers
https://alpha.app.net/bmike - Mike Bradshaw
https://alpha.app.net/thekinkycollab - The Kinky Collaborative
https://alpha.app.net/brentonwoo - Brenton Woo
https://alpha.app.net/fitzage - Matthew Fitzsimmons
https://alpha.app.net/jggarcia - jersi
https://alpha.app.net/paco - Paco Hope
https://alpha.app.net/lourinaldi - Lou Rinaldi
https://alpha.app.net/spacekatgal - Brianna
https://alpha.app.net/ronnreeger - Ronn Reeger
https://alpha.app.net/mitchcohen - Mitch Cohen
https://alpha.app.net/the0lli - Olli
https://alpha.app.net/richflintphoto - Richard Flint
https://alpha.app.net/brycec - Bryce Chidester
https://alpha.app.net/nico_h - Nicolas Hoibian
https://alpha.app.net/therealchadhall - Chad Hall
https://alpha.app.net/sparkleaplenty - Sparkle Aplenty
https://alpha.app.net/ceejbot - C J Silverio
https://alpha.app.net/tguh - Teguh Aditya
https://alpha.app.net/bobafett - Boba Fett
https://alpha.app.net/milko - Milko Romero
https://alpha.app.net/irinabdal - Irin Abdal
https://alpha.app.net/omnifocus - OmniFocus
https://alpha.app.net/sarahthequeen - Sarah
https://alpha.app.net/dionte - Dionte Love
https://alpha.app.net/flowerpower - em-eye-are-eye-ai-em
https://alpha.app.net/akz - KAMINO Aki
https://alpha.app.net/r4ndz - R4ndZ
https://alpha.app.net/jeff83 - jeff baker
https://alpha.app.net/weltraumschaf - Sven Strittmatter
https://alpha.app.net/dickjohnny - d.k
https://alpha.app.net/iosota - Apple Updates
https://alpha.app.net/danielpunkass - Daniel Jalkut
https://alpha.app.net/thebinh - Binh Nguyen
https://alpha.app.net/conlan - Conlan Spangler
https://alpha.app.net/rasjomanny - Rasjomanny Puntorg
https://alpha.app.net/selassienetworks - Selassie Networks
https://alpha.app.net/n1k0lay - Nikolay Dmitriev
https://alpha.app.net/elliot - Elliot Clowes
https://alpha.app.net/stephrdev - Stephan Jaekel
https://alpha.app.net/yuibb - yuibb
https://alpha.app.net/greencultured - Green CulturED
https://alpha.app.net/bynkii - John
https://alpha.app.net/erutan - Carl Uebelhart
https://alpha.app.net/jdscolam - Jon
https://alpha.app.net/gopal__yadav - Gopal Yadav
https://alpha.app.net/sairakhangreat -
https://alpha.app.net/ardhya - ardhya pratama
https://alpha.app.net/hybotics - Dale Weber
https://alpha.app.net/boink - Jim Haw
https://alpha.app.net/rafaelcosta - Rafael Costa
https://alpha.app.net/crocusk - crocusk
https://alpha.app.net/brandonmillionaire -
https://alpha.app.net/lena - Lena
https://alpha.app.net/benbrooks - Ben Brooks
https://alpha.app.net/bdfortin - Brad Fortin
https://alpha.app.net/charsplat - Jeff Clement
https://alpha.app.net/chicorgi - chicorgi
https://alpha.app.net/oddmutou - おdd
https://alpha.app.net/wilsonhines - Wilson Hines ⌘
https://alpha.app.net/isaiah - isaiah
https://alpha.app.net/dasende - δας ενδε
https://alpha.app.net/johnm - John Mitchell
https://alpha.app.net/merzong - めるぞん
https://alpha.app.net/alesplin - Alex Esplin
https://alpha.app.net/xenop - xenop
https://alpha.app.net/jacobdrabik - Jacob Drabik
https://alpha.app.net/imohannad - Mohannad Aloraifi
https://alpha.app.net/badmosi - Markus
https://alpha.app.net/ibanez - Andrés Ibañez
https://alpha.app.net/sh4869 - 4869
https://alpha.app.net/brakerepairs -
https://alpha.app.net/ngochuyenyi - ngọc huyền
https://alpha.app.net/renovator_hub - Renovator Hub
https://alpha.app.net/ens - en
https://alpha.app.net/hundredsofcustomers - Hundreds of Customers LLC
https://alpha.app.net/giahuynhdecor - Gia Huỳnh Decor
https://alpha.app.net/joaksummrs -
https://alpha.app.net/jacobbusinessbecker - Jacob Becker
https://alpha.app.net/travego - Kamil Koç
https://alpha.app.net/abdulh - Abdullah Alsaadi
https://alpha.app.net/mofool - mofool
https://alpha.app.net/eschaton - Chris Hanson
https://alpha.app.net/ikop - iKop
https://alpha.app.net/haruki - haruki
https://alpha.app.net/gadgetmedia - GadgetMedia
https://alpha.app.net/bearsfan34 - Michael F. Sadowski
https://alpha.app.net/tcduff - Ted C. Duffield
https://alpha.app.net/apathos - Jeff Schmitz
https://alpha.app.net/easypaydaymarket - Easy Payday Market
https://alpha.app.net/bluekangaroo - Blue Kangaroo
https://alpha.app.net/epal - Edward Lawford
https://alpha.app.net/gurgaonbazaar - Gurgaon Bazaar
https://alpha.app.net/kazehaya - Eric Kim
https://alpha.app.net/kym - kym
https://alpha.app.net/martinmoeller - Martin Möller
https://alpha.app.net/klacoste - Kevin LaCoste
https://alpha.app.net/taniken - tani
https://alpha.app.net/justboys -
https://alpha.app.net/devwiththehair - Jaime Lopez
https://alpha.app.net/deeandrathomas - Deeandra Thomas
https://alpha.app.net/wootata - Wootata Mainan Anak
https://alpha.app.net/manamimic - 真魚
https://alpha.app.net/lna - لنا
https://alpha.app.net/splorp - Grant Hutchinson
https://alpha.app.net/traskjd - John-Daniel Trask
https://alpha.app.net/smithplatts - Adam S-P
https://alpha.app.net/leisuregetaways - Leisure Getaways Inc.
https://alpha.app.net/t6u - たろー
https://alpha.app.net/ronntorossian - Ronn Torossian
https://alpha.app.net/dldamore - David Damore
https://alpha.app.net/maira918 - mairakhan
https://alpha.app.net/ds2o - Ulf Hillig
https://alpha.app.net/mattischrome - Matthew Dorey
https://alpha.app.net/purupan - purupan
https://alpha.app.net/rakianne - らきあんぬ
https://alpha.app.net/jagsfresh - Jagsfresh
https://alpha.app.net/drivewayrepairmedic - DrivewayRepairMedic
https://alpha.app.net/netzrausch - Philipp
https://alpha.app.net/metrobricks - Metro Bricks
https://alpha.app.net/perfectsmileuk - The Perfect Smile Studios
https://alpha.app.net/mcgrummel - Norman Jaeckel
https://alpha.app.net/christianh - Christian
https://alpha.app.net/turki - Turki
https://alpha.app.net/xspeed159 - Frank F
https://alpha.app.net/slackerninja - slackerninja
https://alpha.app.net/huma_tanveer1 - Huma Tanveer
https://alpha.app.net/iankath - Ian Kath
https://alpha.app.net/pujakapoor318 -
https://alpha.app.net/1passwordbeta - 1Password Beta
https://alpha.app.net/brianpugh - Brian Pugh
https://alpha.app.net/griff - Griff
https://alpha.app.net/leralle - Ralf G.
https://alpha.app.net/jalea - jalea
https://alpha.app.net/taknil - Tom
https://alpha.app.net/fujitaiju - Fujiki Taiju
https://alpha.app.net/jalhan - Jalderella
https://alpha.app.net/amaytinhbang - Zalo chat
https://alpha.app.net/michielbijl - Michiel Bijl
https://alpha.app.net/u_ron_tya - 茶。
https://alpha.app.net/samayasoori - Noida Escorts
https://alpha.app.net/davitko - Miloš Davitković
https://alpha.app.net/_amitsbajaj - Amit Bajaj
https://alpha.app.net/indrabsus - Indra Batara
https://alpha.app.net/sanjeevastrology - Sanjeev Astrology
https://alpha.app.net/hitomi_k - Hitomi
https://alpha.app.net/iphonezhd - Rey
https://alpha.app.net/danfowler - Daniel Fowler
https://alpha.app.net/martinruetzler - Martin Ruetzler
https://alpha.app.net/kirbytest - Kirby Test
https://alpha.app.net/saucy -
https://alpha.app.net/iuadget - Velizar Berestov
https://alpha.app.net/schmonz - Amitai Schlair
https://alpha.app.net/ewerkzeug - e-werkzeug
https://alpha.app.net/ocelot - たん
https://alpha.app.net/chrisphin - Christopher Phin
https://alpha.app.net/olafh - Olaf Höch
https://alpha.app.net/mt_dora - どら
https://alpha.app.net/imatt - Matthias
https://alpha.app.net/plopp - plopp
https://alpha.app.net/darkwolffe - DarkWolffe
https://alpha.app.net/moot - moot
https://alpha.app.net/jbchmswp - Edward j berg jr
https://alpha.app.net/akko - akko
https://alpha.app.net/slideworld22 - Slide World
https://alpha.app.net/hitoiro - Hitoiro
https://alpha.app.net/towa - TOWA
https://alpha.app.net/asae - ASAE
https://alpha.app.net/thomasweller - Thomas Weller
https://alpha.app.net/aoi - Aoi
https://alpha.app.net/kristminster_jp - KRIST MINSTER JP
https://alpha.app.net/tricot - Tricot
https://alpha.app.net/picturetakerman - Asier García Morato
https://alpha.app.net/zoernig - Steffen Zoernig
https://alpha.app.net/iosengineer - Adam Iredale
https://alpha.app.net/kenken - KenKen
https://alpha.app.net/kaato - Kaato
https://alpha.app.net/rilril - RilRil
https://alpha.app.net/bestoftimes - Steve Hodgson
https://alpha.app.net/ssaly -
https://alpha.app.net/dallastxattorneys - Dallas Tx Attorneys
https://alpha.app.net/orientalrugcleaning -
https://alpha.app.net/roddi - Roddi
https://alpha.app.net/digitalkenta - DigitalKenta
https://alpha.app.net/patternmaker - PatternMaker
https://alpha.app.net/wnetoa - Martin Tomanec
https://alpha.app.net/dmate - Dominik Herkt
https://alpha.app.net/figshare - figshare
https://alpha.app.net/transtage - transtage
https://alpha.app.net/bjornrust - Björn Rust
https://alpha.app.net/northwiz - Mikael Winterkvist
https://alpha.app.net/geschichtendose - Geschichten aus der Dose
https://alpha.app.net/ow_2013 - Oliver
https://alpha.app.net/einfachnurmitc - Dominic
https://alpha.app.net/discoveradn - Discover ADN (The Podcast)
https://alpha.app.net/turol - Turol Fant
https://alpha.app.net/championsyedm - championsyedm
https://alpha.app.net/techalien - Bernd
https://alpha.app.net/amal - Amal
https://alpha.app.net/dj_koishi - せきずい
https://alpha.app.net/imactouch - Carsten Friehe
https://alpha.app.net/yrrsinn - Bruno Ranieri
https://alpha.app.net/mimuij - Michael Muijsers
https://alpha.app.net/fatihizm - Fatih
https://alpha.app.net/abn - Álvaro Bernal
https://alpha.app.net/guiguru - peter sikking
https://alpha.app.net/youka - youka
https://alpha.app.net/doener - Stephan Dörner
https://alpha.app.net/stoody - Stoody
https://alpha.app.net/orcbyhand - ORC By Hand
https://alpha.app.net/mangochutney - Alexander Hoffmann
https://alpha.app.net/clydesmith - Clyde Smith
https://alpha.app.net/hisureshkumar - Suresh
https://alpha.app.net/nathana - Nathan Anderson
https://alpha.app.net/timohetzel - Timo Hetzel
https://alpha.app.net/toby1525 - Tobias T. Hildebrandt
https://alpha.app.net/fields - Adam Fields
https://alpha.app.net/atakesya - Tak
https://alpha.app.net/healthyhempoil - Healthy Hemp Oil
https://alpha.app.net/naivedog - NaiveDog
https://alpha.app.net/bluvel - Bluvel
https://alpha.app.net/1sek1 - isk
https://alpha.app.net/brein - Fabian Hoemcke
https://alpha.app.net/reikienergyhealing - Twin Connection Energy Healing
https://alpha.app.net/patrickwagner - Patrick Wagner
https://alpha.app.net/nokin_niam - Jakob Wedemeyer
https://alpha.app.net/justuspearl - Justus Pearl
https://alpha.app.net/astonpharma -
https://alpha.app.net/tess_in_the_sky - Tess Kess
https://alpha.app.net/ght001 - Gabe Tinti
https://alpha.app.net/brainystars - Brainy Stars
https://alpha.app.net/marcelweiss - Marcel Weiss
https://alpha.app.net/n7 - 織@home
https://alpha.app.net/han50lo - Daniel Bednors
https://alpha.app.net/kevincray - Kevin Cray
https://alpha.app.net/peterpajchl - Peter Pajchl
https://alpha.app.net/dinor - Dino
https://alpha.app.net/kredytpolska - Kredyt Polska Portal Finansowy Kredytpolska.net
https://alpha.app.net/renatokle - Renato Ramalho
https://alpha.app.net/orangecountyhomes - John Rygiol
https://alpha.app.net/awoodvine - awoodvine
https://alpha.app.net/a3 - あ き
https://alpha.app.net/podsnider - PodSnider
https://alpha.app.net/geh - tamaki
https://alpha.app.net/oddevandotcom - oddEvan.com
https://alpha.app.net/drtikov - drtikov
https://alpha.app.net/iosessive - Scott Newton
https://alpha.app.net/borg_sven - Sven Bookmeyer
https://alpha.app.net/staatsbuergerkunde - Staatsbürgerkunde
https://alpha.app.net/bwg - var myName = "Ben";
https://alpha.app.net/dimka - Dimka
https://alpha.app.net/dirkruediger - Dirk Rüdiger
https://alpha.app.net/jheimann - Joshua Heimann
https://alpha.app.net/samtenetwork - flash game online
https://alpha.app.net/motorsport - Alexander Tundakov
https://alpha.app.net/hasyms - Hasyms
https://alpha.app.net/charmjf - 한량 Halryang
https://alpha.app.net/hbcarpetclean - Bob DeMartino
https://alpha.app.net/cokeraita - cokeraita
https://alpha.app.net/_107 - Tobias
https://alpha.app.net/kagerou - Kagerou
https://alpha.app.net/aaronlmgoodwin - Aaron L. M. Goodwin
https://alpha.app.net/jamarschaffer - Jamar Schaffer
https://alpha.app.net/macbook_dan - Daniel Gormley
https://alpha.app.net/mscostom - kim minsu
https://alpha.app.net/jeekza -
https://alpha.app.net/yaplus - やぷらす
https://alpha.app.net/kicking_kk - Kristian Knight
https://alpha.app.net/queenbeehousewa - Cristobal Mondragon
https://alpha.app.net/macintalk - Macintalk Podcast
https://alpha.app.net/jock312 - Jock Tiernan
https://alpha.app.net/oreo - oreo
https://alpha.app.net/envirotechinsul - Mark Connor
https://alpha.app.net/caffeinewriter - Brandon Anzaldi
https://alpha.app.net/kylecronin - Kyle Cronin
https://alpha.app.net/jtccoatings - Dean Ford
https://alpha.app.net/markuszoppelt - Markus Zoppelt
https://alpha.app.net/tobiassteffgen - Tobias Steffgen
https://alpha.app.net/iviephisto - Michael Pohl
https://alpha.app.net/lairdandson - Kim Laird
https://alpha.app.net/maverickwebmktg - Mike LeMoine
https://alpha.app.net/xtremecleanllc - Mike McClain
https://alpha.app.net/solaryx - Solaryx
https://alpha.app.net/ckphysio - Bryan Kelly
https://alpha.app.net/zappyzwo - André Kirstein
https://alpha.app.net/scorpioncomputers - Daryll Houston
https://alpha.app.net/sevan - Sevan Janiyan
https://alpha.app.net/simoncgn - simonCGN
https://alpha.app.net/modellansatz - Der Modellansatz
https://alpha.app.net/bayangiyim - Bayan Giyim Alışverişi
https://alpha.app.net/redbeard - Aj Newsom
https://alpha.app.net/bookitics - Bookitics
https://alpha.app.net/briancosta - Brian Costa
https://alpha.app.net/texhex - Michael 'Tex' Hex
https://alpha.app.net/kimahlberg - Kim Ahlberg
https://alpha.app.net/ravisorg - ravisorg
https://alpha.app.net/ianam - Ian Mason
https://alpha.app.net/jzamburek - Johann Zamburek
https://alpha.app.net/themagicbusiness - Giovanni
https://alpha.app.net/dandon - Nananana DANDON!
https://alpha.app.net/wgparham - Fr. William Parham (S.A.N.D.)
https://alpha.app.net/mechiro - めちろ
https://alpha.app.net/manik_k - Manik
https://alpha.app.net/huffy24 - pierre charles
https://alpha.app.net/n_fk7 - ふかにゃん
https://alpha.app.net/westminsecurity - Elizabeth Shaw
https://alpha.app.net/josephaleo - Joseph Aleo
https://alpha.app.net/chestermerere - Marjorie McKay
https://alpha.app.net/saumselig - Sebastian Fiebrig
https://alpha.app.net/dsoneil - Darcy O'Neil (Art of Drink)
https://alpha.app.net/radio_globetrotter - Radio-Globetrotter
https://alpha.app.net/mewkies - mewkies
https://alpha.app.net/elmos04 - ElmoS04
https://alpha.app.net/_o - Juri Leino
https://alpha.app.net/mrfresh - Doug Ramsay
https://alpha.app.net/otaviocc - Otavio Cordeiro
https://alpha.app.net/leemifsud - Lee Mifsud
https://alpha.app.net/keram - Marek
https://alpha.app.net/gillumdentistry - Dr. Richard Gillum
https://alpha.app.net/apfelhelfer - Ulf Hauf
https://alpha.app.net/mikeinertia - Michael Nirschl
https://alpha.app.net/thschoen - thschoen
https://alpha.app.net/pmukarno - Philemon Mukarno
https://alpha.app.net/liste - Die LISTE
https://alpha.app.net/instforaddictmo - Scott McKinney
https://alpha.app.net/pbur - Patrick Burleson
https://alpha.app.net/glendalemattres -
https://alpha.app.net/bbqasap - BBQ ASAP
https://alpha.app.net/remaxcrestmarketing - Steve Jamieson
https://alpha.app.net/veit - Justin Scholz
https://alpha.app.net/nullacht - Florian Knapp
https://alpha.app.net/benbryan - Ben Bryan
https://alpha.app.net/robjwells - Rob Wells
https://alpha.app.net/mina - Mina Abadir
https://alpha.app.net/bdfortin_nsfw - Brad Fortin
https://alpha.app.net/jspangler - Jerry Spangler
https://alpha.app.net/octopress - Octopress
https://alpha.app.net/iaian7 - John Einselen
https://alpha.app.net/baldown - Josh Ballard
https://alpha.app.net/id7om - حمنّي
https://alpha.app.net/nico79 - Nico
https://alpha.app.net/hallgrim - Hallgrim
https://alpha.app.net/firesides - Firesid.es
https://alpha.app.net/boy - Marty Porter
https://alpha.app.net/clone_milk - くろみる
https://alpha.app.net/nceent -
https://alpha.app.net/backmountaindental - Jamie DeFinnis
https://alpha.app.net/jools - Jools
https://alpha.app.net/divorcenewjersey - Curtis J. Romanowski
https://alpha.app.net/jeffmc - Jeff McLeman
https://alpha.app.net/chiromemphis - Mark Wallace
https://alpha.app.net/emory - emory
https://alpha.app.net/drewpickard - Drew Pickard
https://alpha.app.net/yep - yep
https://alpha.app.net/ruesselfisch - Timo
https://alpha.app.net/awanicka - Anne Wanicka
https://alpha.app.net/dmitry_official - Dmitry Kiyashko
https://alpha.app.net/matthiasregl - Matthias Regl
https://alpha.app.net/lipoqil - Mailo Svetel
https://alpha.app.net/tomwrp - Tom Pollock
https://alpha.app.net/ardunaut - Ardunaut
https://alpha.app.net/haaker -
https://alpha.app.net/dave_brown - David Brown
https://alpha.app.net/rbenvin - Rich Benvin
https://alpha.app.net/fucx - Thomas Heinrichsdobler
https://alpha.app.net/samuelgoodwin - Samuel "Not Sam" Goodwin
https://alpha.app.net/kninekate - Katherine Rumble
https://alpha.app.net/hiltmon - Hilton Lipschitz
https://alpha.app.net/dilyana19 -
https://alpha.app.net/timdifford - Tim Difford
https://alpha.app.net/fmcauley - Frank McAuley
https://alpha.app.net/dvorak - Brian Covey
https://alpha.app.net/andrewk - Andrew Kehrig
https://alpha.app.net/bambismusings - LilBambi
https://alpha.app.net/tcbarrett - TCBarrett
https://alpha.app.net/zev - Zev Eisenberg
https://alpha.app.net/ayadn - Ayadn
https://alpha.app.net/khanstyle321 - Javed iqbal
https://alpha.app.net/zropwr - Johnny Bravo
https://alpha.app.net/indienafrika - Walter Bracun
https://alpha.app.net/podlove - Podlove Personal Media Development
https://alpha.app.net/peter78 - Peter Bird
https://alpha.app.net/quimoniz - Lars Jitschin
https://alpha.app.net/jasonmader - Jason Mader
https://alpha.app.net/johnfera - John C. Fera
https://alpha.app.net/solwatts - Solomon Watts
https://alpha.app.net/maj_simo - simo
https://alpha.app.net/rtpeat - Richard Peat
https://alpha.app.net/andoveruk - Andover UK
https://alpha.app.net/rumblepress - Rumble Press
https://alpha.app.net/sjmadsen - Steve Madsen
https://alpha.app.net/oxifreshks - Eric Fahnestock
https://alpha.app.net/ral_mey - Ralph
https://alpha.app.net/megatraveller - MegaTraveller
https://alpha.app.net/1wayswim - Skip Owens
https://alpha.app.net/realiberry - Elise Cerise
https://alpha.app.net/eridius - Kevin Ballard
https://alpha.app.net/ntalbott - Nathaniel Talbott
https://alpha.app.net/hiroi - 自販機つり銭パカパカ二郎総帥
https://alpha.app.net/rockvilledentist -
https://alpha.app.net/darnell - Darnell Clayton
https://alpha.app.net/bikeman - Clifford Le Blanc
https://alpha.app.net/wellow - wellow
https://alpha.app.net/timparker - Tim Parker
https://alpha.app.net/ronnie - •
https://alpha.app.net/brenandmike - Mike Marko
https://alpha.app.net/griotspeak - TJ
https://alpha.app.net/jschiefer - Jonathan Schiefer
https://alpha.app.net/clarke_hanna - Clarke Hanna
https://alpha.app.net/inuhaore - (*'▽')
https://alpha.app.net/robglasener - Rob Glasener
https://alpha.app.net/enpitu - PURE
https://alpha.app.net/ashton - Ashton
https://alpha.app.net/ctp - Chris Parker
https://alpha.app.net/sethclifford - Seth Clifford
https://alpha.app.net/argentini - Michael Argentini
https://alpha.app.net/submlsame - Eric Godfrey
https://alpha.app.net/imathis - Brandon Mathis
https://alpha.app.net/nahumck - Tim Nahumck
https://alpha.app.net/gunthersmash - Garren Brown
https://alpha.app.net/titanonearth - Armin Briegel
https://alpha.app.net/oboenikui - oboenikui
https://alpha.app.net/appcoin - App$
https://alpha.app.net/plumbrepairmemphis - plumbingrepairmemphis
https://alpha.app.net/attero_ - Johannes W.
https://alpha.app.net/pgib - Patrick Gibson
https://alpha.app.net/waterheatermedic - Phil Luther
https://alpha.app.net/homerenovation - Home Renovation
https://alpha.app.net/athomerenovations - At Home Renovations
https://alpha.app.net/rebelsauce - REBELSAUCE
https://alpha.app.net/e0 - eoie
https://alpha.app.net/aardvark - Dave Wise
https://alpha.app.net/sankar7 - sankar
https://alpha.app.net/donniewest - Donnie West
https://alpha.app.net/jcaudle - Joseph Caudle
https://alpha.app.net/sentience - Kevin Yank
https://alpha.app.net/fain - Guy Fain
https://alpha.app.net/ezequielfritz - Ezequiel Fritz
https://alpha.app.net/ericteubert - Eric Teubert
https://alpha.app.net/ali_alshaya - Ali
https://alpha.app.net/dakotapuma - Puma Maldonado
https://alpha.app.net/rucare - Runell Packer
https://alpha.app.net/gilesthurston - Giles Thurston
https://alpha.app.net/telemachus - Dohwan
https://alpha.app.net/dameon - Dameon D. Welch-Abernathy
https://alpha.app.net/kena - ⊂ ぷよ ⊃
https://alpha.app.net/fallacies - J.Fallacy
https://alpha.app.net/styles4me -
https://alpha.app.net/pragmatic - Pragmatic
https://alpha.app.net/techdistortion - Tech Distortion
https://alpha.app.net/johnchidgey - John Chidgey
https://alpha.app.net/slomo - Ashley
https://alpha.app.net/zettt - Andreas Zeitler
https://alpha.app.net/kmi - kamyuitktk
https://alpha.app.net/daswort - Das tägliche Wort
https://alpha.app.net/hugin - Hugo Krantz
https://alpha.app.net/uaenewspapers - صحفنا الأجنبية
https://alpha.app.net/aydincevik45 - aydın çevik
https://alpha.app.net/amd - Abdulrahman
https://alpha.app.net/4ndree - Andгee Dettmeг
https://alpha.app.net/kcmscleaning1 - Nikki Maffitt
https://alpha.app.net/nerea - Nerea
https://alpha.app.net/tonyarnold - Tony Arnold
https://alpha.app.net/maeltj - maeltj
https://alpha.app.net/tuyapin - つやぴん@異次元の人
https://alpha.app.net/ekhtsasy -
https://alpha.app.net/chess_and_strategy - Philippe Dornbusch
https://alpha.app.net/daytonabeachhomes - DaytonaBeachHomes
https://alpha.app.net/trian - Nicole Alisch
https://alpha.app.net/b123400 - b123400
https://alpha.app.net/tippy - Tim Moore
https://alpha.app.net/kanedo - Gabriel
https://alpha.app.net/armariya - Ariya Lawanitchanon
https://alpha.app.net/saqla - SAQLA
https://alpha.app.net/andrewh - Andrew
https://alpha.app.net/appiast - Appiast
https://alpha.app.net/arifbudiman - Arif Budiman
https://alpha.app.net/bliss - bliss
https://alpha.app.net/mrfarbe - Christian
https://alpha.app.net/chamiu_it - ChaMiu
https://alpha.app.net/sunnz - sunnz
https://alpha.app.net/macchaberrycream - 抹茶
https://alpha.app.net/b2 - おすし
https://alpha.app.net/ypsilon -
https://alpha.app.net/405nm - kitten (yuyuport)
https://alpha.app.net/jcoder - Nils
https://alpha.app.net/bjarteminde - Bjarte Minde
https://alpha.app.net/pecet - pecet
https://alpha.app.net/ianto - Mercy
https://alpha.app.net/sernick - Sernick
https://alpha.app.net/3so4ru - みそたん
https://alpha.app.net/jnievele - Juergen Nieveler
https://alpha.app.net/rprokic - Roger Prokic
https://alpha.app.net/majed5000 - Majed alsayegh
https://alpha.app.net/blt - Benedict
https://alpha.app.net/mespaznar - Miguel Espada
https://alpha.app.net/lowerman - Chris
https://alpha.app.net/stuartmitchell - Stuart Mitchell
https://alpha.app.net/ameenah - <AMEENAH/>
https://alpha.app.net/netty - Netty Foo
https://alpha.app.net/somyod_srisuphan - Somyod Srisuphan
https://alpha.app.net/tobybaier - Toby Baier
https://alpha.app.net/brittnaymatthews - Brittnay Matthews
https://alpha.app.net/mackenziezales - Mackenzie Zales
https://alpha.app.net/deandrathenewgirl - Deandra
https://alpha.app.net/souljacker - くにえだ
https://alpha.app.net/shayvanburen - Shay Van Buren
https://alpha.app.net/ideasmachine - ideasmachine
https://alpha.app.net/taku947 - Fukuda Takuro
https://alpha.app.net/adalbert - Johannes
https://alpha.app.net/cameronvanburen - Cameron Van Buren
https://alpha.app.net/mo3tah - Muath Al Ghuday
https://alpha.app.net/mo2 - もつにこみ
https://alpha.app.net/scifonlywire - Dimitry Broyda
https://alpha.app.net/jordiae - Jordi Armengol Estapé
https://alpha.app.net/sszk - Shinsuke James Suzuki
https://alpha.app.net/andreagiusto -
https://alpha.app.net/chadhs - Chad Stovern
https://alpha.app.net/nicerank - The NiceRank API
https://alpha.app.net/anodisedpodcast - Anodised
https://alpha.app.net/clinton1550 - Clinton Phillips
https://alpha.app.net/marramgrass - Mark Goody
https://alpha.app.net/techstorenut - Techstorenut
https://alpha.app.net/tkmkz - つくも
https://alpha.app.net/habergowd - Kőrös Levente
https://alpha.app.net/schindler - Stefan Schindler
https://alpha.app.net/heckpiet - heckpiet
https://alpha.app.net/xv13chan - xv13
https://alpha.app.net/tiyok - Tiyok
https://alpha.app.net/asahi3 - asahi3
https://alpha.app.net/jamiesmyth - Jamie Smyth
https://alpha.app.net/_rendezvous_ - 菊子
https://alpha.app.net/gbl - Gabriel Bueno
https://alpha.app.net/moze - Philip Mozolak
https://alpha.app.net/mamzouka -
https://alpha.app.net/kuf - Konrad Förstner
https://alpha.app.net/alexistuft - Alexis Tuft
https://alpha.app.net/whs - Wir hören Stimmen
https://alpha.app.net/durul - durul dalkanat
https://alpha.app.net/hannover - Hannover
https://alpha.app.net/zagrib - Mas Joko
https://alpha.app.net/noiese - Jungbin Lee
https://alpha.app.net/oderwat - Hans R.
https://alpha.app.net/robmckenzieuk - Rob
https://alpha.app.net/jumitpeanut - Jam it, Peanut!
https://alpha.app.net/shawnp0wers - Shawn Powers
https://alpha.app.net/asada_noa - Asada_Noa
https://alpha.app.net/breathless -
https://alpha.app.net/bluexizn - 알 Katherine K.
https://alpha.app.net/mschmidt - Michael Schmidt
https://alpha.app.net/diamondhoe -
https://alpha.app.net/bellezamedspanm - Eva Pacheco
https://alpha.app.net/maro22nyan - お肉ちゃん
https://alpha.app.net/kdempsey93 - K Dempsey
https://alpha.app.net/hutt - Jannis Hutt
https://alpha.app.net/hootenanny -
https://alpha.app.net/synonymous13 -
https://alpha.app.net/bureaucrat -
https://alpha.app.net/liamlozier250 - Liam Lozier
https://alpha.app.net/vietnamese -
https://alpha.app.net/403 - ふぉびどぅん
https://alpha.app.net/extralarge -
https://alpha.app.net/ragefilled -
https://alpha.app.net/poginate - Nate Dickson
https://alpha.app.net/kihashi - John Cleaver
https://alpha.app.net/aaronblyth - Aaron Blyth
https://alpha.app.net/pescum - Stefan
https://alpha.app.net/eructation -
https://alpha.app.net/john_mackie_507464 - John Mackie
https://alpha.app.net/saschaam - Sascha André Mazatis
https://alpha.app.net/tscho - Tscho
https://alpha.app.net/hullabaloo -
https://alpha.app.net/generation -
https://alpha.app.net/basicbrick - Sam Brick
https://alpha.app.net/nutritious -
https://alpha.app.net/sebastianf - sebastianf
https://alpha.app.net/crocodiles -
https://alpha.app.net/goldhelmet -
https://alpha.app.net/metacarpal -
https://alpha.app.net/atmospeer - Atmo
https://alpha.app.net/wilderness -
https://alpha.app.net/eliamnunez - Elia Nunez
https://alpha.app.net/archerfish -
https://alpha.app.net/wildbill - Bill Childers
https://alpha.app.net/longklaw - Will Johnson
https://alpha.app.net/impatience -
https://alpha.app.net/ronak - Ronak
https://alpha.app.net/mayonnaise -
https://alpha.app.net/johdory - John D
https://alpha.app.net/marcel_sch - Marcel
https://alpha.app.net/krazyfrog - Prasad Naik
https://alpha.app.net/waterskier13 -
https://alpha.app.net/finsone - finsone
https://alpha.app.net/gymnastics -
https://alpha.app.net/nbeethe - Nathan Beethe
https://alpha.app.net/pohle - Christian Pohle
https://alpha.app.net/disguising -
https://alpha.app.net/seamstress -
https://alpha.app.net/dispirited -
https://alpha.app.net/scottnesbitt - Scott Nesbitt
https://alpha.app.net/despairing -
https://alpha.app.net/noob_fl - noob_fl
https://alpha.app.net/vannuysbailbonds - Big Boy Bail Bonds,Inc
https://alpha.app.net/frightenede -
https://alpha.app.net/y_sook - Sook
https://alpha.app.net/mytherceria - Mytherceria
https://alpha.app.net/moylar - もいらる
https://alpha.app.net/hoaxilla - HOAXILLA Podcast
https://alpha.app.net/mywillem - Peio
https://alpha.app.net/idiopathic -
https://alpha.app.net/andrzejcybulski - Andrzej
https://alpha.app.net/swjack1111 - Shawan
https://alpha.app.net/seicoaching - Seyi Eyitayo
https://alpha.app.net/sharkytank - Steven Cook
https://alpha.app.net/bunch97 -
https://alpha.app.net/glean571 -
https://alpha.app.net/dergrillpodcast - Feuer, Glut und Herzblut
https://alpha.app.net/portfolyou -
https://alpha.app.net/dvanhoudt - Dave Vanhoudt
https://alpha.app.net/thought84 -
https://alpha.app.net/justinmrkva - Justin Mrkva
https://alpha.app.net/larshuluk - Lars Hansen
https://alpha.app.net/arcana475 -
https://alpha.app.net/denishennessy - Denis Hennessy
https://alpha.app.net/hoffart - Götz Hoffart
https://alpha.app.net/mcasman - Michael Casman
https://alpha.app.net/witch876 -
https://alpha.app.net/ranto - The Neanderthal
https://alpha.app.net/darrenolivier - Darren Olivier
https://alpha.app.net/chopped601 -
https://alpha.app.net/nevis952 -
https://alpha.app.net/bigkaa - Thomas
https://alpha.app.net/poles849 -
https://alpha.app.net/pod554 -
https://alpha.app.net/estherchristina - Esther-Christina Laabs
https://alpha.app.net/clowder346 -
https://alpha.app.net/pent - Pent
https://alpha.app.net/podfeet - Allison Sheridan
https://alpha.app.net/hulking243 -
https://alpha.app.net/kass3tte - Herr Kassette
https://alpha.app.net/macformat - MacFormat
https://alpha.app.net/envious672 -
https://alpha.app.net/droct - Stephen Brandon
https://alpha.app.net/black570 -
https://alpha.app.net/nsonic - Boris Nienke
https://alpha.app.net/sweetdemoaccount - Sweet Demo Account
https://alpha.app.net/sowse899 -
https://alpha.app.net/dead884 -
https://alpha.app.net/nink - Nicholas Zeltzer
https://alpha.app.net/filozoph - filozoph
https://alpha.app.net/avvfrullonesentenze - Avv.Rosa Frullone
https://alpha.app.net/damaged829 -
https://alpha.app.net/squeakycleanfl - Zev Sachnin
https://alpha.app.net/parp104 -
https://alpha.app.net/saminakhaan - samina khan
https://alpha.app.net/dewey - Dewey Kang
https://alpha.app.net/stick794 -
https://alpha.app.net/apricot561 -
https://alpha.app.net/fraustaenki - Daniel Stanke
https://alpha.app.net/ladynylon -
https://alpha.app.net/lilardie - Ardis Charbonneau
https://alpha.app.net/stormlux - Tom Siodlak
https://alpha.app.net/belgian749 -
https://alpha.app.net/elbow69 -
https://alpha.app.net/robd - Rob
https://alpha.app.net/alysonf - Alyson Fielding
https://alpha.app.net/daffy675 -
https://alpha.app.net/labored490 -
https://alpha.app.net/melodic823 -
https://alpha.app.net/stevenvanelk - Steven Van Elk
https://alpha.app.net/grosvenor - John Grosvenor
https://alpha.app.net/swordfish23 - Loretta
https://alpha.app.net/tehshrike - Josh Duff
https://alpha.app.net/girlcarew - Christina Carew
https://alpha.app.net/side935 -
https://alpha.app.net/atoro - Markus Heberling
https://alpha.app.net/shelter691 -
https://alpha.app.net/wounds530 -
https://alpha.app.net/drsnooze - doc snooze
https://alpha.app.net/young729 -
https://alpha.app.net/fard11 -
https://alpha.app.net/soyjospe - Jospe
https://alpha.app.net/retina917 -
https://alpha.app.net/alohahawaii - Anuenue Honi
https://alpha.app.net/popcorn958 -
https://alpha.app.net/extropic_engine - Joshua Stewart
https://alpha.app.net/jslater - Jeff Slater
https://alpha.app.net/bula - BULASOUL
https://alpha.app.net/camel75 -
https://alpha.app.net/jamesmckinlay -
https://alpha.app.net/nall - Jon Nall
https://alpha.app.net/randyfelts - Randy Felts
https://alpha.app.net/penguin - Jeremy Tanner
https://alpha.app.net/schellack - Jonathan Schellack
https://alpha.app.net/renko - Renko
https://alpha.app.net/tomo_himajin - Hima Hitoshi
https://alpha.app.net/kkxxxxxxx - lon Ong
https://alpha.app.net/zaltair - Zara Altair
https://alpha.app.net/apixelshort - Lachlan Harman
https://alpha.app.net/0xmf - Mark Fernandes
https://alpha.app.net/lrsecrets - Gene McCullagh
https://alpha.app.net/adders - Adam Tinworth
https://alpha.app.net/jeanea - Jeane Aragones
https://alpha.app.net/cp - Craig Phillips
https://alpha.app.net/winegiftboxes - Scott the Box Maker
https://alpha.app.net/mohd - Mohammed Aljarallah
https://alpha.app.net/headless_monkeyman - Kurt
https://alpha.app.net/uk_kt - KeiTy
https://alpha.app.net/lenhung_it -
https://alpha.app.net/theresheis - Tenisha
https://alpha.app.net/clcpete - Pete West
https://alpha.app.net/ghazanfar222 - Ghazanfar
https://alpha.app.net/22century - 22
https://alpha.app.net/nuferplus - Nufer Plus
https://alpha.app.net/coachingforleaders - Coaching for Leaders
https://alpha.app.net/freffen01 - treffen
https://alpha.app.net/nakokoma -
https://alpha.app.net/onetiger00 -
https://alpha.app.net/quoteoracle - John Williams
https://alpha.app.net/allstardisplays - All Star Displays
https://alpha.app.net/getridofacnenow2 - Hilda T. Candelaria
https://alpha.app.net/sls60 - steven saffold
https://alpha.app.net/deanrblack - Dean R Black
https://alpha.app.net/mintcandyapple - M. M.
https://alpha.app.net/emilyglover - Emily Glover
https://alpha.app.net/pharsicle - Michael Strasser
https://alpha.app.net/binarytilt - Binary Tilt
https://alpha.app.net/battalio - Michael Battalio
https://alpha.app.net/braynard - Matt Braynard
https://alpha.app.net/edgecasesshow - Edge Cases
https://alpha.app.net/gibranalnn - Gibranal NN
https://alpha.app.net/dwarkahotels - Dwarka Hotels
https://alpha.app.net/blenderhead - Jordan Cooper
https://alpha.app.net/zillatron - Daniel Pavlides
https://alpha.app.net/ichris - Chris Enns
https://alpha.app.net/shenkarraja - Shenkar
https://alpha.app.net/interiorendizain - Georgi
https://alpha.app.net/wewius - Wewius
https://alpha.app.net/volkerv - Volker Vöcking
https://alpha.app.net/qvex23 - Dirk Hildebrand
https://alpha.app.net/workwarehouse - Work Ware House
https://alpha.app.net/charliway1 -
https://alpha.app.net/schlingel - Bastian Wölfle
https://alpha.app.net/ho19 - ほ
https://alpha.app.net/zats - Sash Zats
https://alpha.app.net/ein_marco - ein oɔɹɐW
https://alpha.app.net/polkadotpr - Dionne Taylor
https://alpha.app.net/chrismas_albert - Chrismas Albert
https://alpha.app.net/wasserwissenswert - Peter Janz
https://alpha.app.net/rainergrossmann - Rainer Großmann
https://alpha.app.net/heidigoseek - Heidi Blanton
https://alpha.app.net/4nduril - Tobias Barth
https://alpha.app.net/nico1e - Nicole Wähner
https://alpha.app.net/copperheisenberg - Copper Heisenberg
https://alpha.app.net/jonnybarnes - Jonny Barnes
https://alpha.app.net/bruhn - bruhn
https://alpha.app.net/musslautsein - Fred
https://alpha.app.net/dakshaseo - Daksha SEO
https://alpha.app.net/arclite - Geoff Pado
https://alpha.app.net/sunny - Sunny Mishra
https://alpha.app.net/leadury -
https://alpha.app.net/mulrooney - David Mulrooney
https://alpha.app.net/regulusalpha - レグルス
https://alpha.app.net/wanazawawww - wanazawa
https://alpha.app.net/lamya - Lamya AB
https://alpha.app.net/ipfreaks - ipfreaks
https://alpha.app.net/launchbar - LaunchBar
https://alpha.app.net/overseasdental - Overseas Dental Solutions
https://alpha.app.net/traditionalshaving - Traditional Shaving
https://alpha.app.net/elkki -
https://alpha.app.net/sabrinakhan -
https://alpha.app.net/dominicsayers - Dominic Sayers
https://alpha.app.net/ochsensepp - Oliver Zivkovic
https://alpha.app.net/sureguard - Sureguard Window Film
https://alpha.app.net/easytextloans4u - Easy Text Loans4u
https://alpha.app.net/alkalineionizers - Alkalinewaterionizers
https://alpha.app.net/crankturtle - crankturtle
https://alpha.app.net/rakhi4brothers - Surbhi Thakur
https://alpha.app.net/webemployed - WebEmployed
https://alpha.app.net/cameyshop - Camey Shop
https://alpha.app.net/stefansalvatore - Stefan salvatore
https://alpha.app.net/kansascityhomes - Overland Park Homes
https://alpha.app.net/inwizards - Inwizards
https://alpha.app.net/ilovekickboxing_ri - iLoveKickboxingCranston.com
https://alpha.app.net/h_richert - Hannes Richert
https://alpha.app.net/dholdhamaka - dholdhamaka
https://alpha.app.net/marc_intosh - Marc Alonso
https://alpha.app.net/claudia44111 - claudia
https://alpha.app.net/archhead - Michael Jauernik
https://alpha.app.net/bryanschmiedeler - Bryan Schmiedeler
https://alpha.app.net/softsystemsolution - Soft System Solution
https://alpha.app.net/vps360 - VPS360
https://alpha.app.net/egointernational - EGO_International
https://alpha.app.net/eay - Stefan Grund
https://alpha.app.net/zn80 - Carsten
https://alpha.app.net/oroskopos - oroskopos
https://alpha.app.net/ianmac - Teat and Tag Sydney
https://alpha.app.net/blackdragoniv - Derrick Jolicoeur
https://alpha.app.net/syzfonics - しずふぉにくす
https://alpha.app.net/hetima - hetima
https://alpha.app.net/smarsel - Steve Marsel
https://alpha.app.net/graciyaleon - Graciya Leon
https://alpha.app.net/timb - Tim Bates
https://alpha.app.net/imwilliams - Isabel Williams
https://alpha.app.net/efelloca -
https://alpha.app.net/echocottages - ECHO Cottages
https://alpha.app.net/secboffin - Graham Lee
https://alpha.app.net/manuels - ⠍⠁⠝⠥⠑⠇⠎
https://alpha.app.net/rosenz - Gary Rosenzweig
https://alpha.app.net/joshpennington - Josh Pennington
https://alpha.app.net/dinesh2211 - Ramesh Misra
https://alpha.app.net/lakotadlustig - Lakota Lustig
https://alpha.app.net/wdk - Wilfred de Kok
https://alpha.app.net/shoentripp - Shoen Tripp
https://alpha.app.net/s3rv -
https://alpha.app.net/i4rab - مدونة اي عرب تيك
https://alpha.app.net/4go - Fore Go
https://alpha.app.net/totalplbg -
https://alpha.app.net/mbs - Marc Schwieterman
https://alpha.app.net/formfireglass - Amy Holms
https://alpha.app.net/semtex - Boris Kröger
https://alpha.app.net/babyplus - Julie Louly
https://alpha.app.net/onlinefilmsinema - onlinefilmsinema
https://alpha.app.net/seoexpress - Luar Nañil
https://alpha.app.net/jasonechols - Jason Echols
https://alpha.app.net/rentalo - Alfredo Purrinos
https://alpha.app.net/tapestrynj - Richard Zimmer
https://alpha.app.net/mavila - Milton Avila
https://alpha.app.net/redstickseo - Chris Hatcher
https://alpha.app.net/crystalcleardm - Crystal Clear Digital Marketing
https://alpha.app.net/stefanova_anastasia1 - anastasia stefanova
https://alpha.app.net/jmarketeer101 - Joe Marketeer
https://alpha.app.net/theitalianjob - mario
https://alpha.app.net/amantsfloorcare - Amants Floor Care
https://alpha.app.net/thelambertfirm - Hugh Lambert
https://alpha.app.net/checkinsm - Check-in Social Media
https://alpha.app.net/bobsonbob - Jörg Beckmann
https://alpha.app.net/gracecommunityschool - Grace Community School
https://alpha.app.net/mellowjeremy - Mellow Jeremy
https://alpha.app.net/edisonshyti -
https://alpha.app.net/salimbo - Salim M.
https://alpha.app.net/dylanseeger - Dylan Seeger
https://alpha.app.net/amineelbahi - Amine Elbahi
https://alpha.app.net/onpage1 - Jean Bridges
https://alpha.app.net/ibecktech - David Becker
https://alpha.app.net/johnbergman - John Bergman
https://alpha.app.net/nathalieklassen -
https://alpha.app.net/samos - Samos
https://alpha.app.net/rmcgee - Robert McGee
https://alpha.app.net/kustomgraphix - Peter Hamilton
https://alpha.app.net/heinemannp - Pascal Heinemann
https://alpha.app.net/gpartsinc -
https://alpha.app.net/xbsoftware - XB Software
https://alpha.app.net/smilecareshopuk - Magnus Eilertsen
https://alpha.app.net/thebridgeacross - TheBridgeAcross
https://alpha.app.net/meti - Matthias
https://alpha.app.net/marinadl - Marina DL
https://alpha.app.net/macncheeseslave - MacNCheeseSlave
https://alpha.app.net/teledirectcenter -
https://alpha.app.net/newswirenetwork - Newswire Network Ltd
https://alpha.app.net/stlrestreview - Stlouisrestaurantrevew
https://alpha.app.net/seoindiadental - Tourism Dental India
https://alpha.app.net/johnuberhernandez - John Uber Hernández Santa
https://alpha.app.net/sentratour - SENTRATOUR | Umra Hajj and Tour
https://alpha.app.net/johnsheets - John Sheets
https://alpha.app.net/envyspiralslicer - envyspiralslicer
https://alpha.app.net/jhwoodyatt - james woodyatt
https://alpha.app.net/rrbrambley - Rob Brambley
https://alpha.app.net/comedysafedriver - Comedy Safe Driver
https://alpha.app.net/wktk - wktk
https://alpha.app.net/omlll - omlll
https://alpha.app.net/vaguery - William Tozier
https://alpha.app.net/christiancsd - ChristianCSD
https://alpha.app.net/v0tti - Alexander Votteler
https://alpha.app.net/williamxiii - williamxiii
https://alpha.app.net/cigardojo - The Cigar Dojo
https://alpha.app.net/riva - Rico Valtin
https://alpha.app.net/sailingmedia - Felix
https://alpha.app.net/bildbeurteilung - Thomas Weller
https://alpha.app.net/doritc - Dorit
https://alpha.app.net/ayellowtaxiservice - Mike Miller
https://alpha.app.net/ils1993 - ils1993
https://alpha.app.net/lindsaydealy - Lindsay
https://alpha.app.net/lenmooney - Len Mooney
https://alpha.app.net/arided - arided
https://alpha.app.net/everyday_security - Everyday Security
https://alpha.app.net/littleblakexxx - luyu
https://alpha.app.net/megavark - Mark G. Vega
https://alpha.app.net/painreliefexprt - Ali Maz
https://alpha.app.net/swaraiblog - Swaraiblog
https://alpha.app.net/nadyne - Nadyne Richmond
https://alpha.app.net/junaxible - junaxible
https://alpha.app.net/ripwater - ripwater
https://alpha.app.net/konscience - KonScience
https://alpha.app.net/slimcapsule19 - Kevin Smith
https://alpha.app.net/al45tair - Alastair Houghton
https://alpha.app.net/kaliski - Maciek Kaliski
https://alpha.app.net/nature - Nature Magazine
https://alpha.app.net/vinesdrug - Vine Is My Drug
https://alpha.app.net/svenwal - Sven Walther
https://alpha.app.net/schoem - Morgan Schönberger
https://alpha.app.net/lucia - Lucia
https://alpha.app.net/brain_training - RaiseYourIQ Brain Training
https://alpha.app.net/orthobraces - Kelly Buffington
https://alpha.app.net/rahul1731987 -
https://alpha.app.net/raza - Raza Syed
https://alpha.app.net/tofias - Michael Tofias
https://alpha.app.net/galsanov - Bair Galsanov
https://alpha.app.net/_chrismay - Chris May
https://alpha.app.net/milenkovic - Milojko
https://alpha.app.net/jansegers - Pieter Jansegers
https://alpha.app.net/g33k - Andrew Way
https://alpha.app.net/it_keller - IT-Keller
https://alpha.app.net/pbsbluejay - BestProducts4U
https://alpha.app.net/robk - Rob
https://alpha.app.net/pchblk - Mario ten Venne
https://alpha.app.net/fletcher_piers - Piers Fletcher
https://alpha.app.net/pnly - あわあわ
https://alpha.app.net/murmike - Michael Murphy
https://alpha.app.net/cheapfloorsla - George Bar
https://alpha.app.net/rosenhagen - Henning Rosenhagen
https://alpha.app.net/micha74un - Michael Bergmann
https://alpha.app.net/kiyohoshi - きよほし
https://alpha.app.net/raphi - Raphael Schweikert
https://alpha.app.net/maki - maki
https://alpha.app.net/343max - Max Winde
https://alpha.app.net/melli - Melli
https://alpha.app.net/timoe - Timo E aus E
https://alpha.app.net/mayer - Alexander Mayer
https://alpha.app.net/javajunky - Wil
https://alpha.app.net/hnsstrk - Hans Stark
https://alpha.app.net/rhenium - レニウム
https://alpha.app.net/gainwebsite - GainWebsite
https://alpha.app.net/ajmckee - AJ McKee
https://alpha.app.net/stefankirsch - Stefan Kirsch
https://alpha.app.net/oldvillain - David
https://alpha.app.net/markharbert - Mark Harbert
https://alpha.app.net/jakes - Jake Sulpice
https://alpha.app.net/juansilverio - Juan Silverio
https://alpha.app.net/vegasmagician - Jeffrey Richards
https://alpha.app.net/markstrayer - Mark Strayer
https://alpha.app.net/mike_060 - MifMav
https://alpha.app.net/darkhawk - Nate Pinkerton
https://alpha.app.net/nyk - 乳欲剤
https://alpha.app.net/adsmall - Adam Small
https://alpha.app.net/miyajimajp - Mitsuhiko MIYAJIMA
https://alpha.app.net/weightloss147 -
https://alpha.app.net/forblaze - Limstella
https://alpha.app.net/bluedonkey - John Gordon
https://alpha.app.net/bigrb - Ross Bamford
https://alpha.app.net/zeebe - Robert Ziebol
https://alpha.app.net/omnigroup - The Omni Group
https://alpha.app.net/fakegrimlock - FAKEGRIMLOCK
https://alpha.app.net/no_rumors - هيئة مكافحة الإشاعات
https://alpha.app.net/minego - Micah N Gorrell
https://alpha.app.net/ginkiha - ginkiha
https://alpha.app.net/syntheway - Syntheway
https://alpha.app.net/krawala - Oliver U.
https://alpha.app.net/mlmathews - Mark Mathews
https://alpha.app.net/annajulie - Anna Julie
https://alpha.app.net/jmreekes - Jimmy Reekes III
https://alpha.app.net/rl - Rich LaMarche
https://alpha.app.net/rets - Rets
https://alpha.app.net/luismi - Luis Miguel Herrero
https://alpha.app.net/turboplanner -
https://alpha.app.net/b_ - ぶらろ
https://alpha.app.net/mecha3 - mecha3
https://alpha.app.net/boazc123 - boaz chester
https://alpha.app.net/psexton - Paul Sexton
https://alpha.app.net/rockclimber - Chris Williams
https://alpha.app.net/desem - Desem Ashari
https://alpha.app.net/oblikva - Yafune
https://alpha.app.net/paulkruczynski - Paul Kruczynski
https://alpha.app.net/realtyua -
https://alpha.app.net/retrophisch - Christopher Turner
https://alpha.app.net/gaondoya - 無料アカウント
https://alpha.app.net/jakel - Jacob L
https://alpha.app.net/lonelybob - Kevin aka LonelyBob
https://alpha.app.net/benwerd - Ben Werdmuller
https://alpha.app.net/jmccray2129 - Julie McCray
https://alpha.app.net/alexpaim - Alex Paim
https://alpha.app.net/johnflute - John Wubbenhorst
https://alpha.app.net/edojin - 江戸人
https://alpha.app.net/bryanjclark - Bryan Clark
https://alpha.app.net/arusaali -
https://alpha.app.net/clippingpathindia - Clipping Path India
https://alpha.app.net/danvpeterson - Dan V Peterson
https://alpha.app.net/boxenjim - Jim Schultz
https://alpha.app.net/ivh - Thomas Marquart
https://alpha.app.net/park - Park Silkenson
https://alpha.app.net/verso - Kelly Guimont
https://alpha.app.net/junichi_suzuki - Junichi Suzuki
https://alpha.app.net/tokyoadn - TokyoADN
https://alpha.app.net/philnelson - Phil Nelson
https://alpha.app.net/nadsecrets - Nad!
https://alpha.app.net/hstratmann - Hendrik Stratmann
https://alpha.app.net/vitalymlm -
https://alpha.app.net/dubaicosmeticsurgery - DubaiCosmeticSurgery
https://alpha.app.net/nerdkunde - Nerdkunde
https://alpha.app.net/rahulrr - Rahul Saxena
https://alpha.app.net/marcomarzillier - Marco Marzillier
https://alpha.app.net/kayuwes - Kay Schuchert
https://alpha.app.net/whatisyourrshw - whatisyourRShw
https://alpha.app.net/hello - Hello, I'm Noah
https://alpha.app.net/ketan - Ketan Majmudar
https://alpha.app.net/netlabs - NetlabsITS
https://alpha.app.net/tg_lp - tg
https://alpha.app.net/liro7031 -
https://alpha.app.net/karo2204 - Karolin Bierbrauer
https://alpha.app.net/blixt - Blixt
https://alpha.app.net/shopiaphera - Shopia Phera
https://alpha.app.net/eloka - eloka
https://alpha.app.net/carencole - Caren Cole
https://alpha.app.net/fsckflow - fsckflow
https://alpha.app.net/moznektar - Mo zu
https://alpha.app.net/babycake - babycake
https://alpha.app.net/thomassch - Thomas Schwarz
https://alpha.app.net/paul0075 - Paul Rands
https://alpha.app.net/malte70 - Malte Bublitz
https://alpha.app.net/kyren - Kyren
https://alpha.app.net/farspin01 - Christoph
https://alpha.app.net/powerssellersplcfl - Amanda Powers sellers
https://alpha.app.net/lombardolawca - Domenic Lombardo
https://alpha.app.net/superbahis -
https://alpha.app.net/meshforce - Donald
https://alpha.app.net/kwood - Kai Wood
https://alpha.app.net/vsl - SiESLA
https://alpha.app.net/laurakalbag - Laura Kalbag
https://alpha.app.net/e_moran - Egoitz Morán
https://alpha.app.net/ffiene - Frank Fiene
https://alpha.app.net/taizona - Taizō Nabekura℠ v3.8
https://alpha.app.net/superufo - superufo! Radio Show
https://alpha.app.net/irightsinfo - iRights.info
https://alpha.app.net/rxy - ふーき
https://alpha.app.net/uhhhci - HCI Universität Hamburg
https://alpha.app.net/gumcam_org - GUMCAM
https://alpha.app.net/giftoftimeladies1 -
https://alpha.app.net/shorttermloans - Short Term Loans
https://alpha.app.net/trishacappelletti - Trisha Cappalletti
https://alpha.app.net/griesgraemer - Griesgraemer
https://alpha.app.net/happybuddha - Jürgen Bo.
https://alpha.app.net/mazeandzest - Thitima
https://alpha.app.net/seed - Seed
https://alpha.app.net/petertroi - Peter Baanen
https://alpha.app.net/p176 - Dave
https://alpha.app.net/catpella - Capella
https://alpha.app.net/albionplumbing - Albion Plumbing and Rooter, Inc.
https://alpha.app.net/matzoman - Matthias Welling
https://alpha.app.net/ricoluethi - Rico F. Lüthi
https://alpha.app.net/brummer - Tobias Brummer
https://alpha.app.net/mo4ca - もしか
https://alpha.app.net/scientifics - Steven Owens
https://alpha.app.net/rchandra - RChandra
https://alpha.app.net/mrgn - もりげん
https://alpha.app.net/asteria0177 - sino
https://alpha.app.net/agebata - あげばたー
https://alpha.app.net/a_ - バイナン
https://alpha.app.net/thesoholoft -
https://alpha.app.net/miaindia - MiaIndia
https://alpha.app.net/kuickresearch - Kuick Research
https://alpha.app.net/ichitaso - ichitaso
https://alpha.app.net/wav - Yudai
https://alpha.app.net/kellylewis - legalherbalonline
https://alpha.app.net/r2shyyou - Arthur
https://alpha.app.net/mikesandersm - Mike Sanders
https://alpha.app.net/applicanttracking - Applicant Tracking System
https://alpha.app.net/schnee - Mariana
https://alpha.app.net/tuesdaychallenge - Official Tuesday Challenge
https://alpha.app.net/stefan0124 - stefan
https://alpha.app.net/abishekrsrikaanth - Abishek R Srikaanth
https://alpha.app.net/ozgebasak92 - Özge Başak
https://alpha.app.net/simgekutman -
https://alpha.app.net/kevinpit1 - Kevin Pit
https://alpha.app.net/bonitacurtis - Bonita Curtis
https://alpha.app.net/bitcoin_mcr - Bitcoin Manchester
https://alpha.app.net/eddo - Eduard Rosert
https://alpha.app.net/82 - rin_ne_01
https://alpha.app.net/kevinburns - Kevin Burns
https://alpha.app.net/benjones1990 - Ben Jones
https://alpha.app.net/cybernetstores - Mark szypulski
https://alpha.app.net/david1629 - David James Martin
https://alpha.app.net/lilduckschildma - Katalin Levesque
https://alpha.app.net/ronbuehler - Ron Bühler
https://alpha.app.net/nizikawa - Nizikawa
https://alpha.app.net/rugcleaningtulsa -
https://alpha.app.net/riversidegopher -
https://alpha.app.net/michaela_w - Michaela Werner
https://alpha.app.net/zer0her0 - Andrew M
https://alpha.app.net/privettedentist -
https://alpha.app.net/zbee - Zbee
https://alpha.app.net/remodelingstlouismo - Tiffanie Dinger
https://alpha.app.net/cbollert - Christian Bollert
https://alpha.app.net/riskard - Riskard
https://alpha.app.net/veritrope - Justin Lancy
https://alpha.app.net/color_i_rhs63 - もきゅ
https://alpha.app.net/egoexpress - Björn Stierand
https://alpha.app.net/iompt - I-OM Physical Therapy, P.C.
https://alpha.app.net/benningtonspringsmhp - Keith Teynor
https://alpha.app.net/fitplus6mom -
https://alpha.app.net/cronblast - CronBlast
https://alpha.app.net/dinner - lester
https://alpha.app.net/chrimm - Christoffer T. Timm
https://alpha.app.net/quantumbuyers - Quantum Buyers
https://alpha.app.net/hlc98 - iXerol
https://alpha.app.net/entresol - Stefan Probst
https://alpha.app.net/55 - QB
https://alpha.app.net/o_desu4 - おーけーしょー
https://alpha.app.net/huronurama - ふろぬら
https://alpha.app.net/iwdro - IWDRO
https://alpha.app.net/seo500k - SEO500k
https://alpha.app.net/erikschmidt - Erik Schmidt
https://alpha.app.net/brainseller - Frank Fuchs
https://alpha.app.net/xstex - Stephen Robinson
https://alpha.app.net/traditionsrealtyteam - Chad Hovde
https://alpha.app.net/aiwilliams - Adam Williams
https://alpha.app.net/dmgrestorationaz - Thomas Eberhard
https://alpha.app.net/ads20000 - Adam Eveleigh
https://alpha.app.net/ryon - Ryon Coleman
https://alpha.app.net/ecocleancarpet - Eco Clean Carpet Solutions
https://alpha.app.net/msnop2910 - msnop2910
https://alpha.app.net/deanray -
https://alpha.app.net/queuebit - queuebit
https://alpha.app.net/angry_drunk - Darby Lines
https://alpha.app.net/floschliep - Florian
https://alpha.app.net/elland - Igor Ranieri Elland
https://alpha.app.net/janm - Jan Martin Mikkelsen
https://alpha.app.net/larsreineke - Lars Reineke
https://alpha.app.net/kleanproservices - Carl Creasy
https://alpha.app.net/supernovac891 - Pacifico
https://alpha.app.net/douglasjjdooley - douglas jj dooley, astro solutions LLC
https://alpha.app.net/creativeperson7 -
https://alpha.app.net/dl5kua - Lutz
https://alpha.app.net/sinnosol - Glen Sharp
https://alpha.app.net/emilcar - Emilio Cano
https://alpha.app.net/isometricshow - Isometric Podcast
https://alpha.app.net/adispeaks - Aditya Saxena
https://alpha.app.net/danielgomes - Daniel Gomes
https://alpha.app.net/tiefpunkt - Severin // tiefpunkt
https://alpha.app.net/apsodric - Ben Boe
https://alpha.app.net/vorgedacht - Horay
https://alpha.app.net/pacificcarpetclean - Pacific Carpet & Tile Cleaning
https://alpha.app.net/re_laznyan - lazward
https://alpha.app.net/kroegodil - kroegodil
https://alpha.app.net/koushikchandru - Koushik Gopal C
https://alpha.app.net/elburro - El Burro
https://alpha.app.net/kalperin - Keith Alperin
https://alpha.app.net/wyldkard - WyldKard
https://alpha.app.net/mgpalaquibay - Minna Palaquibay
https://alpha.app.net/khr - Karl Hruby
https://alpha.app.net/ceoseker - ceoseker
https://alpha.app.net/nitschebua - Alexander Nitsche
https://alpha.app.net/tamewhale - Gavin Logan
https://alpha.app.net/ashadul9000 - Md. Ashadul Alam
https://alpha.app.net/nerdesinseker - nerdesinseker
https://alpha.app.net/arnaudfeld - Arnaud Feld
https://alpha.app.net/brianmcdaniel - Brian McDaniel
https://alpha.app.net/tenjinuk - Darren Wheatley
https://alpha.app.net/appstore - App Store
https://alpha.app.net/toxision - Chris
https://alpha.app.net/athomeellie - Ellie Robinson
https://alpha.app.net/ynz - jens w.
https://alpha.app.net/fashionpakistan - Fashion Pakistan
https://alpha.app.net/_a_ - ばんちゃん
https://alpha.app.net/rudelbildung - steffi
https://alpha.app.net/hamster - InvisiblePixels
https://alpha.app.net/coolpapi13 - Miguel Suarez
https://alpha.app.net/uloveletter - DZoc
https://alpha.app.net/utoolity - Utoolity
https://alpha.app.net/akhenaten - Ben Gohlke
https://alpha.app.net/cstromme - Christian A. Strømmen
https://alpha.app.net/hclaq - hclaq
https://alpha.app.net/pfitz - Friedrich Pfitzmann
https://alpha.app.net/aduarte61 - Artur Duarte
https://alpha.app.net/chemdryallen - Chem-Dry of Allen County
https://alpha.app.net/anja - anja
https://alpha.app.net/shanezilla - Shane Crawford
https://alpha.app.net/elkardia - Elkardia | Lubelskie Centrum Kardiologii
https://alpha.app.net/n_6g - n_6g
https://alpha.app.net/nwlocal - Mario
https://alpha.app.net/jrinn - Jason Rinn
https://alpha.app.net/ldl - Lakota Lustig
https://alpha.app.net/bassguitarman - bass
https://alpha.app.net/rosijanni - Jan Galler
https://alpha.app.net/azi_9pbkkp - 宮藤ハル
https://alpha.app.net/yenius - Yenius Interactive Marketing
https://alpha.app.net/st_elsewhere - Kelly Buck
https://alpha.app.net/leanderwattig - Leander Wattig
https://alpha.app.net/d_run - Darren Newton
https://alpha.app.net/arogooo - Areej Saad
https://alpha.app.net/riodice - RioDice
https://alpha.app.net/findyourperfecthome - Don Engel
https://alpha.app.net/angentube -
https://alpha.app.net/gnon - GNON
https://alpha.app.net/q8_majed -
https://alpha.app.net/deancommasteven - Steven Dean
https://alpha.app.net/biff - Biff McIfttt
https://alpha.app.net/joeltimmins - Joel Timmins
https://alpha.app.net/brunoborges - Bruno Borges
https://alpha.app.net/janineanne - Janine Ohmer
https://alpha.app.net/paulv - Paul Vittorino
https://alpha.app.net/cosplayhouse825 - Sean Young
https://alpha.app.net/michaelvondake - Michael von Dake
https://alpha.app.net/thantheman - Than
https://alpha.app.net/0w - Tyrol chan
https://alpha.app.net/yassinead - Yassine Aadouli
https://alpha.app.net/djpaine - DJ Paine
https://alpha.app.net/gomimap - 地図
https://alpha.app.net/yuyasvx - YUYASVX
https://alpha.app.net/debrarburns -
https://alpha.app.net/eyreconnect -
https://alpha.app.net/fastlinktravel -
https://alpha.app.net/klout - In Your Face
https://alpha.app.net/hanbiabba - JongPil Yun
https://alpha.app.net/leitmedium - Caspar Clemens Mierau
https://alpha.app.net/solomonr - Solomon Reliford
https://alpha.app.net/matzekult - Matthias Keller
https://alpha.app.net/bridesmaiddesigner - Sophia Kaylee
https://alpha.app.net/master_burn - Dominik Bergthaler
https://alpha.app.net/cpeducation - Camelot Progressive Education Ltd
https://alpha.app.net/menma - メンマ氏
https://alpha.app.net/pandithsanjeev - Pandith Sanjeev Shastri
https://alpha.app.net/robotiklabor - Markus
https://alpha.app.net/abrain - Andreas Brain
https://alpha.app.net/masa_art - マサ氏
https://alpha.app.net/ruchikaraval - Ruchika
https://alpha.app.net/kiralikforklift - Kiralık Forklift 7/24 Tel: 0532 715 59 92
https://alpha.app.net/dahan - Daniel
https://alpha.app.net/thosch66 - Thomas Schewe
https://alpha.app.net/debbieleven - Debbie Leven
https://alpha.app.net/codenutz - Codenutz
https://alpha.app.net/julia_ray -
https://alpha.app.net/hdvalentin - Valentin Bachem
https://alpha.app.net/mekan341 - izle arsiv
https://alpha.app.net/koolinus - Nicola Losito
https://alpha.app.net/siliconbwp - silicon.pk
https://alpha.app.net/5vers - 5vers
https://alpha.app.net/foobarev - foobar e.V.
https://alpha.app.net/richardmnielsen -
https://alpha.app.net/dubaicosmsurg1 -
https://alpha.app.net/norotaken -
https://alpha.app.net/hoersuppe - die Hörsuppe
https://alpha.app.net/martinsl - Martin Schmidt-Lanz
https://alpha.app.net/pcrentalsperth -
https://alpha.app.net/theappguys - TheAppGuys GmbH
https://alpha.app.net/mrrooni - Michael Fey
https://alpha.app.net/andi242 - Andreas
https://alpha.app.net/kaligule - Johannes Lippmann
https://alpha.app.net/i7amood - AMD
https://alpha.app.net/fcnewham -
https://alpha.app.net/matis - Matthias Harder
https://alpha.app.net/okur_tv - Okur Tv
https://alpha.app.net/hanhpham - Hạnh Phạm
https://alpha.app.net/reraiseace - GFX-Stylez.blog
https://alpha.app.net/interactolabs - Interacto Labs, Inc.
https://alpha.app.net/joec - Joe Cieplinski
https://alpha.app.net/pinords - Daniel Fort
https://alpha.app.net/vishiphotography - Vishiphotography
https://alpha.app.net/linkedseo - Link Wheel Rockstars
https://alpha.app.net/wfmu - WFMU
https://alpha.app.net/nehaali -
https://alpha.app.net/armselig - Hendrik Neumann
https://alpha.app.net/joha_na - Jana Maire
https://alpha.app.net/emigdioluque - Emigdio
https://alpha.app.net/elicee - Martin Schmidt
https://alpha.app.net/beentold - Der Klugscheisser
https://alpha.app.net/suresh_jadiyar - Suresh Jadiyar
https://alpha.app.net/escooptics - Esco Optics
https://alpha.app.net/hibbamalik -
https://alpha.app.net/bobvlanduyt - Bob Van Landuyt
https://alpha.app.net/zamanteknoloji -
https://alpha.app.net/bapf - Bapf
https://alpha.app.net/suigin - suigin
https://alpha.app.net/hakan_lakin - Hakan Lakin
https://alpha.app.net/biotraditii - BioTraditii - Continuam Traditiile Sanatoase
https://alpha.app.net/david_rysk - David Ryskalczyk
https://alpha.app.net/urbanbeat - Urban Beat
https://alpha.app.net/andyw - Andy Welfle
https://alpha.app.net/amerusu - うすれま
https://alpha.app.net/suburbanglassin - Lynne Halloran
https://alpha.app.net/moodyeyes -
https://alpha.app.net/accutemp - Duane Simpson
https://alpha.app.net/qtfan - Ranjit
https://alpha.app.net/peakfamdentist - Billie Adams
https://alpha.app.net/mikrocun - ミクロくん
https://alpha.app.net/yasna231 - やすなんとか
https://alpha.app.net/ssaluga - Scott J Saluga
https://alpha.app.net/fastcleanerscamden - Rosalie Wallace
https://alpha.app.net/nielshvid12 - Niels Hvid
https://alpha.app.net/rivaslawgroup - Tania Rivas
https://alpha.app.net/fastemergencydentist - Oscar Smiles
https://alpha.app.net/oaad - One App a Day
https://alpha.app.net/whitehatseo - Clwyd Probert
https://alpha.app.net/chasemccoy - Chase McCoy
https://alpha.app.net/2dtraveler - 2dtraveler
https://alpha.app.net/7azim - حازم !
https://alpha.app.net/d2xter - Rock
https://alpha.app.net/othertimes - Der Robert
https://alpha.app.net/duhan05 - ali dereli
https://alpha.app.net/sultangirov - Denis Sultangirov
https://alpha.app.net/michellemoloney111 - Michelle Moloney King
https://alpha.app.net/darrylyoung - Darryl Young
https://alpha.app.net/theberryfarmau - Emma Holben
https://alpha.app.net/rooomi - rooomi
https://alpha.app.net/nuttari - Nuttari
https://alpha.app.net/masamo - masamo
https://alpha.app.net/robert_brown - Robert Brown
https://alpha.app.net/managemyprpty - Andrew Bald
https://alpha.app.net/nadezhda_vdovkina - Nadezhda Russia Vdovkina
https://alpha.app.net/am2605 - Andrew Myers
https://alpha.app.net/bestlawassociates - Joseph Best
https://alpha.app.net/theleftwing - Sam Blumire (拂相俊)
https://alpha.app.net/radishtm - RadishTM
https://alpha.app.net/textilvergehen - textilvergehen
https://alpha.app.net/kadrei - kadrei
https://alpha.app.net/quincebishop - Quince Bishop
https://alpha.app.net/systematic - Systematic
https://alpha.app.net/raoul - raoul
https://alpha.app.net/protocool - Trevor Squires
https://alpha.app.net/maxxxor - Chris Gatner
https://alpha.app.net/kusuriya - Jason B.
https://alpha.app.net/stevvest - SteVVest
https://alpha.app.net/wastemobile - wastemobile
https://alpha.app.net/erinb - Erin Brooks
https://alpha.app.net/ryanadil - Ryan Adil
https://alpha.app.net/treespecialists - Richard Smith
https://alpha.app.net/jjlsetter - Joe Lebo
https://alpha.app.net/lovemyclean - Juan Maza
https://alpha.app.net/bluedogblues - Jonathan Fisher
https://alpha.app.net/sreimers - Sebastian Reimers
https://alpha.app.net/prometheus - george adams
https://alpha.app.net/mtze - Matthias linhuber
https://alpha.app.net/magi - Christian Rapmund
https://alpha.app.net/dust - Dust
https://alpha.app.net/louder - Daniel Louder
https://alpha.app.net/tdnvl - Thomas Deneuville
https://alpha.app.net/eclass - eClass4learning - Moodle Hosting
https://alpha.app.net/healthyclean - Joseph Kardos
https://alpha.app.net/jrbaz - JR Baz
https://alpha.app.net/david_1701 - David1701
https://alpha.app.net/chrisltd - Chris Johnson
https://alpha.app.net/enigma - Anagram
https://alpha.app.net/ttscoff - Brett Terpstra
https://alpha.app.net/jwalgren - Jeremiah Walgren
https://alpha.app.net/singaporeloans - singaporeloans
https://alpha.app.net/stevland - Stevland Judkins
https://alpha.app.net/adrianus - Adrianus Wagemakers
https://alpha.app.net/phileitch - Phil Eitch
https://alpha.app.net/mlaccetti - Michael Laccetti
https://alpha.app.net/peterzuelveshorn - Peter zu Elveshorn
https://alpha.app.net/gotimesocial - gotimesocial
https://alpha.app.net/goldensoulmate - Golden Soulmate
https://alpha.app.net/octoate - Tim Riemann
https://alpha.app.net/scottg - Scott Gustafson
https://alpha.app.net/elyse - elyse
https://alpha.app.net/nichdu - T S
https://alpha.app.net/cparnot - Charles Parnot
https://alpha.app.net/spaindroid - spaindroid
https://alpha.app.net/kidmar - Marcus Kida
https://alpha.app.net/gypsyrosebaby - Gypsy Rose
https://alpha.app.net/vacacionesinter - vacaciones de intercambio
https://alpha.app.net/alimaysports - Alimay Sports
https://alpha.app.net/stwrz - Rick Stawarz
https://alpha.app.net/jonasschoen - Jonas Schönfelder
https://alpha.app.net/skurfer - Rob McBroom
https://alpha.app.net/taguchi - taguchi
https://alpha.app.net/breit - Bernd Reit
https://alpha.app.net/antonkurniawan - Anton Kurniawan
https://alpha.app.net/paulwallbank - Paul Wallbank
https://alpha.app.net/jj_wedemyer - Jakob Wedemeyer
https://alpha.app.net/urlaubspodcast - urlaubs-podcast.de
https://alpha.app.net/pascalj - Pascal Jungblut
https://alpha.app.net/galustyan - Andranik Galustyan
https://alpha.app.net/miar - Mia
https://alpha.app.net/gikiski - Gikiski
https://alpha.app.net/shauber - Shawn Craver
https://alpha.app.net/7nk - Joshua Anderson
https://alpha.app.net/yapster99 - Norman Yap
https://alpha.app.net/caycepollard - Douglas
https://alpha.app.net/bouvet - Bas the Penguin
https://alpha.app.net/braindrifter - Brainiac
https://alpha.app.net/bjforu - Junish
https://alpha.app.net/allthingsapple - All Things Apple
https://alpha.app.net/salonmarketing - Salon Marketing
https://alpha.app.net/nimbleton - Jonathan Head
https://alpha.app.net/iquitoz - Iquitoz
https://alpha.app.net/southoftonight - South
https://alpha.app.net/henningkrause - Henning Krause
https://alpha.app.net/totaltaxserviceinc - Richard M. Farley
https://alpha.app.net/corristo - Nikolay
https://alpha.app.net/smartledtv - Smart LED TV
https://alpha.app.net/imagefitnesstraining - Image Fit. Training
https://alpha.app.net/cathytrevett - Cathy Trevett
https://alpha.app.net/mrgan - Neven Mrgan
https://alpha.app.net/lord_12587 - Sven Böttcher
https://alpha.app.net/_nachtflug_ - Ori
https://alpha.app.net/feelbetter2 - Andrew Richardson
https://alpha.app.net/addontechnologies - addontechologies
https://alpha.app.net/fabiorosado - FabioRosado
https://alpha.app.net/freelikr -
https://alpha.app.net/zoran - Zoran
https://alpha.app.net/ladyidiy - Ladyi Diy
https://alpha.app.net/csh - Chris Schildhorn
https://alpha.app.net/zntu - ZnTU
https://alpha.app.net/stephensmorris -
https://alpha.app.net/meye - René Meye
https://alpha.app.net/tech7nica -
https://alpha.app.net/haenselcancel - Hannes
https://alpha.app.net/palimondo - Pavol Vaskovic
https://alpha.app.net/aksuacar - Kuru Temizleme
https://alpha.app.net/anderst - Anders Thorssell
https://alpha.app.net/webcrayons - Web Crayons
https://alpha.app.net/xvbrx - xvbrx
https://alpha.app.net/smoothsynergy01 -
https://alpha.app.net/mnm - むのむ
https://alpha.app.net/earnshaws - Earnshaws
https://alpha.app.net/prodvizhenievideo - prodvizhenievideo
https://alpha.app.net/cecil - Newt
https://alpha.app.net/kju8 - Takuya Namba
https://alpha.app.net/fairchaincoffee - FairChain Coffee Revolutionary
https://alpha.app.net/dubaicosmetic12 -
https://alpha.app.net/hilmi - Hilmi Al-Kindy
https://alpha.app.net/gakgos - Elazığ Gakkoş
https://alpha.app.net/robbettis - Rob Bettis
https://alpha.app.net/fcharingey - Yolanda Hart
https://alpha.app.net/gaelian - Gaelian Ditchburn
https://alpha.app.net/4ier - u. zielke-steffen
https://alpha.app.net/drchaunceycrandall - Dr Chauncey Crandall
https://alpha.app.net/diedreivogonen - Die drei Vogonen
https://alpha.app.net/ccxy - Nikolai Rüger
https://alpha.app.net/aneesh786 - aneesh ahmad
https://alpha.app.net/paul_steele - Paul Steele
https://alpha.app.net/w_rong - w_rong
https://alpha.app.net/tierwelt_pluto - Tierwelt Pluto
https://alpha.app.net/ha_jo - HaJo von der Lieth
https://alpha.app.net/mel_f - Na0k1 FUJ1WARA
https://alpha.app.net/ianmcclure - Ian McClure
https://alpha.app.net/newsgr - NEWS GR
https://alpha.app.net/miliali -
https://alpha.app.net/patricknix - Patrick Nix
https://alpha.app.net/ranunculus - Delphinium
https://alpha.app.net/cheerio - ch.eer.io
https://alpha.app.net/paulosemaan - Paulo Semaan
https://alpha.app.net/alisonsmith - Alison Smith
https://alpha.app.net/pabenolken - Pete Benolken
https://alpha.app.net/zxcv - ZXCV Websites
https://alpha.app.net/germanshepherd - Tyler Smith
https://alpha.app.net/denisdee - DenisDee
https://alpha.app.net/sansiba - Sandra
https://alpha.app.net/m4rcs - Marc Schiller
https://alpha.app.net/anathema - Anathema
https://alpha.app.net/sortedpa - Ben Arnold
https://alpha.app.net/jimmythrasher - Jimmy Thrasher
https://alpha.app.net/fchavering - Alysia Brooks
https://alpha.app.net/demonic_blitz - Bilal S. Sayed Ahmad
https://alpha.app.net/baseballbattingcages - Lori Pivonski
https://alpha.app.net/contentequalsmoney - Content Equals Money
https://alpha.app.net/falkouf - Falko Fiechtl
https://alpha.app.net/mastercopyprint - Hoa Bracken
https://alpha.app.net/kenapperson - Real Success
https://alpha.app.net/das_chick - das chick
https://alpha.app.net/duggi -
https://alpha.app.net/carlstaff - Carl Staffel
https://alpha.app.net/capitalplumbing - Gregg Weir
https://alpha.app.net/dobschat - Carsten Dobschat
https://alpha.app.net/qqq - Q
https://alpha.app.net/remix - Re:mix
https://alpha.app.net/sebrus - Sebastian Rusche
https://alpha.app.net/andreas_freund - Andreas Freund
https://alpha.app.net/starryforest - Fin Starryforest
https://alpha.app.net/holsteinaviation - Shawn Holstein
https://alpha.app.net/hawkeye - Benjamin Falk
https://alpha.app.net/crownstrata - Nidal Aktila
https://alpha.app.net/adrian_thompson - Adrian Thompson
https://alpha.app.net/ringhandt - Helmuth Ringhandt
https://alpha.app.net/schoeneecken - Schöne Ecken
https://alpha.app.net/rdfattorney -
https://alpha.app.net/johncatley - John Catley
https://alpha.app.net/goshakkk - Gosha Arinich
https://alpha.app.net/quintessence - Nancy Rose
https://alpha.app.net/activebuildersil - Derek Nyenhuis
https://alpha.app.net/uttermostau - Maria Messiter
https://alpha.app.net/immigrationlawyer - immigrationlawyer
https://alpha.app.net/philipjohn - Philip John
https://alpha.app.net/grmetrodental -
https://alpha.app.net/melibra23 - donna
https://alpha.app.net/news47ell - News47ell
https://alpha.app.net/sharongraham - sharon graham
https://alpha.app.net/music47ell - Ahmad Al Maaz
https://alpha.app.net/cannamedbox - Vincent Mehdizadeh
https://alpha.app.net/alexcrocker - Alex Crocker
https://alpha.app.net/benplantinga - Ben Plantinga
https://alpha.app.net/mistresscnla - Mistress C.
https://alpha.app.net/brianbroom - Brian Broom
https://alpha.app.net/humpaaa - Aljoscha Marcel Everding
https://alpha.app.net/fernsehmuell - Udo Sauer
https://alpha.app.net/iulius - Iulius
https://alpha.app.net/bobman - Robert Giebel
https://alpha.app.net/bkulbe - Brenda Kulbe
https://alpha.app.net/corbatarifleri - Corba Tarifleri
https://alpha.app.net/livid - Livid
https://alpha.app.net/bagelturf - Steve Weller
https://alpha.app.net/daru - Daniel Rutsatz
https://alpha.app.net/sandrineandro - Sandrine Andro
https://alpha.app.net/jeremyheiler - Jeremy Heiler
https://alpha.app.net/carlito - @carlito
https://alpha.app.net/simps - Jean-Claude Simpson
https://alpha.app.net/kai4562 - kai
https://alpha.app.net/privatsprache - Privatsprache
https://alpha.app.net/roryprior - Rory Prior
https://alpha.app.net/talaynas - Talayna's
https://alpha.app.net/kickassdomains - Kick-Ass-Domains
https://alpha.app.net/jimhull - Jim Hull
https://alpha.app.net/avatarx - Avatar X
https://alpha.app.net/theque - The Que
https://alpha.app.net/azloans - Cash Loans
https://alpha.app.net/ketchup71 - Till Salzer
https://alpha.app.net/storefixturessupply - Store Fixtures And Supplies
https://alpha.app.net/gradius - Billy Tracy
https://alpha.app.net/jshmllr - Joshua Miller
https://alpha.app.net/tanuva - Tanuva
https://alpha.app.net/blicklawgroup - Michael Blickensderfer
https://alpha.app.net/ctrettin - Christoph Trettin
https://alpha.app.net/shadowbottle - RC aka FoO
https://alpha.app.net/andybroomfield - andy broomfield
https://alpha.app.net/zidan751 - zidan751
https://alpha.app.net/nilorior - dreizehn xer
https://alpha.app.net/autismpartner - Galvin Geer
https://alpha.app.net/rkoopmann - Richard Koopmann
https://alpha.app.net/_st - ステラ
https://alpha.app.net/kellyday411 - Ray Briant
https://alpha.app.net/budda - Mike C
https://alpha.app.net/obiminron -
https://alpha.app.net/mattprowse - Matt P.
https://alpha.app.net/moneymyke - Michael Ramos
https://alpha.app.net/thechoirboy - Top Flight MMA Academy
https://alpha.app.net/roberthaworth - Robert Haworth
https://alpha.app.net/virutalrobotman - Cal James
https://alpha.app.net/adamjgmiller - Adam Miller
https://alpha.app.net/joyma - Marek Wolter
https://alpha.app.net/combustible - Julien Raby
https://alpha.app.net/pjotrpetka - Jan Glogau
https://alpha.app.net/longrun63 - おれ
https://alpha.app.net/scotto - Scott O'Reilly
https://alpha.app.net/renny - Maria Renny
https://alpha.app.net/nicky_mac - Nicky McCleery
https://alpha.app.net/govability -
https://alpha.app.net/thebreadman - Adam Schwebel
https://alpha.app.net/mapi - mapi
https://alpha.app.net/adnfuture - ADNFuture
https://alpha.app.net/iheartguacamole - Christina Junkins
https://alpha.app.net/molech1 - 青木Molech大介
https://alpha.app.net/sandyron - Ron and Sandy S.
https://alpha.app.net/pakuyuya - paku
https://alpha.app.net/manutd9981 - Nam Nguyen
https://alpha.app.net/stevegrancell - Steve Grancell
https://alpha.app.net/atlantacommunities - Atlanta Communities
https://alpha.app.net/law_of_attraction - Max
https://alpha.app.net/swegi - Simon Wegener
https://alpha.app.net/aichang - あいちゃん
https://alpha.app.net/panditsanjeev - Pandith Sanjeev
https://alpha.app.net/heatsystem - Heat System
https://alpha.app.net/co_dan - Dan
https://alpha.app.net/jignesh_678 - Wastetyrerecycle
https://alpha.app.net/netgurusolutionindia - Net Guru
https://alpha.app.net/catpie - Cat Pie
https://alpha.app.net/heshsum - heshsum
https://alpha.app.net/rajumakvana -
https://alpha.app.net/mkernel - Enno Welbers
https://alpha.app.net/kopfaufholz - Martin Ficzel
https://alpha.app.net/vfrong -
https://alpha.app.net/economybookings -
https://alpha.app.net/webmastermcs - webmaster mcs
https://alpha.app.net/silviya -
https://alpha.app.net/daylon - Julien Bouvet
https://alpha.app.net/pinkblueindia - Aastha Agarwal
https://alpha.app.net/robertgdaly - Robert Daly
https://alpha.app.net/deltasig - deltasig
https://alpha.app.net/arris - gunnar
https://alpha.app.net/anmmedika - ANM Medika
https://alpha.app.net/comashop - Peter Schildwächter
https://alpha.app.net/discountsuk - Deals and Bargains UK
https://alpha.app.net/tiagofernandez - Tiago Fernandez
https://alpha.app.net/bigbirdplayhouse - Big Bird Playhouse
https://alpha.app.net/kross - ɐɐɹou
https://alpha.app.net/emilyparker2 - emilyparker
https://alpha.app.net/reisegezwitscher - Reisegezwitscher
https://alpha.app.net/thegreatonline - Inbound Marketing
https://alpha.app.net/chandrahalim - Chandra Halim Herucakra
https://alpha.app.net/daskaja - Jens K
https://alpha.app.net/umzugsfirmen -
https://alpha.app.net/sicah -
https://alpha.app.net/icangomobile - craigh
https://alpha.app.net/kleiner_3 - kleiner drei
https://alpha.app.net/beck007 - Free Download 2 You
https://alpha.app.net/lucaswilric - Lucas Wilson-Richter
https://alpha.app.net/ponka - Nikita
https://alpha.app.net/lunatic - Lunatic
https://alpha.app.net/colonialfloorcare - Terrazzo Floor Care Service
https://alpha.app.net/itsvineetkumar - Vineet Kumar
https://alpha.app.net/ortwin - Ortwin Gentz
https://alpha.app.net/moerstv - Moers.TV
https://alpha.app.net/m_eiman - Mikael Eiman
https://alpha.app.net/ndakota - Veronika
https://alpha.app.net/juston - Juston Western
https://alpha.app.net/marccorbin - Marc Corbin
https://alpha.app.net/joberbrown98 - Jober Brown
https://alpha.app.net/fitnesstours - Fitness Tours
https://alpha.app.net/sneakpod - Sneakpod
https://alpha.app.net/syarlathotep - みーしゃ
https://alpha.app.net/paceros - paceros
https://alpha.app.net/coreydrose - Corey Rose
https://alpha.app.net/executiverugcleaning - Executive Rug Cleaning
https://alpha.app.net/virtuos86 - Сферический адээнщик в вакууме
https://alpha.app.net/jesselperry - Jesse Perry
https://alpha.app.net/gurkenmafia - John Doe
https://alpha.app.net/joeld - Joel Dueck
https://alpha.app.net/onedaycarinsurance - Martin
https://alpha.app.net/humanoid - Martin Giger
https://alpha.app.net/riel - り!
https://alpha.app.net/liquiddiamondz -
https://alpha.app.net/mayarose - mayarose
https://alpha.app.net/binsbyjo - Jordan Smith
https://alpha.app.net/sheltonroof -
https://alpha.app.net/dentcompanyin - Joel Matheny
https://alpha.app.net/nhuanvd - Vũ Nhuận
https://alpha.app.net/0_0v - 黒川
https://alpha.app.net/generationsprobate - Trudy Nearn
https://alpha.app.net/pearcom - Rob Gandley
https://alpha.app.net/rtv - Ralf ter Veer
https://alpha.app.net/satyayoshua - Satya Yoshua
https://alpha.app.net/metalfrankonia - Stevie
https://alpha.app.net/chiroarlington - Joe Viernow
https://alpha.app.net/fclewisham - Charlie Hughes
https://alpha.app.net/cmlcleaningsyd - Nasser Daher
https://alpha.app.net/dreamseer - Marc Görtz
https://alpha.app.net/harrisplumbing -
https://alpha.app.net/springbranchdental -
https://alpha.app.net/freotech -
https://alpha.app.net/orthosynetics - Angela Weber
https://alpha.app.net/okey - Okey Oyna
https://alpha.app.net/joemohollandmoving -
https://alpha.app.net/goodhealthprac - Cathy Stewart
https://alpha.app.net/einfach_thomas - Thomas
https://alpha.app.net/cliophate - Kevin Wammer
https://alpha.app.net/whltexbread - Andrew Catellier
https://alpha.app.net/kingmahl - Jon Olin
https://alpha.app.net/kyokuzuki - kyokuzuki
https://alpha.app.net/kami_kei - 上京
https://alpha.app.net/hoshallsfolsom - Bill Hoshall
https://alpha.app.net/sefardi - wonderland77
https://alpha.app.net/nwacpr - Jason Coleman
https://alpha.app.net/zackchildress - Zack Childress
https://alpha.app.net/_enshi_ - エン氏
https://alpha.app.net/mcdado - David Gasperoni
https://alpha.app.net/pauneu - pauneu
https://alpha.app.net/bluth - Buster Bluth
https://alpha.app.net/sprckt - Sprckt
https://alpha.app.net/thechicstyle - Olivia Sánchez Cortés
https://alpha.app.net/kivus - John Kivus
https://alpha.app.net/dean011 - Richard Murphy
https://alpha.app.net/jwarzech - Jordan Warzecha
https://alpha.app.net/stewarttech - Carlene Schnitzer
https://alpha.app.net/adncomicsclub - ADN Reads Comics
https://alpha.app.net/darrenrhill - Darren Hill
https://alpha.app.net/amcmanus - Adam McManus
https://alpha.app.net/vasectomysydney - Dr Harold Judelman
https://alpha.app.net/diodenschein - Robert Nixdorf
https://alpha.app.net/c3s - C3S
https://alpha.app.net/schusterd - Daniel Schuster
https://alpha.app.net/lecoconcretega - Mike Lynam
https://alpha.app.net/ishotihadus - Ishotihadus
https://alpha.app.net/zideshowbob - Christof
https://alpha.app.net/funkenstrahlen - Funkenstrahlen
https://alpha.app.net/dstarke - David Starke
https://alpha.app.net/tobsen - Tobias Klose
https://alpha.app.net/codmo2ooo - Codmo Needcen
https://alpha.app.net/markustiersch - Markus Tiersch
https://alpha.app.net/ptn - phentn
https://alpha.app.net/apontious - Andrew Pontious
https://alpha.app.net/popthestack - Ryan Martinsen
https://alpha.app.net/mcaulay - mcaulay
https://alpha.app.net/fchillingdon - Director Garry Blake
https://alpha.app.net/chrisplough - Chris Plough
https://alpha.app.net/casualkitchen - Patrice
https://alpha.app.net/rongaines -
https://alpha.app.net/raumpatrouille - Raumpatrouille
https://alpha.app.net/hansseebeck - ⓢⓔⓔⓑⓔⓒⓚ
https://alpha.app.net/postapp - Post App
https://alpha.app.net/djehuti - Ben Cox
https://alpha.app.net/lauren - Lauren Proctor
https://alpha.app.net/fcleanerssutton - Sarah Bell
https://alpha.app.net/stijbob - JM Bob
https://alpha.app.net/sabbatical - Adam King
https://alpha.app.net/jbouie - Jamelle Bouie
https://alpha.app.net/marketonline100 - marketonline100
https://alpha.app.net/kosso - Kosso
https://alpha.app.net/darcy1968 - Darcy Moore
https://alpha.app.net/spycom - spycom
https://alpha.app.net/bmoist - Bill Moist
https://alpha.app.net/re_pat -
https://alpha.app.net/pritcharddesign - Laura Pritchard
https://alpha.app.net/walterpt - Walter Tyree
https://alpha.app.net/eddi - Carl Lofthaus aka @mTropolis
https://alpha.app.net/nenah - Dirk Pfeiffer
https://alpha.app.net/refine - Anne
https://alpha.app.net/bravo_alpha - Bravo Alpha
https://alpha.app.net/paulpurcell - Paul Purcell
https://alpha.app.net/tmart - Tomás Martins
https://alpha.app.net/flirtunafragen -
https://alpha.app.net/ki6bjv - Charles Embry Jr
https://alpha.app.net/minaseizki - minaseizki
https://alpha.app.net/bdougherty - Brad Dougherty
https://alpha.app.net/doudarouka - どうだろうか
https://alpha.app.net/john464 - raja babu
https://alpha.app.net/edifywithapps - Shanna Grimes
https://alpha.app.net/vlachbild - Andreas Vlach
https://alpha.app.net/fcbarking - Evelyn Parsons
https://alpha.app.net/hillecrane - Michael Hilberer
https://alpha.app.net/jyap - Julian Yap
https://alpha.app.net/agileinfoways - Agile Infoways
https://alpha.app.net/shinekhusboo -
https://alpha.app.net/sho_diva - Minatsu Shiina
https://alpha.app.net/cryptostrophe - johnny danger
https://alpha.app.net/fflavio - Flavio Matani
https://alpha.app.net/pr0j3ctx - pr0j3ctx
https://alpha.app.net/exatch - exatch
https://alpha.app.net/kbmac - Kevin Baggott
https://alpha.app.net/gabor - Gabor Lenard
https://alpha.app.net/quatschkopp - Stephan
https://alpha.app.net/tistour - Туроператор ТИС-тур
https://alpha.app.net/riyad - Riyad Preukschas
https://alpha.app.net/zasscan - Sergio Rivas
https://alpha.app.net/ostone - Oliver
https://alpha.app.net/chknde - chknde
https://alpha.app.net/shaboojewelers - Shabnam Bhayani
https://alpha.app.net/hetarejuri - ささみの
https://alpha.app.net/pilot2b - Marty
https://alpha.app.net/trainman - David Johnson
https://alpha.app.net/anbru - Andreas B.
https://alpha.app.net/r3zolution -
https://alpha.app.net/sozeugs - Meike
https://alpha.app.net/gizo - gizo
https://alpha.app.net/iggs - Dirk
https://alpha.app.net/shailesh87 -
https://alpha.app.net/andymolloy - Andy Molloy
https://alpha.app.net/rix - Rob Rix
https://alpha.app.net/vvvv - vvvv - a multipurpose toolkit
https://alpha.app.net/oliivianet - oliivianet
https://alpha.app.net/freewave - Freewave
https://alpha.app.net/carstenpoetter - Carsten Pötter
https://alpha.app.net/katarok - katarok.com
https://alpha.app.net/johncfalkenberg - Daniel Siemer
https://alpha.app.net/kerker00 - markus müller
https://alpha.app.net/jussen - Christoph Justinek
https://alpha.app.net/dillon_steele_73 - Dillon Steele
https://alpha.app.net/dem_fred - demUnterstrichFred
https://alpha.app.net/sebastiand - Sebastian Szyszka
https://alpha.app.net/grangarden - Rickard Grangården
https://alpha.app.net/alblue - Alex Blewitt
https://alpha.app.net/nahlinse - Monika Andrae
https://alpha.app.net/thomersch - Thomas Skowron
https://alpha.app.net/azer - AZERNEXT
https://alpha.app.net/myoni - Martin Myoni
https://alpha.app.net/philm - Phil Marlowe
https://alpha.app.net/meamusic - MEA Music
https://alpha.app.net/bimalki - bimalki
https://alpha.app.net/caarly - Caarly
https://alpha.app.net/drboss - Душан Босотов
https://alpha.app.net/kleinweby - Christian Speich
https://alpha.app.net/schweinepriester - Kai Hollberg
https://alpha.app.net/odie - Patrick N.
https://alpha.app.net/dwh1611 - Daniel Heinrich
https://alpha.app.net/marinco - Javier Marín Conde
https://alpha.app.net/relivedesign - Relive Design
https://alpha.app.net/zeitzeuge - Zeitzeuge
https://alpha.app.net/jay007 - Jay
https://alpha.app.net/riposte - Riposte
https://alpha.app.net/jan_cgn - jan lempfrid
https://alpha.app.net/meyerjohannes - Johannes Meyer
https://alpha.app.net/sgoettschkes - Sebastian
https://alpha.app.net/swarfield - swarfield
https://alpha.app.net/xoiben - Benjamin Fleischmann
https://alpha.app.net/iphoneblog - Alexander Olma
https://alpha.app.net/m1ke - Mike Eisenbach
https://alpha.app.net/xirvi - Xirvi
https://alpha.app.net/11squirrel - Jack the R.
https://alpha.app.net/monoccur - MONO OCCUR
https://alpha.app.net/notable - Daniel
https://alpha.app.net/ismh - Stephen Hackett
https://alpha.app.net/khaled - Khaled A
https://alpha.app.net/tv_junkie - Stefan Müller
https://alpha.app.net/ftf - Fabian Franke
https://alpha.app.net/carlyapril -
https://alpha.app.net/polarbear - Polarbear
https://alpha.app.net/razvan - Razvan
https://alpha.app.net/robkrueger - Robert Krüger
https://alpha.app.net/strangedays - Strange Days
https://alpha.app.net/damienmckenna - Damien McKenna
https://alpha.app.net/tobiasmboelz - Tobias M. Bölz
https://alpha.app.net/jamie_f - Jamie Fraser
https://alpha.app.net/kelbellavida - Kelly Cremeans
https://alpha.app.net/darius - Darius Dunlap
https://alpha.app.net/barmstrong - barmstrong
https://alpha.app.net/imawebgenius - imaWebGenius
https://alpha.app.net/kotedrum - こて
https://alpha.app.net/0x434d53 - Christoph Seufert
https://alpha.app.net/jim_furukawa - 腹痛
https://alpha.app.net/mactownmarketing - Chad Harbin
https://alpha.app.net/vanjogrinberg -
https://alpha.app.net/meaden - Jason Meaden
https://alpha.app.net/95 - milkey
https://alpha.app.net/sleepnclass - Andy
https://alpha.app.net/theory - David E. Wheeler
https://alpha.app.net/kamallouhibi -
https://alpha.app.net/tdeepy -
https://alpha.app.net/ethandean - Ethan Dean
https://alpha.app.net/jamiechase7676 - Jamie Chase
https://alpha.app.net/alaamiah - شركة العالمية للخدمات المنزلية
https://alpha.app.net/pkurschildgen - Pascal Kurschildgen
https://alpha.app.net/knipsa - Elke Wagner
https://alpha.app.net/48694869 - 4869
https://alpha.app.net/ardiefox - Ardie Hyun Hwang
https://alpha.app.net/khaber - Yousif Ameen
https://alpha.app.net/yousif - Yousif Ameen
https://alpha.app.net/beezle - Beezle
https://alpha.app.net/batonrougeappraiser - Bill Cobb, Appraiser
https://alpha.app.net/mijsmith1981 - mijsmith1981
https://alpha.app.net/tiroas - Tiroas
https://alpha.app.net/dvdgar - David
https://alpha.app.net/griwsutto -
https://alpha.app.net/hape - Hape
https://alpha.app.net/kailinde - Kai Linde
https://alpha.app.net/0gst - やどかり
https://alpha.app.net/nidaalikhawaja - Jobs Pakistan App
https://alpha.app.net/toroman - helios33
https://alpha.app.net/ikari - Thorsten Martinsen
https://alpha.app.net/harm82 - Harm Otten
https://alpha.app.net/hesapnocom - Hesapno.com
https://alpha.app.net/plakat - WS
https://alpha.app.net/brennannovak - Brennan Novak
https://alpha.app.net/kaddile - Kaddi
https://alpha.app.net/bbambz - amber
https://alpha.app.net/basedgod - faggot
https://alpha.app.net/hanamura - Taro Hanamura
https://alpha.app.net/calmtheham - CALMTHEHAM
https://alpha.app.net/swoge - swoge
https://alpha.app.net/carpetmedics1 - Elizabeth Richards
https://alpha.app.net/cafeleak - cafeleak
https://alpha.app.net/ruine - ruine
https://alpha.app.net/olebisuteria - oliver bis
https://alpha.app.net/lona_k_5130 - Lona Kristofer
https://alpha.app.net/monosabio - De los tuertos, el rey
https://alpha.app.net/rikayne - Sarah
https://alpha.app.net/agung305 - Agung Purnomo
https://alpha.app.net/cmdann - Daniel Blair
https://alpha.app.net/jaltek - Jan
https://alpha.app.net/sdhughes1 - Sarah Diel Hughes
https://alpha.app.net/mmepassepartout - mmepassepartout
https://alpha.app.net/jiatern - JT
https://alpha.app.net/hch - Hans Hönle
https://alpha.app.net/nicholasshulman - Nicholas Shulman
https://alpha.app.net/fckingston - Billie Adams
https://alpha.app.net/dancast - Daniel Blumenthal
https://alpha.app.net/vandproduse_amway - Particular ,vand produse Amway.
https://alpha.app.net/luckystrik3 - Markus Soelter
https://alpha.app.net/seculartotem - Secular Totem
https://alpha.app.net/dasmaddin - DasMaddin
https://alpha.app.net/hscollection - HS Collection
https://alpha.app.net/r9 - うづき
https://alpha.app.net/jandmlab - Jeff / Miriam
https://alpha.app.net/tonibot - Tobias Lamers
https://alpha.app.net/chschoepe - Christian
https://alpha.app.net/poptartboy - Chris Hanson
https://alpha.app.net/tion - Tion
https://alpha.app.net/codeboxr - Codeboxr
https://alpha.app.net/bestbambus - bestbambus
https://alpha.app.net/cchelberg - Chris Chelberg
https://alpha.app.net/justepic - Eric
https://alpha.app.net/trvz - trvz
https://alpha.app.net/kouji2569 - kouji2569
https://alpha.app.net/elliottpayne - Elliott Payne
https://alpha.app.net/waffa - Margus Waffa
https://alpha.app.net/nugwife - ♡ nuggy ♡
https://alpha.app.net/tinrocket - John Balestrieri
https://alpha.app.net/giabianca - gia bianca
https://alpha.app.net/wayoutosphere - C. Bowie
https://alpha.app.net/ramonjdejesus - Ramon J. De Jesus
https://alpha.app.net/bizde - arilmis
https://alpha.app.net/jaylaloardo -
https://alpha.app.net/coopey - Simon Coopey
https://alpha.app.net/backstube - backstube
https://alpha.app.net/subwolf - Rob Beckett
https://alpha.app.net/nora - Nora Al-Brahim
https://alpha.app.net/umagon1998 - Jayron Efferson
https://alpha.app.net/dffy - James Duffy
https://alpha.app.net/alpalombo - Alex Palombo
https://alpha.app.net/liveshots - LiveShots
https://alpha.app.net/joreg - luckiest guy
https://alpha.app.net/chadpredovich - Chad Predovich
https://alpha.app.net/ssd - Michael Wareman
https://alpha.app.net/maxjacobson - Max Jacobson
https://alpha.app.net/intensefuck - 蔦屋
https://alpha.app.net/wtsol112 - David Jensen
https://alpha.app.net/tamizdata - Tamizdata
https://alpha.app.net/sairakhangenius - sairakhangenius
https://alpha.app.net/bm5k - bm5k
https://alpha.app.net/delaney - Evan DeLaney
https://alpha.app.net/happitran - Happi Tran
https://alpha.app.net/searchshark - SEO Companies Toronto
https://alpha.app.net/askagirl -
https://alpha.app.net/mbrockgreat - mbrockgreat
https://alpha.app.net/jonathantrot -
https://alpha.app.net/explorer4life -
https://alpha.app.net/devinholdinn - Devin Poore
https://alpha.app.net/sjks - sjks
https://alpha.app.net/alexendercarlo - Alexender Carlo
https://alpha.app.net/teamnutfundraising - TeamNut Fundraising
https://alpha.app.net/teamnut_fundraising - TeamNut Fundraising
https://alpha.app.net/torhazel -
https://alpha.app.net/onder - Jamie Scott
https://alpha.app.net/fellner - Rene Fellner
https://alpha.app.net/killercup - Pascal
https://alpha.app.net/johnk1289 - John K Arnold
https://alpha.app.net/med_harbour - Med Harbour
https://alpha.app.net/skye - $$$ trill bitch $$$
https://alpha.app.net/mariapricedesigns - Maria Price Designs
https://alpha.app.net/bakerlawis -
https://alpha.app.net/siegfriedehret - Siegfried Ehret
https://alpha.app.net/buk - Sebastian
https://alpha.app.net/gabozz58 - Gabor K
https://alpha.app.net/rol1gon - rol1gon
https://alpha.app.net/jonlang - Jonathan Lang
https://alpha.app.net/candle - Candle
https://alpha.app.net/xkcd_comics - XKCD
https://alpha.app.net/bettysummer - Betty
https://alpha.app.net/blackvan - Blackvan
https://alpha.app.net/feelbetteronair - Luis De Souza
https://alpha.app.net/yourteleshopy - Asnaat Khan
https://alpha.app.net/auxaitartas - Auxai Tartas
https://alpha.app.net/davidlee3579 - David Lee
https://alpha.app.net/hockeyapp - HockeyApp
https://alpha.app.net/wingftpserver - Wing FTP Server Coupon Code
https://alpha.app.net/hudeem99 - Rustem Agishev
https://alpha.app.net/abc12 -
https://alpha.app.net/mantuko - Stephan
https://alpha.app.net/julime - Julian Meinders
https://alpha.app.net/misu - karsten
https://alpha.app.net/stuartviilliars - Stuart Viilliars
https://alpha.app.net/kaarlows - Carlos Alberto Santos
https://alpha.app.net/bfolberth - bfolberth
https://alpha.app.net/knightnsanders -
https://alpha.app.net/uniteddomains - united-domains AG
https://alpha.app.net/kirmicro - kirmicro
https://alpha.app.net/grapelines - Grapelines
https://alpha.app.net/pixellencephoto - Clwyd Probert
https://alpha.app.net/mikekotsch - Mike
https://alpha.app.net/epiphanystafftx -
https://alpha.app.net/grx_magic - EEE
https://alpha.app.net/koreahallyu - KoreaHallyu
https://alpha.app.net/mysiblingdolls -
https://alpha.app.net/lockedoutuk - Brendan Connolly
https://alpha.app.net/lrearte - Leo Rearte
https://alpha.app.net/championolmktg -
https://alpha.app.net/segagoz - Sergio García
https://alpha.app.net/amicisalonva - Curtis Hutchinson
https://alpha.app.net/sideboard - Sideboard
https://alpha.app.net/chicagogreen1 - Chicago Green Cleaners
https://alpha.app.net/uncle_priff - Alex Priff
https://alpha.app.net/landscapervabch - Mark Taylor
https://alpha.app.net/peshay - peshay
https://alpha.app.net/isarmatrose - Isarmatrose
https://alpha.app.net/luxurylashlounge - Luxury Lash Lounge
https://alpha.app.net/fencerepairmd - Steve Walzl
https://alpha.app.net/wynnewooddental - Thomas DeFinnis
https://alpha.app.net/dianaparis03 -
https://alpha.app.net/srperex - Jorge
https://alpha.app.net/pinnaclerenov - Paul Klassen
https://alpha.app.net/viperonline -
https://alpha.app.net/proz511 - proze
https://alpha.app.net/hannacommercial - Richard Hanna
https://alpha.app.net/kurtzandblum - Howard Kurtz
https://alpha.app.net/ragenau - Ragenau
https://alpha.app.net/timkrueger - Tim
https://alpha.app.net/widelka - Mirosław Widełka
https://alpha.app.net/tenga - てってれ
https://alpha.app.net/ngorman - ngorman
https://alpha.app.net/schwarmtaler - Schwarmtaler
https://alpha.app.net/f30 - Felix Dreissig
https://alpha.app.net/tencars - tencars
https://alpha.app.net/larsauswsw - larsauswsw
https://alpha.app.net/saleh - Saleh AlMatrafi
https://alpha.app.net/nilrog - nilrog
https://alpha.app.net/flattrstar - Flattrstar
https://alpha.app.net/vtrplan -
https://alpha.app.net/vestpac - Paul Cherry
https://alpha.app.net/goldenhillsoftware - Golden Hill Software
https://alpha.app.net/caa1000 - Carol Alfonso
https://alpha.app.net/vorhander - Christian Derrez
https://alpha.app.net/ddunkan - Dave Dunkan
https://alpha.app.net/j1ichikawa - Junichi ICHIKAWA
https://alpha.app.net/skasperson - Steve Kasperson
https://alpha.app.net/tselim - Tamer Selim
https://alpha.app.net/amandafclark - Amanda Clark
https://alpha.app.net/addingtrash - bamboodiary
https://alpha.app.net/rjlemaster - LibertyReigns
https://alpha.app.net/fcleanersenfield - Peter Clarke
https://alpha.app.net/terrinakamura - Terri Nakamura
https://alpha.app.net/dave256 - David Reed
https://alpha.app.net/fastcleanersealing - Amie Mellor
https://alpha.app.net/jwoldan - Jeffrey Woldan
https://alpha.app.net/ctmarketing - CTMarketing
https://alpha.app.net/johnbrayton - John Brayton
https://alpha.app.net/dimitryjacobs - Dimitry Jacobs
https://alpha.app.net/oscaralaniz - Oscar Alaniz
https://alpha.app.net/drblanche - Dr. Blanche Grube
https://alpha.app.net/revolutionaryparty - TheRevolutionaryParty
https://alpha.app.net/brbdc - brbdc
https://alpha.app.net/cendipweb - Pedro Pérez
https://alpha.app.net/schnassn - Steffen Braasch
https://alpha.app.net/vincentpolisi - Vincent Polisi
https://alpha.app.net/prospero - Eric
https://alpha.app.net/jhugman - James Hugman
https://alpha.app.net/iterra - iterra
https://alpha.app.net/bolswang - Ben Olswang
https://alpha.app.net/gary - Gary Why
https://alpha.app.net/larc_en_ciel - るみこ
https://alpha.app.net/schreihalzz - schreihalzz
https://alpha.app.net/bopacasi - Bogdan
https://alpha.app.net/cheekiegeek - Brenda
https://alpha.app.net/signori - Sehoon You
https://alpha.app.net/rotespferd - Marian Sievers
https://alpha.app.net/opal - Joseph Roppo
https://alpha.app.net/rub - Ruben
https://alpha.app.net/spencer - Spencer Schoeben
https://alpha.app.net/pandacc - PANDA Carpet and Tile Cleaning
https://alpha.app.net/deserat - Vance Dubberly
https://alpha.app.net/jddavis - JD Davis
https://alpha.app.net/aacri - Ariel
https://alpha.app.net/encoreconsign - Encore Consignment Gallery
https://alpha.app.net/kyleisom - Kyle Isom
https://alpha.app.net/movieclub - ADN Movie Club
https://alpha.app.net/kohlmannj - Joe Kohlmann
https://alpha.app.net/ebareza - Eduard
https://alpha.app.net/blogviet - Tinh Tran
https://alpha.app.net/aa_zz_ww - مساعد الجراح
https://alpha.app.net/drwormau - Andrew F
https://alpha.app.net/nafal088 - Nafal
https://alpha.app.net/acrepairmemphis - Air Conditioning Repair Memphis TN
https://alpha.app.net/seofreelancerlatino - SEO Freelancer
https://alpha.app.net/simondueckert - Simon Dückert
https://alpha.app.net/jamsbond -
https://alpha.app.net/carhirerarotonga - Carhirerarotonga
https://alpha.app.net/kof8319579 -
https://alpha.app.net/enbewe - Nis Wechselberg
https://alpha.app.net/latimes - Los Angeles Times
https://alpha.app.net/jfriesen118 - Johnny Friesen
https://alpha.app.net/smurnain - Stuart Murnain
https://alpha.app.net/johnmillergo -
https://alpha.app.net/raw_enthusiast - Murat T.
https://alpha.app.net/brandusa - Brandusa Comescu
https://alpha.app.net/ziliang - Zi Bob Liang
https://alpha.app.net/minehj - Kuro
https://alpha.app.net/donnerbeutel - Cherubim
https://alpha.app.net/ccp - Craig
https://alpha.app.net/nrgnm111 -
https://alpha.app.net/cherry_ann - Cherry-Ann Carew
https://alpha.app.net/haezel -
https://alpha.app.net/najilayva - Najil Ayva
https://alpha.app.net/tmoehle - Thomas Möhle
https://alpha.app.net/econore - Econore
https://alpha.app.net/namdalhun - Charles Dal Nam
https://alpha.app.net/drikkes - Ukko Tähti
https://alpha.app.net/darthgrammar - Ian Daniels
https://alpha.app.net/pilotmoon - Pilotmoon Software
https://alpha.app.net/sakatelevizyonu - Şaka Televizyonu
https://alpha.app.net/pairsys1 -
https://alpha.app.net/domfi - Dominik Fischer
https://alpha.app.net/intizam -
https://alpha.app.net/atroxi - Jeffrey Disharoon
https://alpha.app.net/zhu - yongshun
https://alpha.app.net/pandithsanjeevuk - Pandith Sanjeev
https://alpha.app.net/antalyaimleme - Antalya İmleme
https://alpha.app.net/mytk - MYTK
https://alpha.app.net/matthewkeys - Matthew Keys
https://alpha.app.net/volkanatabey - Volkan Atabey
https://alpha.app.net/cocoaheads_at - Cocoaheads Austria
https://alpha.app.net/papacast - Podcast
https://alpha.app.net/adrianosoares - Adriano Soares
https://alpha.app.net/ccdirtdestroy1 - Larry Dauscher
https://alpha.app.net/baymakservisi - Baymak Servisi
https://alpha.app.net/steveleighton - Steven Leighton
https://alpha.app.net/abhishek - Dr. Abhishek Roy
https://alpha.app.net/westfeld - Thomas Westfeld
https://alpha.app.net/carlosjg - Carlos JG
https://alpha.app.net/patronseker - Patron Seker
https://alpha.app.net/cabinandcove - Kristen Stock
https://alpha.app.net/icosas - icosas Veintitrés
https://alpha.app.net/dg_grundrauschen - Digitales Grundrauschen
https://alpha.app.net/insanelygreat - insanelygreat
https://alpha.app.net/thebankruptcyin - Portia Douglas
https://alpha.app.net/kns - ぱけぱけ
https://alpha.app.net/vorhiesortho - Mark Vorhies
https://alpha.app.net/yutamoty - yuta mochizuki
https://alpha.app.net/eli_massey - Eli Massey
https://alpha.app.net/valleyhomeimprv - Steven Silverman
https://alpha.app.net/controlledcolor - Douglas Gaster
https://alpha.app.net/deajum - de ajum
https://alpha.app.net/cuidadomobile - Norm Evans
https://alpha.app.net/brinkworth - Chris Brinkworth
https://alpha.app.net/barilla - Barilla aldente Spice
https://alpha.app.net/detektorfm - detektor.fm
https://alpha.app.net/wink2001 - wink2001
https://alpha.app.net/abcd106 - SEO is No 1
https://alpha.app.net/altaskydental - Heather Gonzalez
https://alpha.app.net/mrlocksmithdc - liran
https://alpha.app.net/kbemarketing - Beecher Henderson
https://alpha.app.net/dalbuilders -
https://alpha.app.net/sfhoundlounge - Ashley Ziegler
https://alpha.app.net/uptonhatfield - Michael McGrath
https://alpha.app.net/pandroid - Pandroid podcast
https://alpha.app.net/centerforlicecontrol - Ilene Steinberg
https://alpha.app.net/pcrobo - pcrobo
https://alpha.app.net/buchananlpgas -
https://alpha.app.net/vdubinin - Vitaliy Dubinin
https://alpha.app.net/fcleanerswestminster - Amanda Stokes
https://alpha.app.net/fchammersmith - Nicole Green
https://alpha.app.net/rtbatlanta - Raising the Bar
https://alpha.app.net/pyfgcrl - pyfgcrl
https://alpha.app.net/bugguardian - Tom Taylor
https://alpha.app.net/kevinhoctor - Kevin Hoctor
https://alpha.app.net/revistapnl - Emik Cecilio
https://alpha.app.net/christineordze - Christine Ordze
https://alpha.app.net/insureyourcompany - Dan Levenson
https://alpha.app.net/mediqfinancial - Ravi Agarwal
https://alpha.app.net/tukietukie - tukie
https://alpha.app.net/svpodcast - Savoir Vivre Podcast
https://alpha.app.net/peachtreeinks -
https://alpha.app.net/allhourplumbing - Chuck Staszkiewicz
https://alpha.app.net/wuselita - Wuselitensen
https://alpha.app.net/truckercast - truckercast.de
https://alpha.app.net/brodymcd - brodymcd
https://alpha.app.net/fitnessmag - Fitnessmag.ro
https://alpha.app.net/cdmandich - Carmen Mandich
https://alpha.app.net/imrdbdotcom -
https://alpha.app.net/rrosson - Ron Rosson
https://alpha.app.net/demon10 - Dominic Fox
https://alpha.app.net/amy - Amy Worrall
https://alpha.app.net/joekun - Joel Lopes Da Silva
https://alpha.app.net/penpaperinkletter - Pen Paper Ink Letter
https://alpha.app.net/am_al - Amal a7med
https://alpha.app.net/boycaught - .LAG
https://alpha.app.net/jwardle - Jason Wardle
https://alpha.app.net/bloodash - fjmr
https://alpha.app.net/bestwatchtvcom - Dmitriy
https://alpha.app.net/ta_ - ともすけ
https://alpha.app.net/jthn - jon
https://alpha.app.net/brianciezki - Brian
https://alpha.app.net/eileenmlehman - eileenmlehman
https://alpha.app.net/phnl - Phnl
https://alpha.app.net/jmartindf - Joe Martin
https://alpha.app.net/lajamark -
https://alpha.app.net/leoparddennis - _DennisYu
https://alpha.app.net/edit2033 - صور محترمه
https://alpha.app.net/cacqn251 - Aimi
https://alpha.app.net/georgestarcher - George Starcher
https://alpha.app.net/tyresmandurah -
https://alpha.app.net/bazcurtis - Michael Curtis
https://alpha.app.net/kymanikd - Kristin Drysdale
https://alpha.app.net/vinay991099 - Vinay Kumar
https://alpha.app.net/liabaali -
https://alpha.app.net/theoazion - David Harry
https://alpha.app.net/sternennacht - sternennacht
https://alpha.app.net/georgegeroge - George George
https://alpha.app.net/analog_a - Andreas Bischof
https://alpha.app.net/artiq - Uwe Artmann
https://alpha.app.net/sanjeevukastrologer - Astrologer Sanjeev
https://alpha.app.net/ricardo_b - Ricardo
https://alpha.app.net/nero - Jörn Sieveneck
https://alpha.app.net/cocoaheads_n - CocoaHeads Nürnberg
https://alpha.app.net/alpenhorn4731 -
https://alpha.app.net/luv2sexdotinfo - Ng Eng Hou
https://alpha.app.net/rootstalk4667 -
https://alpha.app.net/emwzombietech - Elijah Lindsay
https://alpha.app.net/evan1797 -
https://alpha.app.net/raihanbubt - movieandmusicworld.com
https://alpha.app.net/dictatingly1683 -
https://alpha.app.net/capizshells -
https://alpha.app.net/disposing1990 -
https://alpha.app.net/dbk - DBK
https://alpha.app.net/mh120480 - Marco Herack
https://alpha.app.net/matthiasfromm - Matthias Fromm
https://alpha.app.net/wostkinder - @diekadda + @mh120480
https://alpha.app.net/essen2872 -
https://alpha.app.net/fablab_nue - Fab Lab Region Nürnberg e.V.
https://alpha.app.net/transmogrifying320 -
https://alpha.app.net/nonvariant4584 -
https://alpha.app.net/hybridise1846 -
https://alpha.app.net/peritonealize3014 -
https://alpha.app.net/willlyf - MatthiasR
https://alpha.app.net/thermoplastic1938 -
https://alpha.app.net/urbanbike - urbanbike
https://alpha.app.net/tomallen - Tom Allen
https://alpha.app.net/sparring1843 -
https://alpha.app.net/presser2738 -
https://alpha.app.net/glottidean3575 -
https://alpha.app.net/getbridgingloans - Marchov Davis
https://alpha.app.net/hearingless298 -
https://alpha.app.net/cesvlc - César
https://alpha.app.net/networkmaintenance -
https://alpha.app.net/cssinfotech - CSSInfoTech
https://alpha.app.net/delightedly4591 -
https://alpha.app.net/gmale - Gmale
https://alpha.app.net/vassie - Ben Vassie
https://alpha.app.net/engelbert2584 -
https://alpha.app.net/hemiterpene1242 -
https://alpha.app.net/kottermarcus -
https://alpha.app.net/timekiller - [:TIMEKILLER:]™
https://alpha.app.net/sinapsis -
https://alpha.app.net/taktiktafel - Achim
https://alpha.app.net/waughharry01 - Harry Waugh
https://alpha.app.net/ojmason - Oliver Mason
https://alpha.app.net/pinmyreview - Pin My Review
https://alpha.app.net/milescarmany - Miles Carmany
https://alpha.app.net/hemlis_ - Abdulaziz
https://alpha.app.net/2_muri - 2muri
https://alpha.app.net/stat1124 - Stat1124
https://alpha.app.net/nathansnelgrove - Nathan Snelgrove
https://alpha.app.net/cpcommunications - Robert Capielo
https://alpha.app.net/cvigano - Christoph Vigano
https://alpha.app.net/ralph - Ralph Bassfeld
https://alpha.app.net/fastcleanerswands - Sofia Bone
https://alpha.app.net/mounirzougagh -
https://alpha.app.net/skr -
https://alpha.app.net/fastlaneauto - Anthony Lane
https://alpha.app.net/djhprocess -
https://alpha.app.net/fivestarhvacplumbing - Ed Desrosiers
https://alpha.app.net/livewebpromotion - Live Web Promotion
https://alpha.app.net/neologized1607 -
https://alpha.app.net/melkoumov - Aram Melkoumov
https://alpha.app.net/micha_s - Michael Schwoch
https://alpha.app.net/singultous3054 -
https://alpha.app.net/opticonmktg - Gregory Reynolds
https://alpha.app.net/romaniccleaning - Ivan Romanic
https://alpha.app.net/srcareplacement - Chance Brown
https://alpha.app.net/orchis53 -
https://alpha.app.net/billkunz - Bill Kunz
https://alpha.app.net/frozen_margarita -
https://alpha.app.net/melioration3061 -
https://alpha.app.net/percysnoodle - Simon Booth
https://alpha.app.net/mobikortti - Kuopion Tori Mobikortti
https://alpha.app.net/anavareniq11 - Spas Kirov
https://alpha.app.net/stormchambers - Sharon Strock
https://alpha.app.net/reliablemoving - Ben Sena
https://alpha.app.net/octupkit3366 -
https://alpha.app.net/studierzimmer - Studierzimmer Podcast
https://alpha.app.net/cicatrizant976 -
https://alpha.app.net/babydolpk - Sonia Doll
https://alpha.app.net/precompletion3363 -
https://alpha.app.net/mattprice - Matthew Price
https://alpha.app.net/wholockian - mariarty.
https://alpha.app.net/3m - ってー
https://alpha.app.net/acquitter518 -
https://alpha.app.net/aidegao - Edgar Holzke
https://alpha.app.net/untruss4542 -
https://alpha.app.net/erikascam - et
https://alpha.app.net/london1643 -
https://alpha.app.net/o_taxi_ - taxi
https://alpha.app.net/bizmarketingpro - John Smith
https://alpha.app.net/kimjew - Kim Jew
https://alpha.app.net/circumspect2437 -
https://alpha.app.net/hansv - Hans verschooten
https://alpha.app.net/jokindler - Jonas Kindler
https://alpha.app.net/fiacres192 -
https://alpha.app.net/scwe35 - Simon Schweizer
https://alpha.app.net/chrisv - Chris V.
https://alpha.app.net/proximateness3716 -
https://alpha.app.net/tomahawk - Tomahawk
https://alpha.app.net/borzel - Alexander Schulz
https://alpha.app.net/samothrace769 -
https://alpha.app.net/uratic1061 -
https://alpha.app.net/scopeless3820 -
https://alpha.app.net/jeff_w_brooktree - Jeff W. Brooktree
https://alpha.app.net/4ql - mushi
https://alpha.app.net/bedfordshire4158 -
https://alpha.app.net/pozsony3327 -
https://alpha.app.net/jetting4386 -
https://alpha.app.net/brandonmon - Brandon Monroe
https://alpha.app.net/xtianp87 - Christian Pérez
https://alpha.app.net/cznweb - The CitizenWeb Project
https://alpha.app.net/balladeer3793 -
https://alpha.app.net/forestay4333 -
https://alpha.app.net/anhaeuser - Marcus Anhäuser
https://alpha.app.net/misperform302 -
https://alpha.app.net/willwood - William Woodgate
https://alpha.app.net/fastcleanerschelsea -
https://alpha.app.net/fcleanersbexley - Becky Muller
https://alpha.app.net/agnominal3389 -
https://alpha.app.net/johndolphin - John Dolphin
https://alpha.app.net/anemophily808 -
https://alpha.app.net/rob1234x - Robert Carson
https://alpha.app.net/premarry2345 -
https://alpha.app.net/yes3123 -
https://alpha.app.net/malekalby - malek alby
https://alpha.app.net/two123 - 2 (two /ˈtuː/)
https://alpha.app.net/lust1799 -
https://alpha.app.net/exemplifier617 -
https://alpha.app.net/floridaconf - Florida Conference of Seventh-day Adventists
https://alpha.app.net/frumpily3220 -
https://alpha.app.net/mintz - Ian Mintz
https://alpha.app.net/s_ebastia_n - Sebastian
https://alpha.app.net/predicative4013 -
https://alpha.app.net/beacher1174 -
https://alpha.app.net/oscarsantiago - oscarsantiago
https://alpha.app.net/onlinediziizle - onlinebedava film
https://alpha.app.net/countship1089 -
https://alpha.app.net/rumanian4657 -
https://alpha.app.net/columbic3235 -
https://alpha.app.net/living133 -
https://alpha.app.net/md_w - MD Worshiper
https://alpha.app.net/sardou2578 -
https://alpha.app.net/tenebrious1509 -
https://alpha.app.net/takao3810 -
https://alpha.app.net/0cr - Leepak
https://alpha.app.net/4ck - Йошики Йабути
https://alpha.app.net/wiederholungstaeter - Wiederholungstäter
https://alpha.app.net/hypercard - HyperCard
https://alpha.app.net/fujione - fujione
https://alpha.app.net/amazingdiscoveries - Amazing Discoveries
https://alpha.app.net/makasi - makasi_t
https://alpha.app.net/brianwisti - Brian Wisti
https://alpha.app.net/subduced779 -
https://alpha.app.net/kcnickerson - Ken Nickerson
https://alpha.app.net/vrzchinese - VR-Zone Chinese
https://alpha.app.net/akazuser783 - John Carter
https://alpha.app.net/cjtoshea - Cameron O'Shea
https://alpha.app.net/wafrelka - わふれるか
https://alpha.app.net/sanatkamat - Sanat Kamat
https://alpha.app.net/renita - nita anggerni
https://alpha.app.net/nellynette - Nellynette Torres
https://alpha.app.net/cdevroe - Colin Devroe
https://alpha.app.net/rossnelson - Ross Nelson
https://alpha.app.net/dacsandanang - Dac san Da Nang
https://alpha.app.net/murr - David Murr
https://alpha.app.net/michael_a_z - Mino
https://alpha.app.net/fglqn11 -
https://alpha.app.net/hako - Wesley
https://alpha.app.net/roj - Randy Johnson
https://alpha.app.net/baldur - Park, JongKwon
https://alpha.app.net/nycbrooklyn - NYC-Brooklyn
https://alpha.app.net/veldskoen2229 -
https://alpha.app.net/factorise987 -
https://alpha.app.net/cpq - Kris Slevens
https://alpha.app.net/rheum2170 -
https://alpha.app.net/j_rey - Jason
https://alpha.app.net/khdrutet - Makes you stand out among the crowd!
https://alpha.app.net/madzstar - Josh Fernandez
https://alpha.app.net/karlimann - Karl Heindel
https://alpha.app.net/nonsterility240 -
https://alpha.app.net/unlacerated2187 -
https://alpha.app.net/colorbay - Colorbay
https://alpha.app.net/nonreservable2473 -
https://alpha.app.net/thichlamdep - thach ngoc pham
https://alpha.app.net/demiurgically733 -
https://alpha.app.net/stephaniejas -
https://alpha.app.net/rose4015 -
https://alpha.app.net/scientistically2338 -
https://alpha.app.net/mattflaschen - Matthew Flaschen
https://alpha.app.net/heikowitte - Heiko Witte
https://alpha.app.net/mpelegrin86 - Mariano
https://alpha.app.net/daksha_au - Daksha Australia
https://alpha.app.net/undurableness3807 -
https://alpha.app.net/michaelblum - Michael Blum
https://alpha.app.net/electmejewellery - electmejewellery
https://alpha.app.net/inharmoniously1822 -
https://alpha.app.net/anisic544 -
https://alpha.app.net/linakote -
https://alpha.app.net/undeadking - undeadking
https://alpha.app.net/horseplay4868 -
https://alpha.app.net/ronin - Christopher Seeberg
https://alpha.app.net/evelyne_hett - Evelyne Hett
https://alpha.app.net/fabulousness3499 -
https://alpha.app.net/tlo - Thilo Uttendorfer
https://alpha.app.net/bulk742 -
https://alpha.app.net/aerogenic289 -
https://alpha.app.net/fwtb - fwtb
https://alpha.app.net/contributively3810 -
https://alpha.app.net/alphawedplnr2 - Alyssa Khan
https://alpha.app.net/domesticcleaners1 - Domestic Cleaners Ltd
https://alpha.app.net/isenex - Senecio Schefer
https://alpha.app.net/boulevardier4816 -
https://alpha.app.net/gloriana3962 -
https://alpha.app.net/bmw4 - TVISLAM
https://alpha.app.net/presacrifice3157 -
https://alpha.app.net/jeanfrancoissa - Jean Francois
https://alpha.app.net/elissafreeman - Elissa Freeman Creative Life Coach
https://alpha.app.net/brigandish2139 -
https://alpha.app.net/dzrihen -
https://alpha.app.net/predissolution2516 -
https://alpha.app.net/vahan_vardanyan_988 - Vahan Vardanyan
https://alpha.app.net/y3kde - Stephan
https://alpha.app.net/packable894 -
https://alpha.app.net/zion4838 -
https://alpha.app.net/galmeida - galmeida
https://alpha.app.net/schmuck - SchmuckSchmiede Berlin
https://alpha.app.net/whilemusic - While Music
https://alpha.app.net/pinafore1304 -
https://alpha.app.net/preliquidate263 -
https://alpha.app.net/bloginfo - Denis Szalkowski
https://alpha.app.net/feedmetv - Andy Middleton
https://alpha.app.net/holinshed2961 -
https://alpha.app.net/rhodesmark - Rhodesmark
https://alpha.app.net/rattan3413 -
https://alpha.app.net/isoe -
https://alpha.app.net/yahu_yahu - yahu_yahu
https://alpha.app.net/callisto4554 -
https://alpha.app.net/mex_power - Mex Power
https://alpha.app.net/strattonsales - Bert Bowen
https://alpha.app.net/thinkvideo - todd
https://alpha.app.net/meszner - Daniel Meßner
https://alpha.app.net/toptrafic - TOPtrafic
https://alpha.app.net/allystercampbell - Allyster Campbell
https://alpha.app.net/lockershopuk - lockershopuk
https://alpha.app.net/sergey_s -
https://alpha.app.net/indoor - inDooR
https://alpha.app.net/yasuar - yasuar
https://alpha.app.net/augustusjill - Augustus Jill
https://alpha.app.net/multicolourpixel - Eddy'gar Gammon
https://alpha.app.net/dondukov - vladimir
https://alpha.app.net/1abcool - Roland Fulde
https://alpha.app.net/b2wcarpet - Chris Steere
https://alpha.app.net/farmike - Miguel
https://alpha.app.net/uristmcgeorge - Dennis
https://alpha.app.net/ipqconstruction - Dan Rizzi
https://alpha.app.net/schillert - Jonathan
https://alpha.app.net/deathlivesgaming - DeathLives Gaming
https://alpha.app.net/davidfinch - David Finch
https://alpha.app.net/wisestep - Manish Grover
https://alpha.app.net/beautysmartmd - Deana Clark
https://alpha.app.net/horset - i-yodel
https://alpha.app.net/grahamestateak - Chad Graham
https://alpha.app.net/technobizadviser - Offsource Hub, Inc
https://alpha.app.net/tensoh - tensoh
https://alpha.app.net/clouder - Timon Blauensteiner
https://alpha.app.net/asaaki - Christoph Grabo
https://alpha.app.net/chemamun - Chema
https://alpha.app.net/chrisfiebelkorn - chris fiebelkorn
https://alpha.app.net/kursuskomputer - Kursus Komputer
https://alpha.app.net/maid4condos - Swaara Espinoza
https://alpha.app.net/wesleyt - Wesley Perdue
https://alpha.app.net/n8zug - Ralph
https://alpha.app.net/osvera - Progressive Finance
https://alpha.app.net/happyguestslodge - Jeff Riley
https://alpha.app.net/parthibanr52 - Parthiban Raja
https://alpha.app.net/kirckman_mantha_9 - Kirckman Mantha
https://alpha.app.net/aethelyon - Stephen M. Walker II
https://alpha.app.net/jacobshare - Jacob Share
https://alpha.app.net/mi_bi_stormi - Micha
https://alpha.app.net/buckley - Michael Buckley
https://alpha.app.net/rolandx1 - rolandx1
https://alpha.app.net/romeroins - Fernando Romero
https://alpha.app.net/linearlocal - Sean Brown
https://alpha.app.net/plexxer - Patryk Janiszewski
https://alpha.app.net/championtrailers - Jessica Finley
https://alpha.app.net/houstonsmiledocs - Randy Farmer
https://alpha.app.net/mccartysjewelrylb - Dann Hires
https://alpha.app.net/cptpudding - [jo.han.nes]
https://alpha.app.net/zahlensender - zahlensender.net
https://alpha.app.net/homebasedtravel - Shaun Caldwell
https://alpha.app.net/bulkviews - Youtube Bulk Views
https://alpha.app.net/tonyskyday - Tony Scida
https://alpha.app.net/tabdatasystems - Kurt Cantin
https://alpha.app.net/skinzonelaser - Nicole Morris
https://alpha.app.net/manofsteel - Max Molina
https://alpha.app.net/annyveraddspafl - Anny Vera
https://alpha.app.net/webdevelopmentgoals - Steven Keltsch
https://alpha.app.net/visiblepages - Jo Pickering
https://alpha.app.net/tsom - John Tsombakos
https://alpha.app.net/roxor1911 - Adrian
https://alpha.app.net/deisterb - Brett Deister
https://alpha.app.net/glenreiff - Glen Reiff
https://alpha.app.net/nhaapac -
https://alpha.app.net/westcoastflooring -
https://alpha.app.net/copyprofits - CopyProfits
https://alpha.app.net/arrowheadlockandsafe - Arrowhead Lock & Safe Inc
https://alpha.app.net/malakalf - ملوكه
https://alpha.app.net/addsbridge - AddsBridgE
https://alpha.app.net/lscottspencer - L. Scott Spencer
https://alpha.app.net/gahtan1 - Gahtan Abdullah
https://alpha.app.net/ludger - Ludger
https://alpha.app.net/highwaystech - highwaystech
https://alpha.app.net/utkukali - Utku Kalı
https://alpha.app.net/doug_kuzma - Doug Kuzma
https://alpha.app.net/logista - Barbara Tozier
https://alpha.app.net/hotsauce - Adam Varn
https://alpha.app.net/ianmjones - Ian M. Jones
https://alpha.app.net/taglia - Cesare Tagliaferri
https://alpha.app.net/nekurai - nekurai
https://alpha.app.net/christopherjtaylor - Christopher J. Taylor
https://alpha.app.net/teamwontlose - Kevin A
https://alpha.app.net/anhcao - anh
https://alpha.app.net/tjmwa6 -
https://alpha.app.net/petra - Petra Gregorová
https://alpha.app.net/ikhodji -
https://alpha.app.net/rokasporch - Robert
https://alpha.app.net/u_kramer - Ulf Kramer
https://alpha.app.net/carsignange -
https://alpha.app.net/derekdunne7 - Derek Dunne
https://alpha.app.net/hasakevietnam - hasakevietnam
https://alpha.app.net/kylelowe - Kyle Lowe
https://alpha.app.net/xzvhp1 -
https://alpha.app.net/ssr - SSR . Sami . سامي
https://alpha.app.net/josema - josema™
https://alpha.app.net/edstrad43 - Ed Strad
https://alpha.app.net/rockyx - RockySpadeX
https://alpha.app.net/jollyjinx - Patrick Stein aka Jolly
https://alpha.app.net/derubercast - Der Übercast
https://alpha.app.net/flipsequence - .
https://alpha.app.net/marcjohne - Marc-David Johne
https://alpha.app.net/pdonb6 -
https://alpha.app.net/zayne - Zayne Humphrey
https://alpha.app.net/daiviet - Lý Văn Đức
https://alpha.app.net/lucymatto -
https://alpha.app.net/wasundarali -
https://alpha.app.net/daysleep8 - 敗訴
https://alpha.app.net/auminfotech - Aum InfoTech
https://alpha.app.net/tonilampela - Toni Lampela
https://alpha.app.net/sputnik - Sputnik
https://alpha.app.net/sanjeevastrologyuk - Pandith Sanjeev
https://alpha.app.net/icke_carter - Icke Carter
https://alpha.app.net/sanin - Sergey Sanin
https://alpha.app.net/kamome - kamome sano
https://alpha.app.net/pronk - Dennis Pronk
https://alpha.app.net/takapiko - Horimoto Takahiro
https://alpha.app.net/assibiker - Christofff
https://alpha.app.net/12monthloans - 12 Month Loans
https://alpha.app.net/bergkaiser01 - bergkaiser
https://alpha.app.net/savezippy - SaveZippy
https://alpha.app.net/arneh - Arne Hinsch
https://alpha.app.net/ehsnewsabc123 - ehsnews
https://alpha.app.net/milu74 - Emi Bel
https://alpha.app.net/agalaria - agalaria
https://alpha.app.net/mazhar - Mazhar
https://alpha.app.net/dorothylnguyen -
https://alpha.app.net/angelneethuchandra - angel
https://alpha.app.net/6h - ひんばす
https://alpha.app.net/gross - Guillaume Ross
https://alpha.app.net/servicemax1 - Alex Rodriguez-Caceres
https://alpha.app.net/ada1990 - Ada Miao
https://alpha.app.net/pixelpille - Martin Brunnert
https://alpha.app.net/metaebene - Metaebene Personal Media
https://alpha.app.net/cmeifort - Carsten Meifort
https://alpha.app.net/robertbrad999 - Robert Brad
https://alpha.app.net/dentalstudio101 - Mark Peck
https://alpha.app.net/k69 - きゅいろっく
https://alpha.app.net/tomohiko_sato_758 - Tomohiko Sato
https://alpha.app.net/frato - frato
https://alpha.app.net/sdhomealarms - San Diego Home Alarms
https://alpha.app.net/h2realestateal - Carter Hughes
https://alpha.app.net/lanelocalmarketing - Randall Lane
https://alpha.app.net/ulasimhaberi - Ulasim_Haberi
https://alpha.app.net/denokids - Denokids
https://alpha.app.net/fcimas - Fran Cimas
https://alpha.app.net/5ow1ku5 - sowikus
https://alpha.app.net/sylmobile - Syl Mobile
https://alpha.app.net/kapatidmartialarts - Kapatid Martial Arts
https://alpha.app.net/evolutionmarketing - Ken Paterson
https://alpha.app.net/robcuesta - Rob Cuesta
https://alpha.app.net/jeong840 - DingDong
https://alpha.app.net/spencerstuart - Spencer stuart
https://alpha.app.net/bastibe - Bastian Bechtold
https://alpha.app.net/chiavarichairmi - Jeremy Barker
https://alpha.app.net/sportsmedonline - Doug Forgey
https://alpha.app.net/americanpure - American Pure Spring Water
https://alpha.app.net/javakingcoffee - Zachary Swartz
https://alpha.app.net/nancysmith188 - anna morland
https://alpha.app.net/advbac - Catherine McMurtrie
https://alpha.app.net/copysolutions - Simon Patrick
https://alpha.app.net/cltlocalmarket - Ron Blackwelder
https://alpha.app.net/angelicabodytalk - Angelica Wagner
https://alpha.app.net/webtech - WebTech Group
https://alpha.app.net/givingworks - Alison Perris
https://alpha.app.net/poggisanimalhouse - Michael Poggi
https://alpha.app.net/candcheat - Jim Corrion
https://alpha.app.net/feschesheli - Helmut Sieghartsleitner
https://alpha.app.net/nriley - Nicholas Riley
https://alpha.app.net/littlesnitch - Little Snitch
https://alpha.app.net/anders_dakin - Anders Dakin
https://alpha.app.net/zheny_zhenyart - ZhenyArt
https://alpha.app.net/expertov - Expertov.com
https://alpha.app.net/anwarkam - Khairul
https://alpha.app.net/deniz - Deniz Veli
https://alpha.app.net/rwoeber - Richard Wöber
https://alpha.app.net/eisypc - Thomas E.
https://alpha.app.net/scottjal - Scott
https://alpha.app.net/homelesslink - Homeless Link
https://alpha.app.net/moan_g - もあん
https://alpha.app.net/yogomo - Yogi
https://alpha.app.net/jashan - Jashan Chittesh
https://alpha.app.net/eelenka - Elen
https://alpha.app.net/chessking - Chessking
https://alpha.app.net/tpooley11 - Lancs Juice Plus
https://alpha.app.net/kornel - Kornel
https://alpha.app.net/wajid9999 - wajid ali
https://alpha.app.net/backlinkpaketleri -
https://alpha.app.net/rareyman - Ross A. Reyman
https://alpha.app.net/devje - Devje
https://alpha.app.net/eastbay_flaneuse -
https://alpha.app.net/sirius - bluebird
https://alpha.app.net/alcholever - Ugurcan Dede
https://alpha.app.net/wrestlingandy - Andy Anderson
https://alpha.app.net/lightpro - Ingo Schramme
https://alpha.app.net/luby - Bryan Luby
https://alpha.app.net/rajeeboinam12 - Rajeeb
https://alpha.app.net/leoparker -
https://alpha.app.net/titanikjohn -
https://alpha.app.net/nettenindir - nettenindir
https://alpha.app.net/guitarzan - Doug Waldron
https://alpha.app.net/fb - Foster Bass
https://alpha.app.net/brianjoergens - Brian Joergens
https://alpha.app.net/richardkimleen -
https://alpha.app.net/baldr - ば る
https://alpha.app.net/pinku - L. Tharp
https://alpha.app.net/qszkl77 -
https://alpha.app.net/austintaylor - Austin Taylor
https://alpha.app.net/marylindare -
https://alpha.app.net/deemo - Deemo
https://alpha.app.net/ashtonavison16 - Ashton Avison
https://alpha.app.net/kiwi - Kiwi
https://alpha.app.net/iradeef -
https://alpha.app.net/aehmnnr - aehmnnr
https://alpha.app.net/itito - Tito
https://alpha.app.net/pauldieter - Pauldieter Schreiber
https://alpha.app.net/goldcolibri - veronique paret
https://alpha.app.net/kasharaylo - Constantine Kasharaylo
https://alpha.app.net/mehran8398 -
https://alpha.app.net/thammyviennamseoul - Thuốc yếu sinh lý điều trị xuất tinh sớm
https://alpha.app.net/wifipassword -
https://alpha.app.net/telefreizeit - Claas
https://alpha.app.net/dagams - Benjamin Schuster-Boeckler
https://alpha.app.net/koskso_127 -
https://alpha.app.net/vierteljunge - Oliver Tritschler
https://alpha.app.net/golfpuntala - Ristorante Golf PuntaAla
https://alpha.app.net/hawaiiroofingco2 - Jim Manu
https://alpha.app.net/michaelmitchell - Michael Mitchell
https://alpha.app.net/thibaut - Thibaut Dutartre
https://alpha.app.net/dizzy2 - Anton
https://alpha.app.net/ko_ser - David
https://alpha.app.net/vmarks - victor marks
https://alpha.app.net/kenta - Kenta
https://alpha.app.net/decfreak - Oliver Bach
https://alpha.app.net/below - Below
https://alpha.app.net/masjun - Juniawan Widyatmaja
https://alpha.app.net/bratling - Robert Mohns
https://alpha.app.net/games4youpk - Gamesforyou Pk
https://alpha.app.net/fizikamind - Swami Anand Paritosh
https://alpha.app.net/thierry_r - Thierry
https://alpha.app.net/pjv - pjv
https://alpha.app.net/jbear - Joern Bredereck
https://alpha.app.net/shahid - Shahid Kamal Ahmad
https://alpha.app.net/robertblack - Robert Black
https://alpha.app.net/luckys27991 - Luckys27991
https://alpha.app.net/d27504 - Rico
https://alpha.app.net/cartz - Claus Artz
https://alpha.app.net/antojsanchez - Antonio J. Sánchez
https://alpha.app.net/lukaswelte - Lukas Welte
https://alpha.app.net/avrn_sch - schuttele
https://alpha.app.net/nerdvana - Nerdvana Podcast
https://alpha.app.net/akira_apn - akira
https://alpha.app.net/rustyreels - Rusty Reels Podcast
https://alpha.app.net/syndicatednews - SyndicatedNews
https://alpha.app.net/binduwavell - Bindu Wavell
https://alpha.app.net/corcuman - Jorge Corcuera Molina
https://alpha.app.net/gepotenuz - Kia Wiki
https://alpha.app.net/ctietze - Christian Tietze
https://alpha.app.net/alterego - Lele's Alter Ego
https://alpha.app.net/miki - Miki
https://alpha.app.net/fidepus - fidepus
https://alpha.app.net/dirkblasius - Dirk Blasius
https://alpha.app.net/web_martin - Martin Weber
https://alpha.app.net/svelazquez1971 -
https://alpha.app.net/jayhilljr -
https://alpha.app.net/aaploutsider - Sebastian Peitsch
https://alpha.app.net/lolorose - lolo rose
https://alpha.app.net/boriskourt - Boris Kourtoukov
https://alpha.app.net/ysk - Yusuke
https://alpha.app.net/ske - 純情秘境ふるたそ
https://alpha.app.net/mccouman - Michael McCouman Jr.
https://alpha.app.net/loseth - Tor Rafsol Løseth
https://alpha.app.net/literary - K.
https://alpha.app.net/daarrs - daarrs
https://alpha.app.net/big_in_va - Kevin Allder
https://alpha.app.net/deafen1994 -
https://alpha.app.net/untrigonome1226 -
https://alpha.app.net/aminity2821 -
https://alpha.app.net/unstaunch1455 -
https://alpha.app.net/alexchrist -
https://alpha.app.net/begirding3280 -
https://alpha.app.net/maxleibman - Max Leibman
https://alpha.app.net/flashblu - Flash
https://alpha.app.net/dkirker - Donald Kirker
https://alpha.app.net/zchtec - Vasiliy Salchenko
https://alpha.app.net/konfluenzpunkt - konfluenzpunkt
https://alpha.app.net/sakej66 -
https://alpha.app.net/davidsabin - N
https://alpha.app.net/msaad -
https://alpha.app.net/dga32 - mannix
https://alpha.app.net/k_8 - kumar
https://alpha.app.net/gtk -
https://alpha.app.net/s5ja - Doyun Choi
https://alpha.app.net/matthewspear - Matthew Spear
https://alpha.app.net/ultraschall - Ultraschall
https://alpha.app.net/blits - Johan Oosthuizen
https://alpha.app.net/sacerdos82 - Tobias Opitz
https://alpha.app.net/antiheld - Sascha
https://alpha.app.net/tukki - tukki
https://alpha.app.net/francescamcdonald - Francesca McDonald
https://alpha.app.net/kaknamtam - KakNamTam.ru
https://alpha.app.net/nerdykjc - Remarkable
https://alpha.app.net/yariv_gai - Yariv Gai
https://alpha.app.net/storz - Satoru Takanami
https://alpha.app.net/nycmoldinspection - Moty Katz
https://alpha.app.net/svenbaer - Sven Bär
https://alpha.app.net/plivesey - Philip Livesey
https://alpha.app.net/digeridude - Digeridude
https://alpha.app.net/superbil - Superbil
https://alpha.app.net/jagreda - Joseph Agreda
https://alpha.app.net/nycmoldremoval - NYCmoldremoval
https://alpha.app.net/aegissei - イージス星
https://alpha.app.net/bajukoko - Produsen Baju Koko
https://alpha.app.net/ykaki - ykaki
https://alpha.app.net/entangled_world - Sebastian Templ
https://alpha.app.net/tobycurl - Toby Curl
https://alpha.app.net/fischaelameer - Michaela Lehr
https://alpha.app.net/xsammyjankisx - Sammy Jankis
https://alpha.app.net/sofkow - Kristin Grund
https://alpha.app.net/dem_onkel - Daniel
https://alpha.app.net/amarresdeamor - Amarres para enamorar
https://alpha.app.net/gordonmoeller - Gordon Möller
https://alpha.app.net/ianrobinson - Ian Robinson
https://alpha.app.net/promobroker1 - Guillermo Gutierrez
https://alpha.app.net/trashour - trashour
https://alpha.app.net/huck - Huck
https://alpha.app.net/f_umer12 -
https://alpha.app.net/marf - marco fecher
https://alpha.app.net/larrypollock - Larry Pollock
https://alpha.app.net/bigern - St_Ernie
https://alpha.app.net/wermter - Thomas Wermter
https://alpha.app.net/grahams - Sean Graham
https://alpha.app.net/winnie - Winnie Teichmann
https://alpha.app.net/acexpertsaz1 - Joe Huber
https://alpha.app.net/viaypi78 - hüseyin
https://alpha.app.net/motorcityhoff - Michael L. Hoffman
https://alpha.app.net/leoneoro -
https://alpha.app.net/geekanddad - Dad of Geek&Dad
https://alpha.app.net/jonathanjk - John JK Morris
https://alpha.app.net/putuebo - Putu Ebo
https://alpha.app.net/markshead - Mark Shead
https://alpha.app.net/mylocalallergist - mylocalallergist
https://alpha.app.net/seemaali -
https://alpha.app.net/sonhuu - Hà Trần
https://alpha.app.net/rocky_esp - RockyAparicio
https://alpha.app.net/blaqkr - Jesús Vela
https://alpha.app.net/baonb77 -
https://alpha.app.net/moeskido - Maurice Kessler
https://alpha.app.net/reagan - Reagan Knopp
https://alpha.app.net/artglassgiftware -
https://alpha.app.net/whittierdentist1 - Winston Muditajaya
https://alpha.app.net/davecovin2 - Dave Covin
https://alpha.app.net/newzors - LOL Damn
https://alpha.app.net/artemeesti - VRTEW
https://alpha.app.net/bursaaristonservisi - bursa ariston servisi
https://alpha.app.net/yesmar - Ramsey Dow
https://alpha.app.net/peterdeltron - Peter Deltron
https://alpha.app.net/foetoid - Stefan G.
https://alpha.app.net/sftyv1 -
https://alpha.app.net/shujin - Jinny Wong
https://alpha.app.net/vorzeiten - vorzeiten
https://alpha.app.net/itched - Tristan Smith
https://alpha.app.net/monirul861 -
https://alpha.app.net/bachmai - bachmai
https://alpha.app.net/rool - Roland Lang
https://alpha.app.net/fawci77 -
https://alpha.app.net/chenqi248 -
https://alpha.app.net/israelmriddle -
https://alpha.app.net/basso - José Basso
https://alpha.app.net/divinedentalclinic - Dental Surgeon In India
https://alpha.app.net/stevenh512 - Steven Hancock
https://alpha.app.net/partheepan42 - Partheepan
https://alpha.app.net/danycd - Daniel Dingeldey
https://alpha.app.net/faison - Faison
https://alpha.app.net/direcs - direcs
https://alpha.app.net/johnmjchristensen -
https://alpha.app.net/hys - Hys.
https://alpha.app.net/plm - Philippe Lague-Morin
https://alpha.app.net/freeblog - freeblog
https://alpha.app.net/crazy88mma - Crazy 88 MMA
https://alpha.app.net/crazy88bjj - Crazy 88 Mixed Martial Arts
https://alpha.app.net/filipiecadam - Filipiec Adam
https://alpha.app.net/rachelclark450 -
https://alpha.app.net/dubaicosmetic16 - Dubai Cosmetic Surgery
https://alpha.app.net/quwr - quwr
https://alpha.app.net/atozconstruction2014 -
https://alpha.app.net/harin - harin hotmail
https://alpha.app.net/samharman - Sam Harman
https://alpha.app.net/zodiac - zodiac
https://alpha.app.net/spotlessrug1 - Spotless Rug Cleaners
https://alpha.app.net/wpfree4u - WPfree4u - Wordpress Themes | Plugins
https://alpha.app.net/headmaster - Iqbal
https://alpha.app.net/nomadevents - Matt Fisher
https://alpha.app.net/cyber_wizard - cyber-wizard
https://alpha.app.net/8rxv - 固い。
https://alpha.app.net/patuflinx - Christian Garcia
https://alpha.app.net/legendsboxing - Harvey Morgan
https://alpha.app.net/philipb - Philip Boardman
https://alpha.app.net/idwyr - Ekaterina Danilova
https://alpha.app.net/cocoaheadsffm - CocoaHeads Frankfurt
https://alpha.app.net/ferret - Ferret
https://alpha.app.net/kojimajunya - kojimajunya
https://alpha.app.net/schmalzstullen - Schmalzstullenministerium
https://alpha.app.net/kinmundyalma - Chris Pistorius
https://alpha.app.net/pictor - Mike Pictor
https://alpha.app.net/mightykan - Ashkan Farhadtouski
https://alpha.app.net/chiyo - ちょ
https://alpha.app.net/matsimpsk - Mat Simpson
https://alpha.app.net/wilsonzulu - Wilson Zulu
https://alpha.app.net/kerryjablonski - Kerry Jablonski
https://alpha.app.net/atom - Adam Schuster
https://alpha.app.net/calibanatspace - Jochen Bachmann
https://alpha.app.net/peteschust - Peter Schuster
https://alpha.app.net/belal_madkuor - Belal Madkuor
https://alpha.app.net/xson1cx - Michael
https://alpha.app.net/emakalem -
https://alpha.app.net/guatemalagrande - Stefan Schindler
https://alpha.app.net/itsabouttimeedu - It's About Time EDU
https://alpha.app.net/rychuzbychu - Aleksander Ryś
https://alpha.app.net/stacym1105 -
https://alpha.app.net/petegilbert - Pete Gilbert
https://alpha.app.net/joerv727 - Joe Kings
https://alpha.app.net/mindflayer - Mindflayer
https://alpha.app.net/royalamerican -
https://alpha.app.net/amcel9552 - Álvaro Martinez
https://alpha.app.net/leftbanker - Grant Larsson
https://alpha.app.net/dreese - Dan Reese
https://alpha.app.net/splotkin98 - Samantha
https://alpha.app.net/dapaspei - Daniel Pastor
https://alpha.app.net/morrison - Robert Morrison
https://alpha.app.net/bettercrypto - Better Crypto • org
https://alpha.app.net/jericalurve - Jerica Truax
https://alpha.app.net/pilotconway - John Conway
https://alpha.app.net/andrewdmackenzie - Andrew
https://alpha.app.net/fiattogold - Victor
https://alpha.app.net/katze - 亜梨(Allie)
https://alpha.app.net/kinbakukabuki - N. Snyder
https://alpha.app.net/broadcast -
https://alpha.app.net/hurcehs - hurce
https://alpha.app.net/agfa - うーたん
https://alpha.app.net/theanomaster - Kmiilo Trujillo Rodriguez O̲̲̅̅f̲̲̅̅i̲̲̅̅c̲̲̅̅i̲̲̅
https://alpha.app.net/posty0urgirls -
https://alpha.app.net/xbqww222 -
https://alpha.app.net/chaoticbuddhist - Chaotic Buddhist
https://alpha.app.net/rochelleali -
https://alpha.app.net/steavefoster - Steave Foster
https://alpha.app.net/kieron23richards - Kieron Richards
https://alpha.app.net/violetoracle - The Violet Oracle
https://alpha.app.net/webuyanyhome -
https://alpha.app.net/koutyan - こうちゃん
https://alpha.app.net/cragnet - Craig Carroll
https://alpha.app.net/jasminebronte - Jasmine Bronte
https://alpha.app.net/pazaruvane_bg - Pazaruvane.bg агрегатор на всички оферти
https://alpha.app.net/chrisalmond - Chris Almond
https://alpha.app.net/mehtabaalaam - mehtab
https://alpha.app.net/halawani - يــزيــد الـحــلـوانـي
https://alpha.app.net/jackson008mark - 256
https://alpha.app.net/enetfix123 -
https://alpha.app.net/bethanhluan - Blog Du Học
https://alpha.app.net/maa - maa
https://alpha.app.net/podkatz - Podkatz.de
https://alpha.app.net/xepjn888 -
https://alpha.app.net/anasdress - AnasDress
https://alpha.app.net/fcwalthamforest - Abigail Wright
https://alpha.app.net/vwm - Versailles Web Marketing
https://alpha.app.net/fxpublisher - FxPublisher
https://alpha.app.net/javierpa - Javierpa
https://alpha.app.net/jaschiii -
https://alpha.app.net/ursweiss - Urs Weiss
https://alpha.app.net/frankvanexter - Frank van Exter
https://alpha.app.net/bradd3r5 - Brad
https://alpha.app.net/twiredmp3 - twiredmp3
https://alpha.app.net/ddquino -
https://alpha.app.net/binflix - BinFlix
https://alpha.app.net/nelson1sciuto - Nelson Sciuto
https://alpha.app.net/spky - spky
https://alpha.app.net/busybeetasha32 -
https://alpha.app.net/imdownload -
https://alpha.app.net/kcoger - kcoger
https://alpha.app.net/perfectionplumbing - Angela Cyrenne
https://alpha.app.net/crownneonsigns -
https://alpha.app.net/charismaforhair - Kim Cross
https://alpha.app.net/238uuu - 238uuu
https://alpha.app.net/bridgehouse - Bridge House
https://alpha.app.net/libertypestinc - Alta Peng
https://alpha.app.net/greencleancarpet - John Schneider
https://alpha.app.net/iralph - Ralph⌘Pena
https://alpha.app.net/maximizedmktg - Brad Pender
https://alpha.app.net/elstudio - Eric Johnson
https://alpha.app.net/erlawfirm - Will Elam
https://alpha.app.net/dayaire - Dennis Day
https://alpha.app.net/innovfitnesssol - Robert DeVito
https://alpha.app.net/kmlemanski - kmlemanski
https://alpha.app.net/focusonkidspeds - Logan Rojas
https://alpha.app.net/shorshe - Georg Stadler
https://alpha.app.net/yindir - yindir.com
https://alpha.app.net/mameqle - まめくる
https://alpha.app.net/mobileplaceinfo -
https://alpha.app.net/narit -
https://alpha.app.net/cmykai -
https://alpha.app.net/pacsolver - Pacsolver
https://alpha.app.net/anytapopy - Anytapopy
https://alpha.app.net/janwillemswane - Jan-Willem Swane
https://alpha.app.net/maik_wi - Maik Wi
https://alpha.app.net/greghe728 - Greg He
https://alpha.app.net/maikpfingsten - Maik Pfingsten
https://alpha.app.net/laboressolis - びーすと
https://alpha.app.net/id__sub_ - さんきす
https://alpha.app.net/sub_id__ - とるおれ
https://alpha.app.net/disenowebmalaga - DisenoWebMalaga
https://alpha.app.net/futteronkel - futteronkel.de
https://alpha.app.net/acarback - Alice Carback
https://alpha.app.net/bbenedikt - Bene
https://alpha.app.net/mahtiaivo - Severin Stefan Kittl
https://alpha.app.net/lrdsatan - Aaron
https://alpha.app.net/cindysnipes - Cindy Snipes
https://alpha.app.net/erpel - Philipp
https://alpha.app.net/v3rstand - v3rstand
https://alpha.app.net/harqa - Erik Lewerenz
https://alpha.app.net/brian369 - brian walters
https://alpha.app.net/podii24 - Podii24.COM
https://alpha.app.net/clovercleaning - David Fry
https://alpha.app.net/mdjmld - mdjmld
https://alpha.app.net/jemscleaning - Joyce Jones
https://alpha.app.net/uziel - uziel lobo frees
https://alpha.app.net/butchlebo - Butch Lebo
https://alpha.app.net/fear_in_cube - 피아♬
https://alpha.app.net/shot2u - しょっつさん@shot2u
https://alpha.app.net/mohager -
https://alpha.app.net/akeno3 - 紳士の嗜み
https://alpha.app.net/ruu_synthesizer - 瑠兎(るう)
https://alpha.app.net/tranngocbang - Bang Trần
https://alpha.app.net/julieoken -
https://alpha.app.net/eponm - Jack Beal
https://alpha.app.net/csvfj222 -
https://alpha.app.net/steambb - SteamBB Sales
https://alpha.app.net/wadihaali -
https://alpha.app.net/laptophire27 -
https://alpha.app.net/mzapakistani - Muhammad Zaheer Anwar
https://alpha.app.net/safarheart - savarez
https://alpha.app.net/carletonwilson - carleton
https://alpha.app.net/soilman82 - Michael Erdmann
https://alpha.app.net/fu2g - フーガ
https://alpha.app.net/fuga - フーガ
https://alpha.app.net/motofunk - MOTOFUNK Podcast
https://alpha.app.net/inthr33 -
https://alpha.app.net/yonderboy - kid nicarus
https://alpha.app.net/alpha_ - Alpha
https://alpha.app.net/adrienneagatha8 - Dinda Adrienne
https://alpha.app.net/tegra - アルト
https://alpha.app.net/awilkinson - Andy Wilkinson
https://alpha.app.net/bassfamrocks - Keysha Bass
https://alpha.app.net/wxhwy333 -
https://alpha.app.net/srdnathus - Sanjana
https://alpha.app.net/wapole13 -
https://alpha.app.net/markamoayakkabi - Markamo Ayakkabi
https://alpha.app.net/vickywang - VickyWang
https://alpha.app.net/howtobox2 -
https://alpha.app.net/icmcapital - ICM Capital
https://alpha.app.net/exit - Sebastian Basner
https://alpha.app.net/ranflagg - Thomas
https://alpha.app.net/juxreal - Sascha F
https://alpha.app.net/alviracamellia - alvira camellia
https://alpha.app.net/healthyclip - Garry
https://alpha.app.net/nfcnewsco - Satish More
https://alpha.app.net/itatas - itatas
https://alpha.app.net/jacontreras - Jse
https://alpha.app.net/greeniemax - Greenie
https://alpha.app.net/matthias_mader - matthias mader
https://alpha.app.net/jkepler - Joel Swanson
https://alpha.app.net/bayart -
https://alpha.app.net/curvesinth - CurvesDesign
https://alpha.app.net/herzi - herzi
https://alpha.app.net/jgt2net -
https://alpha.app.net/taphocsinh - Tập học sinh Hương Kiến Thành
https://alpha.app.net/gnetzer - Max-Jacob Ost
https://alpha.app.net/daotaoseo - Đào Tạo Seo
https://alpha.app.net/metacortex - Roman Loeser
https://alpha.app.net/barcelonagolf - Barcelona Golf
https://alpha.app.net/merrycleaner - Aneta James
https://alpha.app.net/kap1nek0 - かぴ猫
https://alpha.app.net/ronpan667 -
https://alpha.app.net/lovestats - Annie Pettit
https://alpha.app.net/winningslowly - Winning Slowly
https://alpha.app.net/athensplumbing - AthensPlumbing
https://alpha.app.net/draftsapp - Drafts
https://alpha.app.net/mashaccounting - Vagram Norvan
https://alpha.app.net/robertobrien057 -
https://alpha.app.net/thesummerhaysgroup - Karen Summerhays
https://alpha.app.net/linsbuffetabq -
https://alpha.app.net/tranquilitypoolsnj - Luke Stephens
https://alpha.app.net/leasingkc - David Tiehen
https://alpha.app.net/indiancrestpeds -
https://alpha.app.net/whipcitycleaning -
https://alpha.app.net/scottsauer - Scott Sauer
https://alpha.app.net/pmsf - PMSF IT Consulting
https://alpha.app.net/cdevers - Chris Devers
https://alpha.app.net/bettyrgatesart - bettyrgatesart
https://alpha.app.net/activoseninternet - ActivosenInternet
https://alpha.app.net/classifiedsub - Classified Submissions
https://alpha.app.net/johnsonrv - B Johnson
https://alpha.app.net/truckergrandcet - Kenny Wright
https://alpha.app.net/ainaahmad - Aina Ahmad
https://alpha.app.net/nikodemus - Nick
https://alpha.app.net/rippleweb -
https://alpha.app.net/anhellse - Angel Flores
https://alpha.app.net/mahescho - Matthias Henze
https://alpha.app.net/resultsim - Matthew Kennedy
https://alpha.app.net/seaportauto - Desmond Desrosiers
https://alpha.app.net/brautingi - Viktor
https://alpha.app.net/schor - SchoR
https://alpha.app.net/nerddotis - Dan Wearsch
https://alpha.app.net/jacksmitty - Jeremy Ashburn
https://alpha.app.net/patoperro - patoperro
https://alpha.app.net/mcortinaarpa - ʍลภ૯ℓ 
https://alpha.app.net/gregorybflynn - Gregory Flynn
https://alpha.app.net/dends - Florencia
https://alpha.app.net/therngrhoot - TheRngrHoot
https://alpha.app.net/sister_gd - Glistening Deepwater
https://alpha.app.net/fitnessworks - Fitness Works Trainer Mike
https://alpha.app.net/hyperjeff - Jeff Biggus
https://alpha.app.net/jackbraps -
https://alpha.app.net/povel - Nimyre Cetetol
https://alpha.app.net/metinatc - Metin ATC
https://alpha.app.net/lewiston - ken bavier
https://alpha.app.net/typography - Stephen Coles
https://alpha.app.net/crawford - Alex Crawford
https://alpha.app.net/osakasaul - Saul Fleischman
https://alpha.app.net/lawrencium - Lawrence Rigon
https://alpha.app.net/jonzhan - Jonathan Zhan
https://alpha.app.net/rennerbrienel - rennerbrienel
https://alpha.app.net/newfunnyvideo -
https://alpha.app.net/quocbao -
https://alpha.app.net/pakowitsch - pakowitsch
https://alpha.app.net/ualludy -
https://alpha.app.net/fossilizedcarlos - Carlos E. Barboza
https://alpha.app.net/veldomeshelters -
https://alpha.app.net/ibadeeb - Mohammed M. Badeeb
https://alpha.app.net/melisa89 -
https://alpha.app.net/rcwam33 -
https://alpha.app.net/925gemstonesj - 925 Gemstone Silver Jewelry
https://alpha.app.net/ruben_rrs - Rubén RS
https://alpha.app.net/carsmileonline - Car Smile Hi-Tech Electronics
https://alpha.app.net/pakeha - Philip Renich
https://alpha.app.net/joe_mark_969952 - Joe Mark
https://alpha.app.net/fnfsms - Jhon Smith
https://alpha.app.net/mlehnert - Michael Lehnert
https://alpha.app.net/dentalcareplan2 - Robin K. Pellegrini
https://alpha.app.net/glooming - Ha DooHo
https://alpha.app.net/yaron - Yaron Oaknin
https://alpha.app.net/seoindians - seoindians
https://alpha.app.net/bestcoast - Best Coast
https://alpha.app.net/babycave - Babycave
https://alpha.app.net/nestacertification1 -
https://alpha.app.net/jasondavy86 - Jason Davy
https://alpha.app.net/omabr22 -
https://alpha.app.net/sam_middlehurst_37 - Sam Middlehurst
https://alpha.app.net/alonsoq_rma - سلمان البتال
https://alpha.app.net/p8 - usb3.14
https://alpha.app.net/birthdayreturngifts - birthdayreturngifts
https://alpha.app.net/candidwriter - Candid Writer
https://alpha.app.net/baedermax - Baedermax
https://alpha.app.net/kiki - Kiki Thaerigen
https://alpha.app.net/hchwindowsndoors - Heng Chye Huat Metal Works
https://alpha.app.net/laurabuto -
https://alpha.app.net/omabr11 -
https://alpha.app.net/caseadvanceloans - Caseadvance
https://alpha.app.net/tizian - Tizian
https://alpha.app.net/akirakujo - 九条晶
https://alpha.app.net/pluralog - Jona Hölderle
https://alpha.app.net/technicalsupport -
https://alpha.app.net/tya_ardl - Tya Yoan Ardilaa
https://alpha.app.net/ntgm - 夏神蒼
https://alpha.app.net/johnjenkins419 - John
https://alpha.app.net/crow74 - Theo
https://alpha.app.net/takenoko -
https://alpha.app.net/umazura - umazura
https://alpha.app.net/hsrdallas - Hsrdallas
https://alpha.app.net/alper - Alper Cugun
https://alpha.app.net/9n - monno
https://alpha.app.net/fz_juelich - Forschungszentrum Jülich
https://alpha.app.net/tonypan664 - Justin
https://alpha.app.net/usacigs - usacigs
https://alpha.app.net/sumiya - sumiya
https://alpha.app.net/sourcebrkgdi - Steve Crowe
https://alpha.app.net/oyunlaroyna - oyunlar oyna
https://alpha.app.net/getfreedom - Mike Donaldson
https://alpha.app.net/mytechbuz - MyTechBuzz
https://alpha.app.net/tipsytotes - Ursula Bettendorf
https://alpha.app.net/karenduff - Karen Duff
https://alpha.app.net/fcredbridge - Michael Sheen
https://alpha.app.net/wicksteedworks - Wicksteed Works
https://alpha.app.net/windowtintinglansing - John Williams
https://alpha.app.net/rabbweb - rabbweb
https://alpha.app.net/seamlessgutters - Affordable Seamless Gutters
https://alpha.app.net/abqimageproduct - Kelly Martinez
https://alpha.app.net/allurewt - Jon Snow
https://alpha.app.net/ryankarolak - Ryan Karolak
https://alpha.app.net/nansblossomshop -
https://alpha.app.net/gapmtndrilling -
https://alpha.app.net/fcleanershounslow - Fast Cleaners Hounslow
https://alpha.app.net/emersunn - Paul Emerson
https://alpha.app.net/atjamie - Jamie Young
https://alpha.app.net/interviewssocial -
https://alpha.app.net/cocoaheadsmuc - Cocoaheads Munich
https://alpha.app.net/guiderightgroup - guiderightgroup
https://alpha.app.net/satyaspeaks - Satya Nadella
https://alpha.app.net/vinaychoudhary1 - Vinay Choudhary
https://alpha.app.net/phranck - cocoa:naut 
https://alpha.app.net/kennedeinerechte - RA Jörg Sticher
https://alpha.app.net/downloada2z - download
https://alpha.app.net/wilbur - Benjamin Wilbur
https://alpha.app.net/abraham - Abraham Williams
https://alpha.app.net/fnordkorea - master of fnordkorea
https://alpha.app.net/fjgargu - Javier García
https://alpha.app.net/madmas - Markus
https://alpha.app.net/bgpmaintenance - B&G.Property Maintenance
https://alpha.app.net/aptgetupdatede - aptgetupdateDE
https://alpha.app.net/stephenwashburn - Stephen Washburn
https://alpha.app.net/deluks - Lukas
https://alpha.app.net/sandyz55 - ROTH Sandro
https://alpha.app.net/psionmark - Mark Avey
https://alpha.app.net/gvantassle - Geordon VanTassle
https://alpha.app.net/jbfriedrich - Jason
https://alpha.app.net/kerenmichelle0407 - Keren Michelle
https://alpha.app.net/critsi -
https://alpha.app.net/makmaksan - Markus Dziabel
https://alpha.app.net/lightpassenger - Paul Benson
https://alpha.app.net/worldpeacepossible -
https://alpha.app.net/ahmedn079 -
https://alpha.app.net/jobs649 - Jobs649
https://alpha.app.net/wahabmehmood - wahab
https://alpha.app.net/roeeyheeym - roeeyheeym
https://alpha.app.net/plinkapp - Plink
https://alpha.app.net/sidoneill - Sid O'Neill
https://alpha.app.net/77nervous - ✿りこ
https://alpha.app.net/bamajr - Bamajr
https://alpha.app.net/alett - alett
https://alpha.app.net/eliajf - Elia Freedman
https://alpha.app.net/bobcandice2014 - Candicci's Restaurant and Bar
https://alpha.app.net/thejoshmeister - the JoshMeister
https://alpha.app.net/ry5n - Ryan Frederick
https://alpha.app.net/mokha - mokh akh
https://alpha.app.net/obadiah - Obadiah
https://alpha.app.net/chinastockresearch -
https://alpha.app.net/obace -
https://alpha.app.net/keyboardmaestro - Keyboard Maestro
https://alpha.app.net/artinsurance - Art Insurance
https://alpha.app.net/vthink_dev3 -
https://alpha.app.net/georgesdira - George Smith
https://alpha.app.net/9u - teslamint
https://alpha.app.net/christmasgiftideas - christmas gift ideas
https://alpha.app.net/deltaware - deltaware
https://alpha.app.net/xapww33 -
https://alpha.app.net/blacky284 - René Hanisch
https://alpha.app.net/cyberkalle - Cyberkalle
https://alpha.app.net/chilli_12 -
https://alpha.app.net/steven423 - Steven Galanis
https://alpha.app.net/zulfikarfazri - Zulfikar Fazri
https://alpha.app.net/yukkuri_sinai - ゆっくりしない
https://alpha.app.net/ftellesson -
https://alpha.app.net/uzkrk22 -
https://alpha.app.net/mkalmes - Marc Kalmes
https://alpha.app.net/duyanh156 -
https://alpha.app.net/findyourrooms - Find Your Rooms
https://alpha.app.net/havaperdesi - hava perdesi
https://alpha.app.net/moejoe - Jonas
https://alpha.app.net/96dpi - Andreas Levers
https://alpha.app.net/skynet_shaun - skynet_shaun
https://alpha.app.net/santadir -
https://alpha.app.net/kalkar -
https://alpha.app.net/aaqil - Aaqil Mahmood
https://alpha.app.net/teckel - Thorsten Teckenburg
https://alpha.app.net/anderson123mok - Mok Anderson
https://alpha.app.net/vacationnow - Vacation Now
https://alpha.app.net/ukashstandi - Ukash Kart Satın Alma
https://alpha.app.net/dmitri99 - Dmitri99
https://alpha.app.net/swearmachine - Rubber Fulck
https://alpha.app.net/myroona -
https://alpha.app.net/diva7 - diva
https://alpha.app.net/model540 -
https://alpha.app.net/canahan - Michael Beck
https://alpha.app.net/tanialobony - Sarna Lotika
https://alpha.app.net/topcommercial05 - Top Commercial Cleaning London
https://alpha.app.net/johannn - Johann
https://alpha.app.net/adamgilchristt1 - Adam Gilchrist
https://alpha.app.net/niemalsnever - niemalsnever
https://alpha.app.net/edgellj - Jeremy Edgell
https://alpha.app.net/juergen97 - Jürgen
https://alpha.app.net/zweifish - Frank
https://alpha.app.net/redapemedia - Ryan Connolly
https://alpha.app.net/bnilondonuk - Clwyd Probert
https://alpha.app.net/yprod - yProd
https://alpha.app.net/ivantsoch - Fast Limo Hire
https://alpha.app.net/bea12346 - bea
https://alpha.app.net/greatbraps - greatbraps
https://alpha.app.net/yonshiki - YONSHIKI
https://alpha.app.net/marcd - MarcD
https://alpha.app.net/higuti_yuizi - 樋口 結慈
https://alpha.app.net/zkazi - Zaiful Kazi
https://alpha.app.net/objcio - objc.io
https://alpha.app.net/nextupnetwork -
https://alpha.app.net/abfloorcare1 - Mike Risinger
https://alpha.app.net/sgkhomesolution - Vladimir Merabian
https://alpha.app.net/subjectseduction -
https://alpha.app.net/pthudson -
https://alpha.app.net/jemmy1212 -
https://alpha.app.net/shcdenver - Madalyn Oconnell
https://alpha.app.net/caigerandcocatering - Alix Caiger
https://alpha.app.net/choicecareercol - Mike Latone
https://alpha.app.net/camrymobilhybrid - Camry Mobil Hybrid Terbaik Indonesia
https://alpha.app.net/joshjones - Josh Jones
https://alpha.app.net/hlinesoft -
https://alpha.app.net/vis7mac - Lukas Bestle
https://alpha.app.net/jahkeup - Jacob Vallejo
https://alpha.app.net/regalpaintingtn - Ken Turner
https://alpha.app.net/rbsmn -
https://alpha.app.net/matrda - Matheus
https://alpha.app.net/idtus - Matt Wynan
https://alpha.app.net/rimbakita - Chandra Haekal
https://alpha.app.net/6yu8 - 飛翔体リュウヤ☆〜(ゝ。∂)
https://alpha.app.net/kalapanaenterprises - James Davila
https://alpha.app.net/azbarryw - Barry Warren
https://alpha.app.net/apkapplications - APk Android Applications
https://alpha.app.net/houseofcarsandcycles - Tim Kirk
https://alpha.app.net/golfetchhi - Golf Etc.
https://alpha.app.net/asiabalitour - Asia Bali Tour
https://alpha.app.net/asiergmorato - Asier García Morato
https://alpha.app.net/gaho - Carlos Filho
https://alpha.app.net/ethansisson - Ethan Sisson
https://alpha.app.net/benrope -
https://alpha.app.net/tobu - ToeBoo
https://alpha.app.net/swhitley - Shannon Whitley
https://alpha.app.net/eai - Eai
https://alpha.app.net/keno31o - horikenjiro
https://alpha.app.net/rabbitcare -
https://alpha.app.net/champreview - Brent Hayes
https://alpha.app.net/uheyes -
https://alpha.app.net/abdulrhman - عبدالرحمن
https://alpha.app.net/sloom - Abdulsalam
https://alpha.app.net/johnmikii0 - BossWallpapers
https://alpha.app.net/picoriveradentist1 -
https://alpha.app.net/bipnil -
https://alpha.app.net/braulio_rico - Braulio Rico
https://alpha.app.net/diginanchors2 - Mike Grady
https://alpha.app.net/hmsk - Kengo Hamasaki
https://alpha.app.net/gonzoboyzz - Gonzo Boyz
https://alpha.app.net/macbookmii -
https://alpha.app.net/forteleaf - leaf
https://alpha.app.net/osymar - OsyMar
https://alpha.app.net/cw0933 - Carrie
https://alpha.app.net/hangnhi - Hằng Nhi
https://alpha.app.net/epanne - Eric
https://alpha.app.net/benoit - Benoit
https://alpha.app.net/hose_a - Jose Agustin Rodriguez
https://alpha.app.net/seosingapore0 - Seo Singapore
https://alpha.app.net/weezerle - weezerle
https://alpha.app.net/missmookiedotcom - Mookie
https://alpha.app.net/mjasinski - Markus Jasinski
https://alpha.app.net/puyo99 - ぷよくく
https://alpha.app.net/hagemasa_i - masanobu inaoka
https://alpha.app.net/artkiver - grェ
https://alpha.app.net/velohome - Velohome
https://alpha.app.net/msenterprises1 - Michael Salvatore
https://alpha.app.net/n_to - Ben
https://alpha.app.net/jtnadams - Jonathan Adams
https://alpha.app.net/bennim - benny Nimmerrichter
https://alpha.app.net/britechhvac - Brian Picklesimer
https://alpha.app.net/kiyote23 - Peter Birk
https://alpha.app.net/resy - れすふぉん
https://alpha.app.net/6d - rodemon
https://alpha.app.net/lca -
https://alpha.app.net/gglnx - Dennis Morhardt
https://alpha.app.net/_maburu_ - _maburu_
https://alpha.app.net/retrozirkel - Retrozirkel
https://alpha.app.net/bojan_milic_antibiro - Bojan Milic Antibiro.com
https://alpha.app.net/bishopthom - Thom Skrtich
https://alpha.app.net/solipsistic - solipsistic NATION
https://alpha.app.net/roblen - Robert Lender
https://alpha.app.net/rapoteam - rapoteam
https://alpha.app.net/dustinslade - Dustin Slade
https://alpha.app.net/brxkenwxngz - Stormie
https://alpha.app.net/burnus - Burnus
https://alpha.app.net/stefp - Stephen Pieper
https://alpha.app.net/ngstaq - ながせ拓
https://alpha.app.net/antoniovelardo - Antonio Velardo
https://alpha.app.net/jaronrayhinds - djjaron
https://alpha.app.net/timgraph - ■
https://alpha.app.net/lukei4655 - Br. Gabriel Mosher, O.P.
https://alpha.app.net/kevinbehringer - Kevin Behringer
https://alpha.app.net/gmmadvertising2 -
https://alpha.app.net/cnst - Constantine A. M.
https://alpha.app.net/shahad12 - Shahad
https://alpha.app.net/klen - くれん
https://alpha.app.net/atopy - 小指だけアトピー
https://alpha.app.net/emigdioseoclic -
https://alpha.app.net/noahread - Noah Read
https://alpha.app.net/skematika - Grids and Maps Guy
https://alpha.app.net/muabancanho -
https://alpha.app.net/ohpsarmut - M.Yusuf
https://alpha.app.net/insensible31 - Sangmin Ko
https://alpha.app.net/filjedi - Ramon Pastor
https://alpha.app.net/ela_cosme - Ela Cosme
https://alpha.app.net/aaichigo_kurosaki - Wartune Addictus
https://alpha.app.net/cleanupservices1 - Eric Clark
https://alpha.app.net/pratikatlanta -
https://alpha.app.net/boxno1 -
https://alpha.app.net/fielinebag - www.macmakeuponsale.com
https://alpha.app.net/finanzcheck24info - Andrea Anops
https://alpha.app.net/jakob010899 - jakob krebs
https://alpha.app.net/gwup - gwup | die skeptiker
https://alpha.app.net/crox_ws -
https://alpha.app.net/komy -
https://alpha.app.net/kristelobando - Kristel Obando
https://alpha.app.net/esev - Sev
https://alpha.app.net/inferis - Tom Adriaenssen
https://alpha.app.net/theproserve1 - Jason Geiman
https://alpha.app.net/marriott - Enterprises
https://alpha.app.net/aoaj_007 - Anthon Ondray Adrian Jackman
https://alpha.app.net/teeteel - vahid ezati
https://alpha.app.net/fallenbeck - Niels Fallenbeck
https://alpha.app.net/infoloker -
https://alpha.app.net/zingzongninh -
https://alpha.app.net/ciscojo - Ray Jo
https://alpha.app.net/oxyscrub1 - Len Lorenz
https://alpha.app.net/mystia - mystia
https://alpha.app.net/haikumages - haikumages
https://alpha.app.net/dottorblaster - Alessio Biancalana
https://alpha.app.net/gnn - GNN
https://alpha.app.net/zephyr - J
https://alpha.app.net/james_riley_smith -
https://alpha.app.net/nitramred - Martin Fischer
https://alpha.app.net/phantomcircuit - Phantom Circuit
https://alpha.app.net/7677money -
https://alpha.app.net/futureonmars - Jörg Müller
https://alpha.app.net/aya_tests - @ericd's tests account
https://alpha.app.net/robertcorymartin - Robert Cory Martin
https://alpha.app.net/jm3 - John Manoogian III
https://alpha.app.net/christofferchristie - Christoffer
https://alpha.app.net/madhurdutta - Madhur Dutta
https://alpha.app.net/scotty - Steve Scott (Scotty)
https://alpha.app.net/diljot_chrome - Diljot Garcha's Chrome Extensions
https://alpha.app.net/saira9765 -
https://alpha.app.net/distractedgents - The League of Easily Distracted Gentlemen
https://alpha.app.net/thepianomanju - Julian
https://alpha.app.net/abotlal - abotlal
https://alpha.app.net/mickyroth - mickyroth
https://alpha.app.net/sosa - Sarah
https://alpha.app.net/bjango - Bjango
https://alpha.app.net/willie - Willie Abrams
https://alpha.app.net/biggie - Brandon Moore
https://alpha.app.net/gggib66 -
https://alpha.app.net/mic2mic - Reggie
https://alpha.app.net/kalrarealtors -
https://alpha.app.net/sgmodelescorts - SG Models Escorts
https://alpha.app.net/thasto -
https://alpha.app.net/electricianschool - Electrician School
https://alpha.app.net/marysmithe -
https://alpha.app.net/batal26 - Manuel
https://alpha.app.net/harisharma - Hari Sharma
https://alpha.app.net/annhauritz - annhauritz
https://alpha.app.net/xpertmsg -
https://alpha.app.net/anycar1 - Anycar Viet Nam
https://alpha.app.net/tmkv - Сергей Тумаков
https://alpha.app.net/nirvastares - nirva stares
https://alpha.app.net/iyilp44 -
https://alpha.app.net/sahucommodity - deepak sahu
https://alpha.app.net/kotyan - Kotyan
https://alpha.app.net/wettwarn - WettWarn
https://alpha.app.net/lasiksurgeryhi2 -
https://alpha.app.net/fibreopticscable - Fibre Optics Cable
https://alpha.app.net/moving_blog - www.rentingamovingtruck.com
https://alpha.app.net/a7 - あいむ
https://alpha.app.net/oxpas66 -
https://alpha.app.net/jamespiky - James Piky
https://alpha.app.net/sjones1210 - Samuel Jones
https://alpha.app.net/johansmith - johan smith
https://alpha.app.net/darlingling - Momo
https://alpha.app.net/tattudaniel - tattudaniel
https://alpha.app.net/denial - denial
https://alpha.app.net/7nrc - るびー
https://alpha.app.net/seocu - Kenan Gultekin
https://alpha.app.net/duece - chris
https://alpha.app.net/jamesavotina - James Avotina
https://alpha.app.net/pori123 - Piotr
https://alpha.app.net/sitsa - Sit-sa
https://alpha.app.net/bagazoid -
https://alpha.app.net/dermartn - dermartn
https://alpha.app.net/traiphong1979 - speedtoiw
https://alpha.app.net/mac_martini_9 - Mac Martini
https://alpha.app.net/chrisbentbooks -
https://alpha.app.net/hidalgobrothers - Patricia Hidalgo
https://alpha.app.net/smrtmarketing - Corey Sutherland
https://alpha.app.net/xtrememotorsindy - Brandon Heck
https://alpha.app.net/rolandish - Rolandish
https://alpha.app.net/roweappraisalgroup - Paul Rowe
https://alpha.app.net/sycamoretemecula - Sycamore Terrace
https://alpha.app.net/ipaul666 - Paulus Binsar
https://alpha.app.net/martinjcooper - Martin J. Cooper
https://alpha.app.net/pastrunho - Andrea Patruno
https://alpha.app.net/marciorocon - Empresas.Domains
https://alpha.app.net/sfringer - Scott Fringer
https://alpha.app.net/opaquescythe - Red
https://alpha.app.net/isbsh - ish bsh
https://alpha.app.net/ocean0220 - magiccat lee
https://alpha.app.net/mnl - Maximilian Litteral
https://alpha.app.net/eglobalsystems - parikshit jaiswal
https://alpha.app.net/ymxbyyellowman - YMX By YellowMan
https://alpha.app.net/jamiehooper - Jamie Hooper
https://alpha.app.net/ziola1039 - Andrew Ziola
https://alpha.app.net/bardamu - Ferdinand Bardamu
https://alpha.app.net/masbusto - Como Aumentar El Busto
https://alpha.app.net/thetj - theTJ
https://alpha.app.net/neuroatl - Mary Ann Luckett
https://alpha.app.net/fusionupload - Fusion Data
https://alpha.app.net/moproworker - Mopro Worker
https://alpha.app.net/coastcleaning - Rossi Lagrand
https://alpha.app.net/mertce - mertce
https://alpha.app.net/sarajames -
https://alpha.app.net/dtb777 - Mike
https://alpha.app.net/gcluley - Graham Cluley
https://alpha.app.net/backstitch - backstitch
https://alpha.app.net/kamika - René Sasse
https://alpha.app.net/mwanahabari - Andy
https://alpha.app.net/justex07 - Justin Scott
https://alpha.app.net/matt_remorino - Matt Remorino
https://alpha.app.net/iknorry - Jochen Pütter
https://alpha.app.net/supersalesdiscount - www.SuperSalesDiscount.com
https://alpha.app.net/joelw - Joel Weeks
https://alpha.app.net/alan4tv - amgad
https://alpha.app.net/peanet - Rodolfo Abraham Arrayago Conde
https://alpha.app.net/californiadreamin - CaliforniaDreamin
https://alpha.app.net/sj_barlament - S.J. Barlament
https://alpha.app.net/zaccoffman - Zac Coffman
https://alpha.app.net/mikebeas - Mike Beasley
https://alpha.app.net/kylesethgray - Kyle Gray
https://alpha.app.net/xychf55 -
https://alpha.app.net/ismifh - imi
https://alpha.app.net/devipirts - Devi Pirtskhalaishvili
https://alpha.app.net/markng - Mark Ng
https://alpha.app.net/shahd - Shahd Q
https://alpha.app.net/mississauga12 - seo company mississauga
https://alpha.app.net/lixfo55 -
https://alpha.app.net/patentservicesusa - patentservicesusa
https://alpha.app.net/gohfi - Marco
https://alpha.app.net/alayron - alayron
https://alpha.app.net/asksanjeev - Ask Sanjeev
https://alpha.app.net/domzon - DomZon
https://alpha.app.net/bell_staymen - Bell_Staymen
https://alpha.app.net/jnastyy - jnastyy
https://alpha.app.net/sakej55 -
https://alpha.app.net/kirbydavy5 - Kirby Davy
https://alpha.app.net/secrethotels - Secret Hotels
https://alpha.app.net/halifone - Halifone
https://alpha.app.net/hoangpvng -
https://alpha.app.net/secretsgolf -
https://alpha.app.net/daslogos - Das tägliche Logos
https://alpha.app.net/jakobd - Jakob Dorn
https://alpha.app.net/justgemstone - Ashu Agarwal
https://alpha.app.net/walkinformation - Shilpi Kumari
https://alpha.app.net/dadass77 - furkan
https://alpha.app.net/ootb - Out of the blue KG
https://alpha.app.net/temitayominnaar -
https://alpha.app.net/godstreaming - godstreaming
https://alpha.app.net/ku41i - くしい
https://alpha.app.net/omnomnom - Xabi
https://alpha.app.net/cwennrich - Christian Wennrich
https://alpha.app.net/ynot - Tony Giunta
https://alpha.app.net/traveltogroup - Travel to Group
https://alpha.app.net/s_nny - Alexander W.
https://alpha.app.net/crawleydentist -
https://alpha.app.net/windstorm - windstorm
https://alpha.app.net/johnselnaes - John Selnaes
https://alpha.app.net/mediprosolutions - Honor Kennedy
https://alpha.app.net/stonerl - Toni
https://alpha.app.net/ermawchang - erma chang
https://alpha.app.net/ibrahim_ - ibrahim
https://alpha.app.net/thejewelrylove - The Jewelry Love
https://alpha.app.net/fletcherchrysler - Brad Joiner
https://alpha.app.net/totaltclinicca - John Alexander
https://alpha.app.net/orionp - Orion Protonentis
https://alpha.app.net/whakkee - Marga Keuvelaar
https://alpha.app.net/userworthymedia - Tommy Linsley
https://alpha.app.net/wickerworks - Wacky Brown
https://alpha.app.net/sandrap -
https://alpha.app.net/needactionfast - Terry Williams
https://alpha.app.net/yamazaq - zaq
https://alpha.app.net/trailers4less -
https://alpha.app.net/sagdusmir - Jens Michlo
https://alpha.app.net/catty_12 -
https://alpha.app.net/surreyfiresystems - Trevor Kemp
https://alpha.app.net/ambercare - Vonda Cheney
https://alpha.app.net/zenithon - Justin
https://alpha.app.net/schaeferautomotive - Ben Schaefer
https://alpha.app.net/samuelgiglione - Sam Drew Mallete
https://alpha.app.net/hmpffff - Hmpffff
https://alpha.app.net/chicora - Rod Smith
https://alpha.app.net/homfortiver2 - Janet Chambers
https://alpha.app.net/jonnyair - JonnyaiR
https://alpha.app.net/erika_thomson_3152 - Erika Thomson
https://alpha.app.net/ifred - Fredrick Saupe
https://alpha.app.net/rehan_fariz - Rehan
https://alpha.app.net/popus - Popus.Org
https://alpha.app.net/snafoo - Snafoo
https://alpha.app.net/krosenbluth - Kyle Rosenbluth
https://alpha.app.net/mrminimalism - Brett Turley
https://alpha.app.net/svmadvanced -
https://alpha.app.net/joetroyer - Joe Troyer
https://alpha.app.net/mahfut - MAHFUT
https://alpha.app.net/pjinter - pjinter
https://alpha.app.net/muhammads - Muhammad
https://alpha.app.net/joewatson752 - Joe Watson
https://alpha.app.net/matthewdgilpin -
https://alpha.app.net/myblogthemes - myblogthemes
https://alpha.app.net/volkanikol -
https://alpha.app.net/catchj - Catch-J
https://alpha.app.net/tonyandrewmeyer - Tony Meyer
https://alpha.app.net/juliemot -
https://alpha.app.net/scottnjgrant -
https://alpha.app.net/profeteinkkey - Profete inKKey
https://alpha.app.net/rjo - Robert Olivier
https://alpha.app.net/lanno -
https://alpha.app.net/magicfortune - Luke Eischen
https://alpha.app.net/stayathomeeconomics - Lauren
https://alpha.app.net/christtwag - Christ Twag
https://alpha.app.net/chartier - David Chartier
https://alpha.app.net/yoshiy - yoshi desu
https://alpha.app.net/seilers - Stefan Eilers
https://alpha.app.net/zlatoust - vsetut.ru
https://alpha.app.net/blackhatspot - Black hat seo
https://alpha.app.net/mandylicious -
https://alpha.app.net/footybetter - Mark Hughes
https://alpha.app.net/maiku2 - Maik Arink
https://alpha.app.net/hxx521 -
https://alpha.app.net/costin_caraion - yogi_dpblog
https://alpha.app.net/yogit_ro - yogi_dpblog
https://alpha.app.net/henrydesouza -
https://alpha.app.net/grqev11 -
https://alpha.app.net/kingthieugia -
https://alpha.app.net/paulsmith03 - Paul Smith
https://alpha.app.net/gubiq - Björn Seifert
https://alpha.app.net/pacey - Florian Beisel
https://alpha.app.net/kieuanhdao - Kiều Ánh Đào
https://alpha.app.net/es560 - es560
https://alpha.app.net/mark83 - Mark
https://alpha.app.net/sendrakhi12 - Ramesh Misra
https://alpha.app.net/ajuvo - Stephan ajuvo aka Ultrafresh
https://alpha.app.net/licorice - Ehsan
https://alpha.app.net/propnix - Propnix Advisory Pvt Ltd
https://alpha.app.net/endikaren_etxea - Endika Perez Garcia
https://alpha.app.net/carmina - Carmina
https://alpha.app.net/gomesakira - Samantha Gomes
https://alpha.app.net/jal_pari - Jal Pari
https://alpha.app.net/trendoloji - trendoloji
https://alpha.app.net/confindustriafirenze - Confindustria Firenze
https://alpha.app.net/nhat - Nhat
https://alpha.app.net/vinilo_iptt - Jonnhy Garcia
https://alpha.app.net/smiddi - smiddi
https://alpha.app.net/orrumar - Mario Orru
https://alpha.app.net/miqueltiburon - Miquel Tiburon
https://alpha.app.net/elch - elch
https://alpha.app.net/victoria_kamerzell - Victoria Kamerzell
https://alpha.app.net/carlosrivero - Carlos
https://alpha.app.net/seiz - zıəs uɐɟəʇs
https://alpha.app.net/mhi - むしとり
https://alpha.app.net/dubaiblooms - Dubai Blooms
https://alpha.app.net/ayn - Andrew Ng
https://alpha.app.net/webventil - webventil
https://alpha.app.net/sethdill - Seth Dillingham
https://alpha.app.net/1reputation - D Wendal Attig
https://alpha.app.net/provokeart - Provoke Art Dana Blickensderfer, American Painter
https://alpha.app.net/b2creviews - Jason Stovall
https://alpha.app.net/drdavisnguyen - Davis Nguyen
https://alpha.app.net/castellani - brian castellani
https://alpha.app.net/ntethelelo_moroka - Ntethelelo Moroka
https://alpha.app.net/corneliahale25 - Lou Odagiri
https://alpha.app.net/mattweidnerlaw -
https://alpha.app.net/kidsonly -
https://alpha.app.net/vale - Valentin Olpp
https://alpha.app.net/duraholdrp -
https://alpha.app.net/onlyrp -
https://alpha.app.net/einsatzverwaltung - Einsatzverwaltung
https://alpha.app.net/nichagan - Nic Hagan
https://alpha.app.net/phoneboyspeaks - PhoneBoy Speaks
https://alpha.app.net/aimlockandsafe - Aim Lock & Safe Ltd.
https://alpha.app.net/feedpress - FeedPress
https://alpha.app.net/steverueck - Steve Rückwardt
https://alpha.app.net/showmethe - Jason Davenport
https://alpha.app.net/jinn - なまはげ氏
https://alpha.app.net/abrodeur - Andre Brodeur
https://alpha.app.net/scottpierce - Scott Pierce
https://alpha.app.net/leetran -
https://alpha.app.net/iamsorry_ho - Ngọc Thắng
https://alpha.app.net/julimarko -
https://alpha.app.net/bradlakin - Brad Lakin
https://alpha.app.net/davpope - David Pope
https://alpha.app.net/uxbvl44 -
https://alpha.app.net/sim3gchoipad - http://www.sim3gvina.com
https://alpha.app.net/zeroo_lelouche - Adil Kassmi
https://alpha.app.net/tarkan - Tarkan Tekdemirkoparan
https://alpha.app.net/luisleon - Luis León
https://alpha.app.net/aaikl33 -
https://alpha.app.net/chi_3141 - ちー
https://alpha.app.net/canhosaigon - canhosaigon
https://alpha.app.net/kiarafernandes - Kiarafernandes
https://alpha.app.net/lovisasmith_088 - Lovisa.smith088
https://alpha.app.net/meltingelements - melting elements
https://alpha.app.net/marrabbit - MarchRabbit
https://alpha.app.net/4cupcoffeemaker - 4 Cup Coffee Maker Reviews
https://alpha.app.net/sbranch -
https://alpha.app.net/joturl - Joturl
https://alpha.app.net/maryrose191 -
https://alpha.app.net/rentimac -
https://alpha.app.net/odd1n - Ivan Vodchenko
https://alpha.app.net/demae - demae
https://alpha.app.net/pakseoexpert1 -
https://alpha.app.net/mls_87 - Manuel López
https://alpha.app.net/enlightenedapps - EnlightenedApps
https://alpha.app.net/trackable -
https://alpha.app.net/scottgrdn82 - Scott Gordon
https://alpha.app.net/dand009 - surachat
https://alpha.app.net/greeknews - Greek news - Ελληνικά νέα
https://alpha.app.net/datarecoverycoupons - Data Recovery Software Coupons
https://alpha.app.net/stefanwillens - SteffanWillens
https://alpha.app.net/martinopia - Martin Müller
https://alpha.app.net/sschndler - Sven Schindler
https://alpha.app.net/basetta - Patrick Martini
https://alpha.app.net/istebuayakkabi - İşte Bu ayakkabı
https://alpha.app.net/donparr - Don Parr
https://alpha.app.net/iservemusic - iServe Music
https://alpha.app.net/miamiinstitutefl - Steve Watson
https://alpha.app.net/getumer87 -
https://alpha.app.net/webi - 웹아이
https://alpha.app.net/elgordo99 - Gord Smith
https://alpha.app.net/fmisle - Faisal Misle
https://alpha.app.net/sierra_k_samuel - Sierra Samuel
https://alpha.app.net/andikaputra803 -
https://alpha.app.net/graysconsulting - Charlie Gray
https://alpha.app.net/buckettrucks - Roland Fumasi
https://alpha.app.net/spiritpaddleau - Alan Fernandes
https://alpha.app.net/takitom -
https://alpha.app.net/actorsreporter - ActorsReporter
https://alpha.app.net/materron - Miguel Angel Terrón Bote
https://alpha.app.net/pdeinselen - Paul
https://alpha.app.net/sommteck - sommteck
https://alpha.app.net/caribbeandays - Lisa Ayotte
https://alpha.app.net/spidercam - Cameron Morgan
https://alpha.app.net/volven - volven
https://alpha.app.net/eris - Harald Leithner
https://alpha.app.net/arborcreekdental - Jason Knag
https://alpha.app.net/revictoriabc - Richard Cummings
https://alpha.app.net/tricycle -
https://alpha.app.net/page1inetmktg - John Elliott
https://alpha.app.net/avis327 - harsha deep
https://alpha.app.net/knasecurity - Wayne Wright
https://alpha.app.net/crish - Chris Marry
https://alpha.app.net/cashflowmojosw - Sandra Simmons
https://alpha.app.net/dreamtimecreations -
https://alpha.app.net/bluee758 -
https://alpha.app.net/hbhanot - Harry Bhanot
https://alpha.app.net/pdrtool - John Kallenbach
https://alpha.app.net/taestell - Travis Estell
https://alpha.app.net/parkinglotservices - ParkingLotServices
https://alpha.app.net/drkentdavis - DrKentDavis
https://alpha.app.net/x34dash - Andreas
https://alpha.app.net/aaforeign - Jason Aaforeign
https://alpha.app.net/harlaninsurance - Cayla Dupont
https://alpha.app.net/tonyr - Tony Ramos
https://alpha.app.net/stepri - Steven
https://alpha.app.net/armshousegadahfii - ARMSHOUSE GADAHFII
https://alpha.app.net/lindadgross - Linda Gorss
https://alpha.app.net/iconservicestx - Kimberly Morlen
https://alpha.app.net/herhaircompany - Erick Armstrong
https://alpha.app.net/jhubball - Josh Hubball
https://alpha.app.net/tfenterprises - Trey Waggoner
https://alpha.app.net/simplecrypt - SimpleCrypt
https://alpha.app.net/manecogomes -
https://alpha.app.net/dyer - Matt Dyer
https://alpha.app.net/stephan_werschkull - Stephan Werschkull
https://alpha.app.net/barbara_r_blythe_1 - Barbara R. Blythe
https://alpha.app.net/garylee2000 - 凉开水
https://alpha.app.net/vyan_usb - Ahmadsovyan ThemufiidBand UnseparatedBlood
https://alpha.app.net/danieljztaylor -
https://alpha.app.net/deepsubwarrior - Toby D Sanchez
https://alpha.app.net/pulautidungceria - PulauTidung
https://alpha.app.net/cshnider - Chuck Shnider
https://alpha.app.net/mexamer -
https://alpha.app.net/socialideasg -
https://alpha.app.net/scottlindstrom - AskScottLindstrom
https://alpha.app.net/greenbird - elise bowen
https://alpha.app.net/luanpereira -
https://alpha.app.net/entrancezone - Entrancezone
https://alpha.app.net/leaupro - Leau Pro
https://alpha.app.net/cheapestremoval -
https://alpha.app.net/ideerepas - imane
https://alpha.app.net/columbia19 - Columbia19
https://alpha.app.net/bbkdsport -
https://alpha.app.net/couponzclub - CouponZClub
https://alpha.app.net/dongphucth -
https://alpha.app.net/jacoby - Jacoby Young
https://alpha.app.net/stone86 - Giàng A Tủn
https://alpha.app.net/andreasmischke - Andreas Mischke
https://alpha.app.net/hotelsbusselton -
https://alpha.app.net/ericescolero - Eric
https://alpha.app.net/phlebotomyadvisor1 - Salvador Cotton
https://alpha.app.net/networldsolutions - Net World Solutions
https://alpha.app.net/aokids23 - Active Outdoor Kids
https://alpha.app.net/fitcoach2 - Heather Roberts
https://alpha.app.net/faldrian - Faldrian
https://alpha.app.net/amenthes - Claudius
https://alpha.app.net/aatmanacademy - AatmanAcademy
https://alpha.app.net/pictures_yt - danny
https://alpha.app.net/powrn_ml - Powrn.ml
https://alpha.app.net/r60_t7600 -
https://alpha.app.net/brocklindy -
https://alpha.app.net/drcongo - Andy Beaumont
https://alpha.app.net/samueltanjk - SAMUEL TAN
https://alpha.app.net/necomfortkeeper - Denise Magill
https://alpha.app.net/virginhairfixx - Erick Armstrong
https://alpha.app.net/vancouvercanadahomes - Julio Oyola
https://alpha.app.net/hulugen - カロリー
https://alpha.app.net/meerkat_it -
https://alpha.app.net/madcabs - Nathan Sloas
https://alpha.app.net/youdlaw -
https://alpha.app.net/iatomhuang -
https://alpha.app.net/russl - Russ Lunsford
https://alpha.app.net/studemontgrpsol - John McDonough
https://alpha.app.net/massagepulse - Nic Blanc
https://alpha.app.net/bbcamp101 - Brian
https://alpha.app.net/bizvolt - Yussef Gilkey
https://alpha.app.net/alliedinsmgr -
https://alpha.app.net/aplusfamilydent - Justene Doan
https://alpha.app.net/akinofftz - Aki Alexandra Nofftz
https://alpha.app.net/daileywealth -
https://alpha.app.net/davidjones - David Jones
https://alpha.app.net/s_m - みつばさき
https://alpha.app.net/sutatan01 - すた
https://alpha.app.net/sirgibler - David Ciatto
https://alpha.app.net/jitzbro -
https://alpha.app.net/appbox - App MailBox
https://alpha.app.net/dalton - Dalton Caldwell
https://alpha.app.net/blanatnet -
https://alpha.app.net/qh2oinc - Lon Macfee
https://alpha.app.net/cvt2014 - Latasha Silva
https://alpha.app.net/khunterlaw - Kim Hunter
https://alpha.app.net/proweb106 - Mike Barton
https://alpha.app.net/wowhomeswa - Craig Wych
https://alpha.app.net/fbartho - Frederic Barthelemy
https://alpha.app.net/punkadiddle - Punkadiddle
https://alpha.app.net/atomicbird - Tom Harrington
https://alpha.app.net/digitallinks - Dan Keep
https://alpha.app.net/1stpagesyndication - Jamey Barker
https://alpha.app.net/topsmnews - Topsmnews
https://alpha.app.net/mzcan99 - Robert Dangler
https://alpha.app.net/grahamperrin - Graham Perrin
https://alpha.app.net/ecmobileapps - Roy Metz
https://alpha.app.net/joelburns11 - Joel Burns
https://alpha.app.net/aimdynamics - Victor Fehlberg
https://alpha.app.net/fishseahawk - Russ Clark
https://alpha.app.net/cutep726 -
https://alpha.app.net/an_old_international - Christoph Wagner
https://alpha.app.net/tertiushand - Tertiushand
https://alpha.app.net/drwadefaerber - Wade Faerber
https://alpha.app.net/bbrmckinney -
https://alpha.app.net/owenthomas - Owen Thomas
https://alpha.app.net/bearforrest - Martin Bjørnskov
https://alpha.app.net/wandzeitung - Die Wandzeitung
https://alpha.app.net/gmason2011 - gmason2011
https://alpha.app.net/teknomobil - teknomobil
https://alpha.app.net/se0 - せお
https://alpha.app.net/mattyg - Matt G
https://alpha.app.net/conanxin - Conan Xin
https://alpha.app.net/mndahoo - Ahmed
https://alpha.app.net/kmn - komanome
https://alpha.app.net/xperia - _0_zero
https://alpha.app.net/aliciakokemorrossow -
https://alpha.app.net/frankwyatt - Frank Wyatt
https://alpha.app.net/timonus - Tim Johnsen
https://alpha.app.net/bhoward2 - Brady Howard
https://alpha.app.net/boehmcs - Marc Boehm
https://alpha.app.net/roseangel -
https://alpha.app.net/robkerryuk - Rob
https://alpha.app.net/rena2019 - Re Na
https://alpha.app.net/getwalkthrough - Getwalkthrough
https://alpha.app.net/reinodoxala - @Reinodoxala
https://alpha.app.net/jamesrampton - James Rampton
https://alpha.app.net/phponwebsites - phponwebsites
https://alpha.app.net/praetorianinsur -
https://alpha.app.net/altima - あるてま
https://alpha.app.net/royalsunalliance - royalsunalliancecarinsurance
https://alpha.app.net/alashrafedu - Sarah Ashraf
https://alpha.app.net/alphaefficiency - Bojan & Darren
https://alpha.app.net/bevhepting - Bev
https://alpha.app.net/hjertnes - Eivind Hjertnes
https://alpha.app.net/reklamezentrale - die reklamezentrale
https://alpha.app.net/mousa - Sad Face
https://alpha.app.net/roarz01 - Rory Da Costa
https://alpha.app.net/manandvanwimbledon - Man and Van Removal Company
https://alpha.app.net/troioihot - Kênh giải trí Việt - Trời Ơi Hot
https://alpha.app.net/japheth - Jay Benfield
https://alpha.app.net/purecleaningsvcs - @PureCleaningServices
https://alpha.app.net/pattafeufeu - [ˈpʌtaˌfɔʏʏ]
https://alpha.app.net/nicoduck - Nicola von Thadden
https://alpha.app.net/iagdotme - Ian Anderson Gray
https://alpha.app.net/juhu - Gero Klinkmann
https://alpha.app.net/yvt - YaViT
https://alpha.app.net/prose - Prose
https://alpha.app.net/lifetechnology - Life Technology
https://alpha.app.net/gentlemanhog - Alan Holding
https://alpha.app.net/webnet30 - Francesco
https://alpha.app.net/agera - Nitobe Ziro
https://alpha.app.net/jeinselen - John Einselen
https://alpha.app.net/bellingham - Jonathan Holbert
https://alpha.app.net/simonwaldherr - Simon Waldherr
https://alpha.app.net/ejknapp - Eric Knapp
https://alpha.app.net/bdh - Brian Hines
https://alpha.app.net/orian - Orian Marx
https://alpha.app.net/rve - Rene van Eijk
https://alpha.app.net/thetrafficdoctor - Arlan Medicine
https://alpha.app.net/smartfangirl -
https://alpha.app.net/jrewing71 - Brian Howard
https://alpha.app.net/dssstrkl - Paul Ward
https://alpha.app.net/cnjbrownbear - Kevin King
https://alpha.app.net/hailahsh - Hailah AlShetwi
https://alpha.app.net/kingofcarpet1 - Jonathan King
https://alpha.app.net/fairisriduan - Fairis Riduan
https://alpha.app.net/koz - koz
https://alpha.app.net/locutorco - Félix Riaño
https://alpha.app.net/tappdarden - Patrick Benton
https://alpha.app.net/sarahg03 - Sarah Nance
https://alpha.app.net/snappy - SnapPy and DCS Test
https://alpha.app.net/xtetsuji - OGATA Tetsuji
https://alpha.app.net/gabrieljmj - Gabriel Jacinto
https://alpha.app.net/elvira - Elvira S
https://alpha.app.net/witt - Witt Allen
https://alpha.app.net/agcarpet1 - Damian Lovell
https://alpha.app.net/steven_aquino - Steven Aquino
https://alpha.app.net/kinari0814 - 生成
https://alpha.app.net/obstinate - obstinate
https://alpha.app.net/daveni14 -
https://alpha.app.net/jacobbednarz - Jacob Bednarz
https://alpha.app.net/tonymer - Tony Mer
https://alpha.app.net/suzutan0s2 - Asagiri suzuka
https://alpha.app.net/darrenwood - Darren Wood
https://alpha.app.net/kevinbowers - Kevin Bowers
https://alpha.app.net/themikeswan - Mike Swan
https://alpha.app.net/appnpira -
https://alpha.app.net/madmakmedia1 - Brian Lavender
https://alpha.app.net/spielbaelle - Die Spielbälle
https://alpha.app.net/theoracle - Κασσάνδρα of Ἴλιον
https://alpha.app.net/dejiq - DejIQ
https://alpha.app.net/markmaster - Markmaster
https://alpha.app.net/manuch - Manuel Wenger
https://alpha.app.net/innpiraten - PIRATEN Kreisverband Mühldorf am Inn
https://alpha.app.net/mrtramuel - TramueL, Brian
https://alpha.app.net/dfraser - Dan Fraser
https://alpha.app.net/coastalboi - Michael Butler
https://alpha.app.net/ih0pe - Hope
https://alpha.app.net/romluras - Roman
https://alpha.app.net/tencreative - TEN Creative
https://alpha.app.net/kjuh - Reinhard
https://alpha.app.net/dramasonweb - dramas on web
https://alpha.app.net/ashxyle - Ashxyle
https://alpha.app.net/moonshine1 - Kellie Boling
https://alpha.app.net/jeje - 기린이
https://alpha.app.net/rasibo - Ralf Simon
https://alpha.app.net/masonaff1 -
https://alpha.app.net/expresskasse - Christian
https://alpha.app.net/dacheezypuffs - Daniel Christmas
https://alpha.app.net/kliisesspinnerli - Piipsi
https://alpha.app.net/uznajabeen - webcam girl
https://alpha.app.net/janerosenberg888 - Jane Rosenberg
https://alpha.app.net/sonchai_bf - Joerg Fruecht
https://alpha.app.net/byteorder - byteorder
https://alpha.app.net/ancientbuhodev -
https://alpha.app.net/shamit - Shamit Manchanda
https://alpha.app.net/mikejulietbravo - Mike Briercliffe
https://alpha.app.net/peterknapp - Peter Knapp
https://alpha.app.net/mamzoukabe -
https://alpha.app.net/apfellife - apfellife
https://alpha.app.net/creohn - Da Na
https://alpha.app.net/kaklotter - fRED
https://alpha.app.net/sukinosenze - SukinoSenze
https://alpha.app.net/michael_freeman_7568 - Szabados Michael
https://alpha.app.net/eli_oat - eli mellen
https://alpha.app.net/mikeevanshfd - Mike Evans
https://alpha.app.net/jamesschaeffer - James Schaeffer
https://alpha.app.net/applebysystem - Appleby Systems
https://alpha.app.net/cedargatelandscaping -
https://alpha.app.net/goltvaovivo - GOL TV AO VIVO
https://alpha.app.net/niallkennedy - Niall Kennedy
https://alpha.app.net/kevinfarner - Kevin Farner
https://alpha.app.net/biffloman - Theodore Kufahl
https://alpha.app.net/mrsonhuu - Happy Visa
https://alpha.app.net/wahtips - Wahtips
https://alpha.app.net/dbechalee -
https://alpha.app.net/mohammed509 - mohammed
https://alpha.app.net/brbrahoover - Barbara Hoover
https://alpha.app.net/qraig - Craig Swanson
https://alpha.app.net/shyam13 - Rajeev Kumar
https://alpha.app.net/jonathanseals - Jonathan Seals
https://alpha.app.net/fonzymont -
https://alpha.app.net/kenriova -
https://alpha.app.net/eurfi_typhoon - べりる
https://alpha.app.net/contentconversions - Content Conversions
https://alpha.app.net/christophermak -
https://alpha.app.net/mahiyabd - Mahiya Mahi
https://alpha.app.net/mcwoods - Chris Woods
https://alpha.app.net/uep - Daniel Carosone
https://alpha.app.net/aegorov01 -
https://alpha.app.net/lilmark - mark
https://alpha.app.net/leekie - leekie
https://alpha.app.net/1merashivbaba - saumi
https://alpha.app.net/taydfloyd - Floyd Taylor
https://alpha.app.net/stian - Stian Helnes
https://alpha.app.net/pokeranalyzer - Poker Analyzer
https://alpha.app.net/grosr - Ruediger Gros
https://alpha.app.net/olgamosastrolog -
https://alpha.app.net/maradevid -
https://alpha.app.net/fcbromley - Samantha Blockhurst
https://alpha.app.net/reneschroeder - Rene Schroeder
https://alpha.app.net/kautel_de - Kautel
https://alpha.app.net/kurichan - Kouki Kuriyama
https://alpha.app.net/williham - Will Pierce
https://alpha.app.net/fcgreenwich - Serena Moore
https://alpha.app.net/ptrshaw3 -
https://alpha.app.net/cleanerstowerhamlets - Richard Bowes
https://alpha.app.net/pediatricdentga - Dr. Brent Herrin
https://alpha.app.net/tuonomartin - Martin Seitz
https://alpha.app.net/gregperry - Greg Perry
https://alpha.app.net/learnomnifocus - Learn OmniFocus
https://alpha.app.net/3y3s - flan
https://alpha.app.net/shunozo -
https://alpha.app.net/schaferconsinc - Rudi Schafer
https://alpha.app.net/svenno - svenno chefhain
https://alpha.app.net/nvb - Nikolai
https://alpha.app.net/mainstmassagemi - Mary Miller
https://alpha.app.net/shimamo - シマモ
https://alpha.app.net/spineboy - Richard Huntoon
https://alpha.app.net/rtwld - rotwild
https://alpha.app.net/usachoicerooftx -
https://alpha.app.net/rumpcaservices - Jason Rumpca
https://alpha.app.net/fotografioso - Stefan Rusche
https://alpha.app.net/int2k - Joerg
https://alpha.app.net/stephm - Effie
https://alpha.app.net/probst95 - Matthias Probst
https://alpha.app.net/ebrahimthex - M Ebrahim Khalil
https://alpha.app.net/adhesivetapes - Phillip Thomas
https://alpha.app.net/timesuptermite - Rudi Schafer
https://alpha.app.net/luken7 - Tony Nelson
https://alpha.app.net/marketresultsau - David Cross
https://alpha.app.net/sandprickle - Bryce Miller
https://alpha.app.net/bottomlinemktg - Lisa Marie Genovese
https://alpha.app.net/tahir9110 - Muhammad Tahir
https://alpha.app.net/vladcampos - Vladimir Campos
https://alpha.app.net/reply - Ian Carroll
https://alpha.app.net/aliciatcromwell1984 -
https://alpha.app.net/blaubart69 - Bernhard Spindler
https://alpha.app.net/_l0e - 澪捺
https://alpha.app.net/dirpet - dirpet
https://alpha.app.net/macula - Peter Kral
https://alpha.app.net/iws - いわし
https://alpha.app.net/beckytquinones2000 -
https://alpha.app.net/osybusdrivers - O.sy. Bus Drivers
https://alpha.app.net/friend - Gilad
https://alpha.app.net/cheriwpotter1968 -
https://alpha.app.net/pydanny - Daniel Greenfeld
https://alpha.app.net/nikitassszznnnn - Никитас
https://alpha.app.net/bondtech - Bond Tech Industries
https://alpha.app.net/corrinerembrey1968 -
https://alpha.app.net/bryson - Bryson Holland
https://alpha.app.net/andrewthomas - Andrew Thomas
https://alpha.app.net/christinechan - Christine Chan
https://alpha.app.net/adrelgatn - Andrea Gaitan
https://alpha.app.net/dbamagnetic2 - dba Magnetic Marketing Media
https://alpha.app.net/thansbic - Thana Turakit
https://alpha.app.net/clferraz - Cláudio L. Ferraz
https://alpha.app.net/urbanvibes - Urban Vibes
https://alpha.app.net/kji - ^9^\くっじさーん
https://alpha.app.net/cejcook - The Bow Tie Guy
https://alpha.app.net/pbump - Philip Bump
https://alpha.app.net/hermeticlibrary - Hermetic Library
https://alpha.app.net/mrsulligan - Sully
https://alpha.app.net/myrdesign -
https://alpha.app.net/secretmega - Paul Castillo
https://alpha.app.net/stevestreza - Steve Streza
https://alpha.app.net/cartolibreriabiondi - Cartolibreria Biondi
https://alpha.app.net/jjajjala - Min Gyu Kim
https://alpha.app.net/rakhigifts - Rakhi Singh
https://alpha.app.net/alexanderqu -
https://alpha.app.net/myrareidy - Myra Reidy
https://alpha.app.net/fhgfh -
https://alpha.app.net/harrinux - harrinux
https://alpha.app.net/traceyrios1990 -
https://alpha.app.net/roydunne - Roy Dunne 'My Friend The Nomad"
https://alpha.app.net/blubbhausen - blubbhausen
https://alpha.app.net/shapesbrowbarsalon -
https://alpha.app.net/grindandbrew - Grind and Brew Coffee Machine
https://alpha.app.net/luber2410 - Lutz Radloff
https://alpha.app.net/markhowdo - Mark
https://alpha.app.net/stigbra - Stig Brautaset
https://alpha.app.net/neurodesigns - Neuro-Designs
https://alpha.app.net/treacl - Tony harewood
https://alpha.app.net/khucdaodau -
https://alpha.app.net/thomas_leo -
https://alpha.app.net/1burg - バーグ
https://alpha.app.net/cuzing - Pham Van My
https://alpha.app.net/biwebmaster -
https://alpha.app.net/tarsemchinodds - Tarsem L Sighal
https://alpha.app.net/juliomacedojm -
https://alpha.app.net/franzcorrick - Franz Corrick
https://alpha.app.net/b3nj4m7n - Ben
https://alpha.app.net/usurema - うすれま
https://alpha.app.net/syleron - Andrew Zak
https://alpha.app.net/kaffeeschluerfer - John
https://alpha.app.net/kamero241 - kamkeros241
https://alpha.app.net/dacai - 菜菜
https://alpha.app.net/07discount - Mike Looby
https://alpha.app.net/jwisser - Jonas Wisser
https://alpha.app.net/antiquelimoofindy - Jack Gambs
https://alpha.app.net/co4 - 木曜の市
https://alpha.app.net/buzzhomes - Adam Barnes
https://alpha.app.net/rafius15 - Rafita fiera
https://alpha.app.net/marcozehe - ahmed maher
https://alpha.app.net/wedocharityauc - Steve Roseman
https://alpha.app.net/ankaramasaj - Ankara Masaj Salonları
https://alpha.app.net/drmcevoy -
https://alpha.app.net/cobra - Cobra
https://alpha.app.net/imacandy - iMacAndy
https://alpha.app.net/crewords - 曹祥豪
https://alpha.app.net/dutchmanslandscaping - Dutchman's Landscaping
https://alpha.app.net/isak - Isak Holmström
https://alpha.app.net/h2ospas - Leena Wolf
https://alpha.app.net/terratek -
https://alpha.app.net/larealestatelaw - Bruce Edward Schwartz
https://alpha.app.net/istups - Stefan
https://alpha.app.net/petglider -
https://alpha.app.net/tlayh - Thomas Layh
https://alpha.app.net/cash4carsindy -
https://alpha.app.net/efilters - efilters
https://alpha.app.net/brovkinkir -
https://alpha.app.net/kevhauff - Magnetic Marketing Authority
https://alpha.app.net/managementrockstar - Jason Mueller
https://alpha.app.net/oestberg - Joakim Östberg
https://alpha.app.net/blog_bleistift - Anna-Lena König
https://alpha.app.net/stylermatu - Max
https://alpha.app.net/martinr92 - Martin Riedl
https://alpha.app.net/solveprob - solve-prob.com
https://alpha.app.net/josemfajardo - Jose Manuel Fajardo
https://alpha.app.net/basus - Shrutarshi Basu
https://alpha.app.net/pax - Alex Popescu
https://alpha.app.net/careindeed - CareIndeed
https://alpha.app.net/violetkjoseph3 -
https://alpha.app.net/ericlindsay - Eric Lindsay
https://alpha.app.net/keithb - Keith Bradnam
https://alpha.app.net/kokuho - kokuho128
https://alpha.app.net/livefree247 - Bonus Babe
https://alpha.app.net/dizifullizleorg - dizifullizle org
https://alpha.app.net/theartofanimage - TC
https://alpha.app.net/mclarke - Martin
https://alpha.app.net/iwa - いわーく
https://alpha.app.net/carrell - Scott Carrell
https://alpha.app.net/coin - The Coin
https://alpha.app.net/mahmand -
https://alpha.app.net/bdubl2 - Brian Blanc
https://alpha.app.net/rakhibazaar - rakhibazaar
https://alpha.app.net/dqmseed - TVアニメ「ゆゆ式」
https://alpha.app.net/labeguy01 - The Label Guy
https://alpha.app.net/sarajstanford - sara
https://alpha.app.net/luigii - Luigi Freitas
https://alpha.app.net/naql - Andy
https://alpha.app.net/alicebys -
https://alpha.app.net/alfredo - alfredo
https://alpha.app.net/aliahmed - ALi Ahmed
https://alpha.app.net/familyinspain - Lisa Sadleir
https://alpha.app.net/joseboinas - Ze_Bone
https://alpha.app.net/ebda3worlddoteu -
https://alpha.app.net/darthsarcasm - Antony Harris
https://alpha.app.net/snake302 - Akim Kasabulatov
https://alpha.app.net/collensarah - Sarah Collen
https://alpha.app.net/vietoffice - Mr Đại
https://alpha.app.net/eulenherr - eulenherr
https://alpha.app.net/artur - Artur
https://alpha.app.net/apfelsaeftchen - Natalie Mueller
https://alpha.app.net/mechanicalrepairs -
https://alpha.app.net/yuraizman -
https://alpha.app.net/yaziciservisi - Burak Serdaroglu
https://alpha.app.net/lexfri - Lex Friedman
https://alpha.app.net/jackiefung - Jackie Fung
https://alpha.app.net/indiansilverjewelry - Indian Silver Jewelry Wholesaler
https://alpha.app.net/videobax -
https://alpha.app.net/nhat_hung - Nhat Hung
https://alpha.app.net/johnsmith199390 - Fast Link Travel Official Site
https://alpha.app.net/waltika - Walter Wartenweiler
https://alpha.app.net/leonardoalves - profleonardo
https://alpha.app.net/ramotion - Ramotion Inc.
https://alpha.app.net/instantloans - Instant Loans
https://alpha.app.net/darrenlawson - buzzedd
https://alpha.app.net/pauldlynch - Paul Lynch
https://alpha.app.net/haberahval - haber ahval
https://alpha.app.net/roflcovers - Facebook Covers
https://alpha.app.net/seot - Gürkan Turhna
https://alpha.app.net/jonas_w - Jonas Wisplinghoff
https://alpha.app.net/johnsonlawteam - Richard Johnson
https://alpha.app.net/ziryab - Kate Burton
https://alpha.app.net/benediktleb - Benedikt
https://alpha.app.net/seanasheppard - Sean Sheppard
https://alpha.app.net/andyhoek - Andy Hoek
https://alpha.app.net/michaeljewelers - Holly Willner
https://alpha.app.net/sheasmobile1 - Ty Pilkey
https://alpha.app.net/hukl - John-Paul Bader
https://alpha.app.net/hardcoreseppl - hardcoreseppl
https://alpha.app.net/mtea_fx - mtea.com/fx
https://alpha.app.net/scofany - Scofany Aksesoris
https://alpha.app.net/allaboutair - Darryl Lyons
https://alpha.app.net/generalstoreall - Allan Sutherland
https://alpha.app.net/sexsmart - Aline Zoldbrod
https://alpha.app.net/elodgeniagara - Lara Croft
https://alpha.app.net/jerrymee -
https://alpha.app.net/twinpine - Marci Deegan
https://alpha.app.net/zwangschast - ZwangsCHast
https://alpha.app.net/louiselfouche3 -
https://alpha.app.net/djpagla - Bangla Choti Live Xxx
https://alpha.app.net/justbailbondtx - Rick Wade
https://alpha.app.net/chaseintlestateca - Matt White
https://alpha.app.net/rtsnance - rtsnance
https://alpha.app.net/whitesmarinecenter - John Dodson
https://alpha.app.net/dafisch - Dafisch
https://alpha.app.net/themls - Mark Kinsley
https://alpha.app.net/danhallock - Dan Hallock
https://alpha.app.net/namjirah - Félin
https://alpha.app.net/depone - depone
https://alpha.app.net/aurelius - Aurel Gruborowitz
https://alpha.app.net/tinanerium - Tina Nerium
https://alpha.app.net/poweruser - Phil Holland
https://alpha.app.net/tvprogramlari - tv programlari
https://alpha.app.net/scott_johnson - Scott Johnson
https://alpha.app.net/jwhite - Jacob White
https://alpha.app.net/gleather1969 - Glen
https://alpha.app.net/medcalc - MedCalc
https://alpha.app.net/sosyetechat - .net
https://alpha.app.net/deborahmayers -
https://alpha.app.net/lcbarros - Leonardo Barros
https://alpha.app.net/bonoman - chelbalove
https://alpha.app.net/ttscc - Transemitter Tactile Sound Capturing Corporation
https://alpha.app.net/pmjeterjr - Paul M. Jeter Jr.
https://alpha.app.net/ibalajis - Balaji
https://alpha.app.net/careweb - careweb
https://alpha.app.net/npatercer -
https://alpha.app.net/richardmhowell - Richard Howell
https://alpha.app.net/robertjohnq -
https://alpha.app.net/nadeemtugyani -
https://alpha.app.net/modnerd - Der moderne Nerd
https://alpha.app.net/jus1incrag - Justin Craig
https://alpha.app.net/randypartridge2 - Randy Partridge
https://alpha.app.net/thandsoll1 - Thomas J. Schofield
https://alpha.app.net/keithriches - KR Design
https://alpha.app.net/virusremoval -
https://alpha.app.net/errekrbo - Rafa Carbó
https://alpha.app.net/billsen - Billbo
https://alpha.app.net/gabriella - Gabriella
https://alpha.app.net/dadada_sann - だだだP
https://alpha.app.net/drdariush - drdariush
https://alpha.app.net/kora - Karolin Varner
https://alpha.app.net/mailxemphim83 -
https://alpha.app.net/cleaningadvan1 - Karen Bickford
https://alpha.app.net/sebastianedlington - Sebastian Edlington
https://alpha.app.net/antoniy911 -
https://alpha.app.net/bluesmanofmlm - Bluesman Of MLM
https://alpha.app.net/taylorworks - Tim Taylor
https://alpha.app.net/tlinkbroadband -
https://alpha.app.net/paidhi - Markus Banfi
https://alpha.app.net/susannebutz - Susanne Butz
https://alpha.app.net/petaorthomassage - Amanda Wongsonegoro
https://alpha.app.net/marketingpipeli - Marketing Pipeline
https://alpha.app.net/firadra - Fira
https://alpha.app.net/cyke - Christian Eiden
https://alpha.app.net/kelleherortho - Robert Kelleher
https://alpha.app.net/alexanderschmitt - Alexander Schmitt
https://alpha.app.net/pleasefixthat - Please. Fix. That.
https://alpha.app.net/videomaker - Video Maker
https://alpha.app.net/beastie -
https://alpha.app.net/chasebratton - Chase Andrew Bratton
https://alpha.app.net/digitalsalesdev - Laverne Mitchell
https://alpha.app.net/nominal_r - riku
https://alpha.app.net/dony_astrady - Dony Astrady
https://alpha.app.net/olivierrouy - Enkidu
https://alpha.app.net/dontpanicpodcast - Don't Panic Podcast
https://alpha.app.net/drbradleytomkins - Dr Bradley Tomkins
https://alpha.app.net/ffabi - Norge
https://alpha.app.net/rpnida -
https://alpha.app.net/nivs - Niv Singer
https://alpha.app.net/ourrou - 1besthaf
https://alpha.app.net/tradessearch83 - William Kay
https://alpha.app.net/hafsel -
https://alpha.app.net/panzi - Mathias Panzenböck
https://alpha.app.net/lvcifer - LVCIFER
https://alpha.app.net/kohan - Kohan Ikin
https://alpha.app.net/eurostarwindows - EuroStar Windows and Doors Inc
https://alpha.app.net/jorte - Jorte Inc.
https://alpha.app.net/godlesssmeghead - Godless Smeghead
https://alpha.app.net/derek9711 - Derek Xu
https://alpha.app.net/fds - fdscaa
https://alpha.app.net/mitchell - Mitchell Scott
https://alpha.app.net/android_guatemala - Android Guatemala
https://alpha.app.net/williamswenzel -
https://alpha.app.net/mored -
https://alpha.app.net/dardshayaris -
https://alpha.app.net/kenovat -
https://alpha.app.net/baliholidayvillas - baliholidayvillas
https://alpha.app.net/thangtkhp1 -
https://alpha.app.net/inboil - INBOIL
https://alpha.app.net/fabianswebworld - Fabian Schneider
https://alpha.app.net/jasonmoore71 - Jason Moore
https://alpha.app.net/rosemarry09 -
https://alpha.app.net/coke4all - Björn Winkler
https://alpha.app.net/vienthong762 - Viễn Thông
https://alpha.app.net/scruffyfox - Callum Taylor
https://alpha.app.net/blueskyasst1 - Kristi Clayton
https://alpha.app.net/resonator - Resonator
https://alpha.app.net/jacky89 - Jaqueline Keller
https://alpha.app.net/ponica - ponica
https://alpha.app.net/suvozit - Shubhajit Saha
https://alpha.app.net/ilennart21 - Lennart K
https://alpha.app.net/scottearle - Scott Earle
https://alpha.app.net/wingedrinoa - sharon pansky
https://alpha.app.net/aidyreviews - Sandy Hoffman
https://alpha.app.net/icy - Icy Johnson
https://alpha.app.net/oshawachiro -
https://alpha.app.net/bloomstoday80 - Blooms Today
https://alpha.app.net/altusmechanical - Jeff Deem
https://alpha.app.net/micutzu - Andrei Vali
https://alpha.app.net/experiencewasabi3d - Chris Sullivan
https://alpha.app.net/mbrennek - Matt Brenneke
https://alpha.app.net/mrsimonbennett - Simon Bennett
https://alpha.app.net/choupsdamour - Messeterminal
https://alpha.app.net/eplasticsurgery - Jeffrey Schreiber
https://alpha.app.net/philadelphiaseo2 - Travis Robinson
https://alpha.app.net/mattjohnson0403 - Matt Johnson
https://alpha.app.net/andrewcilento - Andrew Cilento
https://alpha.app.net/lightingbypecaso - Lighting By Pecaso
https://alpha.app.net/brockingtondental - Haleh Ashkevari
https://alpha.app.net/jobelenus - John Obelenus
https://alpha.app.net/agame - Alex Melching
https://alpha.app.net/therealestatesd - Mike Percevich
https://alpha.app.net/mobilemarallies - Bonnie Armstrong
https://alpha.app.net/pedrothemz - Pedro Francisco Lucas Bero
https://alpha.app.net/warbird - warbird
https://alpha.app.net/pathu1976 -
https://alpha.app.net/orapu - おらぷ
https://alpha.app.net/m055555 - Turki awadh
https://alpha.app.net/ronairfm - RONAIR
https://alpha.app.net/chillersound - Chillersound
https://alpha.app.net/michaelbaisch - Michael Baisch
https://alpha.app.net/liss - Casey Liss
https://alpha.app.net/leftcoast - .io
https://alpha.app.net/waxpancake - Andy Baio
https://alpha.app.net/captivateseo - Captivate Search Marketing
https://alpha.app.net/linuxq - Marcel Meissel
https://alpha.app.net/haekelschwein - Herr haekelschwein
https://alpha.app.net/raumzeit - Raumzeit Podcast
https://alpha.app.net/nielsd - Niels Dreier
https://alpha.app.net/choluoxy - choluoxy
https://alpha.app.net/shawnnewton - Shawn Newton - Newton Pens
https://alpha.app.net/sspringst3n - Sam Springsten
https://alpha.app.net/gamethuviet - gameviet
https://alpha.app.net/dast - dast
https://alpha.app.net/nancywbell -
https://alpha.app.net/melbourne2014 -
https://alpha.app.net/jazminchan -
https://alpha.app.net/podnar - Ivan Podnar
https://alpha.app.net/gayaaliyev - Gaya Aliyev
https://alpha.app.net/dustymahurin - Dustin Mahurin
https://alpha.app.net/yourmom - your mom
https://alpha.app.net/oresses -
https://alpha.app.net/ipv4 - あたがわ
https://alpha.app.net/rickmer - rickmer
https://alpha.app.net/rgarbade - Ralf H. Garbade
https://alpha.app.net/seriesthai - seriesthai
https://alpha.app.net/jorabezfamilniy - Jora Bezfamilniy
https://alpha.app.net/davehayden - Dave Hayden
https://alpha.app.net/jaeger - Stephan Jäger
https://alpha.app.net/wiztech_automation_3 - Wiztech Wiz
https://alpha.app.net/vrili77 - vrili77
https://alpha.app.net/hkfotografie - HKFotografie
https://alpha.app.net/dustinnorman - Dustin Norman
https://alpha.app.net/jokey - Jörg Kahle
https://alpha.app.net/alfred_murdochsno - alfred_murdochsno
https://alpha.app.net/circletime - HedgeHog
https://alpha.app.net/jahnwayne - Wayne
https://alpha.app.net/kvcs - こばくす
https://alpha.app.net/herakhan4090 - herakhan4090
https://alpha.app.net/getyourhacks - cristoph
https://alpha.app.net/swaggyy2 - Jutt Harry
https://alpha.app.net/carloshenrique - Carlos Oliver
https://alpha.app.net/apkmega - Android APK - Apps, Games and Themes
https://alpha.app.net/emptysouls - emptysouls
https://alpha.app.net/tichu - 카르카손
https://alpha.app.net/fullserviceapp - Full Service
https://alpha.app.net/jupie - ゆぴー
https://alpha.app.net/khkaplan - Kevin Kaplan
https://alpha.app.net/rahmaneed - Rahma
https://alpha.app.net/dobria - Ambre
https://alpha.app.net/richmore - RICH MORE
https://alpha.app.net/mergesort - Joe Fabisevich
https://alpha.app.net/jimbohne - Jim Bohne
https://alpha.app.net/ikuwait - Ahmad ( iKuwait )
https://alpha.app.net/io494oi - しぐお
https://alpha.app.net/anisioluiz - ANISIO LUIZ
https://alpha.app.net/kventil - Robert
https://alpha.app.net/ventus221 - Matthew James Van Densen
https://alpha.app.net/overflow - Whistle Binkey
https://alpha.app.net/lrtitze - Leslie Titze
https://alpha.app.net/rumahprediksibola303 - rumahprediksibola303
https://alpha.app.net/batcavelabs - .
https://alpha.app.net/satrancali - Yabancı Dizi izle
https://alpha.app.net/65wz - Waleed Alzuhair
https://alpha.app.net/nyumen - NyuMen
https://alpha.app.net/quest - Josh Ellithorpe
https://alpha.app.net/naderdave07 - Nader
https://alpha.app.net/avoipcommunicationbd - Akbar Hossain Shovon
https://alpha.app.net/mrskatie - Katie Talbott
https://alpha.app.net/mwadinskicom - Mark Wadinski
https://alpha.app.net/ikr7 - ikr7
https://alpha.app.net/augiedb - Augie De Blieck
https://alpha.app.net/chuongkk - Chương Đặng
https://alpha.app.net/thanhcmc -
https://alpha.app.net/vergi5 - Vergi
https://alpha.app.net/crutzz - Jadoel
https://alpha.app.net/astrahearing - Astra Hearing Care
https://alpha.app.net/voidstern - Lukas Burgstaller
https://alpha.app.net/gfchiropractic1 - Jenna Arts
https://alpha.app.net/tanercat - Taner Şenel
https://alpha.app.net/dieter - Dieter
https://alpha.app.net/robert_p - Robert P.
https://alpha.app.net/betapublica - Raúl Pérez
https://alpha.app.net/travelnshop - TravelnShop
https://alpha.app.net/mbustamonte - mbustamonte
https://alpha.app.net/chihirot022 - ちひろ
https://alpha.app.net/jamieontiveros - Jamie Ontiveros
https://alpha.app.net/andrebta - Andre Toledo
https://alpha.app.net/bjjfinder - BJJ Finder
https://alpha.app.net/sparkjournal - The Spark Journal
https://alpha.app.net/gadgets_arena - Gadgets Arena
https://alpha.app.net/jpaulmorgan2 - Jeremy Paul Morgan
https://alpha.app.net/nykengking - EasyDelete
https://alpha.app.net/yarekpictures - Yarek Pictures
https://alpha.app.net/korochi - Korochi Industrias
https://alpha.app.net/shirley29 - luxury lingerie
https://alpha.app.net/clemens - Clemens Be
https://alpha.app.net/georgesinclair - George Sinclair Construction Inc.
https://alpha.app.net/herrriehm - Sebastian Riehm
https://alpha.app.net/grandriverstone - Grand River Natural Stone Ltd.
https://alpha.app.net/pioneermaint1 - Howard McClung
https://alpha.app.net/accorchemclean1 - Jason Botto
https://alpha.app.net/dosovietsol - Peter Tran
https://alpha.app.net/lekis - lekis
https://alpha.app.net/long1610175 -
https://alpha.app.net/disquiet - Marc Weidenbaum
https://alpha.app.net/sence -
https://alpha.app.net/scaarg - Oscar Garcia
https://alpha.app.net/juboshigril - Juboshi Girl Trần
https://alpha.app.net/michahugelshofer - Micha A. Hugelshofer
https://alpha.app.net/boholwebw - Bohol Web
https://alpha.app.net/dkrkwlrh - kwan young yoo
https://alpha.app.net/cibeana -
https://alpha.app.net/nguyenanh -
https://alpha.app.net/regedit22z - PESOBANG Intl.
https://alpha.app.net/davegullett - Dave Gullett
https://alpha.app.net/aboriginal09 -
https://alpha.app.net/iiyama44 - Albert Russell
https://alpha.app.net/t9 - たくお
https://alpha.app.net/ya7lelkom - سارة سعود
https://alpha.app.net/el_zyklon - el zyklon
https://alpha.app.net/oolongchai - 烏龍
https://alpha.app.net/joyh - YoonHyung Jo
https://alpha.app.net/smallloans - Small Loans
https://alpha.app.net/aoba - あおば
https://alpha.app.net/innomobileapps - Innomobileapps
https://alpha.app.net/pradeepthits -
https://alpha.app.net/stoegerbe - Bernhard Stöger
https://alpha.app.net/steigerlegal - Steiger Legal
https://alpha.app.net/elearningserv - Swift Elearning
https://alpha.app.net/barracudastaffing -
https://alpha.app.net/plissees - plissees-günstig-kaufen,de
https://alpha.app.net/eldonbeard - Eldon Beard
https://alpha.app.net/colitisantonio - Antonio Estévez
https://alpha.app.net/lwjsolutions -
https://alpha.app.net/kanikuri316 - かにくり
https://alpha.app.net/tfnico - Thomas Ferris Nicolaisen
https://alpha.app.net/pakdrugrehabandlaw - Inamullah Ansari (Drug/Mental Health/Criminal Law)
https://alpha.app.net/michaelautobody - Michael Seda
https://alpha.app.net/andi_ - Andreas
https://alpha.app.net/heroninstruments - Heron Instruments Inc.
https://alpha.app.net/texastriallawyers1 - texastriallawyers
https://alpha.app.net/lucasmciruzzi - Lucas Matías Ciruzzi
https://alpha.app.net/pacogdc - PacoGDC
https://alpha.app.net/memphis11 - The Dietinator
https://alpha.app.net/texasrenters - Carla Upchurch
https://alpha.app.net/garyfleming - Gary Fleming
https://alpha.app.net/paypanther - Pay Panther
https://alpha.app.net/henningtillmann - Henning Tillmann
https://alpha.app.net/gabeguz - gabe.
https://alpha.app.net/zartesich - ...
https://alpha.app.net/45h - Luc ∞ Jallois
https://alpha.app.net/misscirclenyc - miss circle
https://alpha.app.net/bwoditschka - Bernhard Woditschka
https://alpha.app.net/berry2313 -
https://alpha.app.net/masuqon - masuqon
https://alpha.app.net/cicero_king - Cicero King
https://alpha.app.net/joshfindit - Josh Findit
https://alpha.app.net/rodsherwin - Rod Sherwin
https://alpha.app.net/hanz - Daniel
https://alpha.app.net/vivalachris - Chris
https://alpha.app.net/jebanthony - Jeb Anthony
https://alpha.app.net/mithradatum - Mithradatum
https://alpha.app.net/aragon - André Aragón
https://alpha.app.net/zoglesby - Zach Oglesby
https://alpha.app.net/taigametrituemienphi - taigametrituemienphi
https://alpha.app.net/brandonpiersol - Brandon Piersol
https://alpha.app.net/elizabethseo2 - Elizabeth Kelsey
https://alpha.app.net/plumbersperth -
https://alpha.app.net/dielabertasche - Daniel Biallas
https://alpha.app.net/richardxx159 -
https://alpha.app.net/imwarriortools - iMWArriorTools.com
https://alpha.app.net/hendika - Hendika Dwi Ananda
https://alpha.app.net/bastinat0r - Sebastian Mai
https://alpha.app.net/interinvest - Inter Invest
https://alpha.app.net/alfie93 - Alfie Philips
https://alpha.app.net/deutschmann - Patrick Deutschmann
https://alpha.app.net/cottonfields - Arantxa Hernández
https://alpha.app.net/tapchicuoihoi360 -
https://alpha.app.net/robcbkk - rob car
https://alpha.app.net/julianne - Julianne
https://alpha.app.net/w8sdz - Keith Petersen
https://alpha.app.net/tilmanbaumann - Tilman Baumann
https://alpha.app.net/simonarcher82 - SimonArcher82
https://alpha.app.net/sarashiki - Sarashiki
https://alpha.app.net/my1styears - My 1st Years
https://alpha.app.net/riartem - riartem
https://alpha.app.net/matrixagent - Manu
https://alpha.app.net/angelenasmi131 -
https://alpha.app.net/jaros1 -
https://alpha.app.net/kevincollinson - KevinCollinson
https://alpha.app.net/deezy - D
https://alpha.app.net/r_18 - ☠タドン☠
https://alpha.app.net/imran_hakim_97 - Ali Imran Hakim
https://alpha.app.net/atomi2d - Atomi Mogami
https://alpha.app.net/joaoleonelmz -
https://alpha.app.net/pulangapoy - Dee Makah Tahe
https://alpha.app.net/noleli - Noah Liebman
https://alpha.app.net/jhm - John Man
https://alpha.app.net/cointerra - Stephen Grinalds
https://alpha.app.net/brandonavance - brandonavance
https://alpha.app.net/chrisg - Chris Gonzales
https://alpha.app.net/shayrockhold - Shay Rockhold
https://alpha.app.net/pdgman - Peter Duong
https://alpha.app.net/steinthal - Steinthal
https://alpha.app.net/unretrofied - Unretrofied
https://alpha.app.net/possiblewebinc - Possible Web
https://alpha.app.net/joan_wilken_9 - Joan Wilken
https://alpha.app.net/martabergada - Marta Bergadà
https://alpha.app.net/buttzl - Buttzl
https://alpha.app.net/bugman - The Bug.
https://alpha.app.net/berthakinsky - Bertha Kinsky
https://alpha.app.net/otaibi -
https://alpha.app.net/typeengine - TypeEngine
https://alpha.app.net/n_o_b_o_d_y - Ralf P.
https://alpha.app.net/drysteamaz1 - Nathan Clark
https://alpha.app.net/rockcult - Rockcult Media
https://alpha.app.net/mcminton - Michael Minton
https://alpha.app.net/nathanialjg - Nathanial G
https://alpha.app.net/abeer - Abeer Mohammed !
https://alpha.app.net/lars3eb - Derek Larson
https://alpha.app.net/russiancleaning - Наталья Снегирева
https://alpha.app.net/linlu - Linda Ruiz
https://alpha.app.net/pcsavage - Peter Savage
https://alpha.app.net/richardbuckle - RichardBuckle
https://alpha.app.net/waaaaargh - Johannes Fürmann
https://alpha.app.net/agusmile - Agus Smile
https://alpha.app.net/mcavatar - Steve Morton
https://alpha.app.net/kerimoon -
https://alpha.app.net/guildencrantz - Matt Henkel
https://alpha.app.net/husnainmughal - husnainmughal
https://alpha.app.net/dongerrex - Donger Rex
https://alpha.app.net/junbai97 - Jun Bai
https://alpha.app.net/leeuwin -
https://alpha.app.net/asimsba -
https://alpha.app.net/dmcontractors2 - Steve Lee
https://alpha.app.net/ktm - きたむ
https://alpha.app.net/ligash - ligash
https://alpha.app.net/xaydungnang - Phùng Hoa
https://alpha.app.net/thomashack - Thomas Hack
https://alpha.app.net/nayaneko - Sharon ☆
https://alpha.app.net/titou - Titou
https://alpha.app.net/derren - der ren
https://alpha.app.net/pausehydracreme23 - Kim Fineman
https://alpha.app.net/propertyresources -
https://alpha.app.net/dubh - Gathadair
https://alpha.app.net/mrbobbydigital - Ben Deller
https://alpha.app.net/smartasshat - ʇɐɥs sɐ ʇɹɐɯs
https://alpha.app.net/www3bs1com -
https://alpha.app.net/urbanhomez -
https://alpha.app.net/xxx000 -
https://alpha.app.net/morisan - 森さん
https://alpha.app.net/kog - kogukon
https://alpha.app.net/luzi - Lucile
https://alpha.app.net/andyrobert877 - Andy Robert
https://alpha.app.net/bolacacing -
https://alpha.app.net/victorsimons - Victor Simons
https://alpha.app.net/backlinkdestegi - Backlink Desteği
https://alpha.app.net/iraqsurveys - Iraq Surveys
https://alpha.app.net/cadimus - Cadimus Haber
https://alpha.app.net/plasticlockers - Plastic Lockers
https://alpha.app.net/kinnla - Till Zoppke
https://alpha.app.net/monstertune - Uwe
https://alpha.app.net/dentalofficedesign - Dentalofficedesign
https://alpha.app.net/anycast - anyca.st
https://alpha.app.net/teck4 - teck4
https://alpha.app.net/cromustang -
https://alpha.app.net/linkert - Linkert
https://alpha.app.net/khajavidds - Elham Khajavi
https://alpha.app.net/sanlear -
https://alpha.app.net/rachelgsm - Rachel Smith
https://alpha.app.net/tamgahoang -
https://alpha.app.net/perthchirocare - Ferdie Marcus
https://alpha.app.net/jebjeb2000 -
https://alpha.app.net/tomanjp -
https://alpha.app.net/chbrosch - Christopher Brosch
https://alpha.app.net/marilynch - Mari Lynch
https://alpha.app.net/joshuarjones - Joshua Jones
https://alpha.app.net/favstarmafia - Don di Dislessia
https://alpha.app.net/johnny_richardson_39 - Johnny Richardson
https://alpha.app.net/charlottelocksmith - Charlotte Locksmith
https://alpha.app.net/_patrickwelker - Patrick Welker
https://alpha.app.net/gaustin - Grant Austin
https://alpha.app.net/sevgimnet - Sevgim Net
https://alpha.app.net/prairiervcenter - Greg Ward
https://alpha.app.net/laminaterestore - Denham Collier
https://alpha.app.net/davestrayer - Dave Strayer
https://alpha.app.net/dave101dave - David Rodriguez
https://alpha.app.net/forst - Forst
https://alpha.app.net/greyone - GreyCoder
https://alpha.app.net/mbmitnick -
https://alpha.app.net/joachimstamm - Joachim Stamm
https://alpha.app.net/jobmasters - Jobmaster Magnets
https://alpha.app.net/keymaster - Keymaster
https://alpha.app.net/laneslandscape - Lane's Landscaping Supplies
https://alpha.app.net/micropsi - MicroPsi
https://alpha.app.net/sadefilmizle - Sadefilmizle.com
https://alpha.app.net/luisete - Luis
https://alpha.app.net/therapywithole - therapywithole
https://alpha.app.net/rajitsingh - Rajit Vikram Singh
https://alpha.app.net/reginahindrichs -
https://alpha.app.net/bignewsnetwork - Big News Network
https://alpha.app.net/hazaelestrada - Hazael Estrada
https://alpha.app.net/alex_woehr - Alex Woehr
https://alpha.app.net/davidcmluney -
https://alpha.app.net/fourbrewers - Four Brewers
https://alpha.app.net/johnholzer - John Holzer
https://alpha.app.net/freezingoutside - Mark
https://alpha.app.net/hoaidaode - cong ty tham tu
https://alpha.app.net/michaeljohnston - Michael Johnston
https://alpha.app.net/flash0ver - Danny
https://alpha.app.net/marlinavila72 - Marlin Avila
https://alpha.app.net/alodienlanh -
https://alpha.app.net/kelinpoon -
https://alpha.app.net/ricardo1 - DINERO GANA MUCHO.
https://alpha.app.net/mahar240594 -
https://alpha.app.net/larryp1983 - Larry Porter
https://alpha.app.net/johanwestling - Johan Westling
https://alpha.app.net/socioboosters - Socio Boosters
https://alpha.app.net/kemkem - けむけむ
https://alpha.app.net/molinaaj - molinaaj
https://alpha.app.net/trot00adword - Adword Trot
https://alpha.app.net/jeglikerikkefisk - jeglikerikkefisk
https://alpha.app.net/sharmapk752 - Pankaj Sharma
https://alpha.app.net/bestproducts365 -
https://alpha.app.net/valenkira - đọc truyện tình yêu
https://alpha.app.net/epicdubai - Epic Creative Digital Solutions
https://alpha.app.net/phyllislotte -
https://alpha.app.net/cacotopos - Tom Dullemond
https://alpha.app.net/joerg - Jörg Schwieder
https://alpha.app.net/hugelshofer - hugelshofer reSEARCH
https://alpha.app.net/berkeleycommunityacu - Andrew Young
https://alpha.app.net/andrewmiller337 -
https://alpha.app.net/directory_porno - Directory siti porno
https://alpha.app.net/rangerroofingok - Kody DeWees
https://alpha.app.net/ilovemac - ilovemac
https://alpha.app.net/nocturne1 - Jay P.
https://alpha.app.net/porno_dir - PornxxxDir.com
https://alpha.app.net/gigib - gigib
https://alpha.app.net/sukino1515 - Sukino Tonio
https://alpha.app.net/jenniferphotouk - Jennifer Sinclair
https://alpha.app.net/fate - ふぇいと
https://alpha.app.net/nagatlakshmi - Nagatlakshmi
https://alpha.app.net/akizm - 秋
https://alpha.app.net/shussey - shussey
https://alpha.app.net/alossra - Mc-vigaso Arbaoui Noreddin
https://alpha.app.net/webanhalter - Marc
https://alpha.app.net/szhistar -
https://alpha.app.net/adam24 - Adam The Pikachu
https://alpha.app.net/nsl_buch - Neuschwabenlandbuch
https://alpha.app.net/kydistortion35 - Rickey Russell
https://alpha.app.net/bodywrapsandmore - Lorrie Boehmer
https://alpha.app.net/psyche - Psyche
https://alpha.app.net/nilsaupdegraff864 - Nilsa Updegraff
https://alpha.app.net/transambassadors - TransAmbassadors
https://alpha.app.net/golunar - .
https://alpha.app.net/samex - .
https://alpha.app.net/jobhouseghana - JobHouse Ghana
https://alpha.app.net/angel_manrique_54 - Angel Jarbey Rondon Manrique
https://alpha.app.net/cubastay - Cuba Stay
https://alpha.app.net/wulms77 - Ralph Wulms
https://alpha.app.net/jonaswendler - Jonas Wendler
https://alpha.app.net/carpal - Carlos
https://alpha.app.net/heavensbest1 - Steve Mobley
https://alpha.app.net/lawrenceparkgarden -
https://alpha.app.net/randolph1 - Randolph
https://alpha.app.net/pittman - Brandon Pittman
https://alpha.app.net/jerkob - Jacob Terry
https://alpha.app.net/newbrewthursday - New Brew Thursday
https://alpha.app.net/specialkolin - Kolin Toney
https://alpha.app.net/akanshatyagi -
https://alpha.app.net/valleyl0gic - .
https://alpha.app.net/darinb007 - Darin
https://alpha.app.net/eciousipa -
https://alpha.app.net/tapasyagrandwalk -
https://alpha.app.net/mike_antonenko - Mikhail Antonenko
https://alpha.app.net/tullyhansen - Tully Hansen
https://alpha.app.net/kutephoenix - Uy tín chuyên nghiệp
https://alpha.app.net/groupproduct - Jenifer Mei
https://alpha.app.net/superliufa - 刘羽
https://alpha.app.net/gitminutes - GitMinutes
https://alpha.app.net/storminator - Patrick Meyhöfer
https://alpha.app.net/fclambeth - Nathan Abraham
https://alpha.app.net/danielanderson544 - Daniel Anderson
https://alpha.app.net/chuckreynolds - Chuck Reynolds
https://alpha.app.net/davenaylor - Dave Naylor
https://alpha.app.net/sgalindo -
https://alpha.app.net/wrow - Frank Epperlein
https://alpha.app.net/jeffnali -
https://alpha.app.net/justdoondo - JustDoondo
https://alpha.app.net/samueldawson - Samuel Dawson
https://alpha.app.net/mattrobertson - Matt Robertson
https://alpha.app.net/hotels4you -
https://alpha.app.net/dorothyrestrivera - Dorothy Restrivera
https://alpha.app.net/cpbmechanical - CPBMechanical
https://alpha.app.net/randpop - Stephan Kochs
https://alpha.app.net/schu_mi - しゅーまっは
https://alpha.app.net/xxxhost - Porno Directory
https://alpha.app.net/redaystudios -
https://alpha.app.net/dritone - Dritone
https://alpha.app.net/aphexenizer - Aphex Li
https://alpha.app.net/olpingroup - Salley Chagoya
https://alpha.app.net/liliacostales - Lilia Costales
https://alpha.app.net/walterkeller - Walter Keller
https://alpha.app.net/onlineallergyrelief - Jessica Finley
https://alpha.app.net/lordarsheron - Herimann Hüller
https://alpha.app.net/codydental - Ted Grimmer
https://alpha.app.net/314 - Raspberry
https://alpha.app.net/kaaragee - 唐揚
https://alpha.app.net/lampom_ - R__
https://alpha.app.net/flamingow - Flamingow
https://alpha.app.net/reputationlocal - Julie Mirr
https://alpha.app.net/chrisbudd - Chris
https://alpha.app.net/raydere - atRaydere
https://alpha.app.net/bestagaric - BestAgaric
https://alpha.app.net/ernie - Ernie
https://alpha.app.net/enviromaxclean1 - Jamie Merrill
https://alpha.app.net/mopstarock - Arief Susilo Wibowo
https://alpha.app.net/iampulok - Ku Pulok
https://alpha.app.net/nick_scalzo_10 - Nick Scalzo
https://alpha.app.net/truskowski - Michael Truskowski
https://alpha.app.net/garethdigby - Gareth Digby
https://alpha.app.net/olioli - Oliver
https://alpha.app.net/nicoltr -
https://alpha.app.net/alanzeino - Alan Zeino
https://alpha.app.net/dom_b - Dom B para participar do Breakout Brasil
https://alpha.app.net/ralf - Ralf Rottmann
https://alpha.app.net/eschix - Dominik Eschbach
https://alpha.app.net/peter_hacker - DrT
https://alpha.app.net/morgeez - Christopher Odiley
https://alpha.app.net/larna - Jurica Beroš
https://alpha.app.net/partyedu - muhamad bahrul
https://alpha.app.net/legendslandsca - Legends Landscape Supply Inc.
https://alpha.app.net/chort - Chort Zero
https://alpha.app.net/imikezero - The Doctor
https://alpha.app.net/leisureindustries - Leisure Industries
https://alpha.app.net/haradai - はらだい
https://alpha.app.net/vimax - Vimax Store
https://alpha.app.net/martindaleanimal - Martindale Animal Clinic
https://alpha.app.net/sppaulsandra - Sandra Paul
https://alpha.app.net/alfiewilliam -
https://alpha.app.net/forumurfa - ForumUrfa.com
https://alpha.app.net/josephsteggall -
https://alpha.app.net/racktear - Konstantin Nazarov
https://alpha.app.net/giuseppebrus - Giuseppe Bruschi
https://alpha.app.net/ddavid -
https://alpha.app.net/mqqqs2 -
https://alpha.app.net/gustavogutierrez122 -
https://alpha.app.net/jovitammsye -
https://alpha.app.net/kch - Caio Chassot
https://alpha.app.net/kbmusicmc - K.Backhaus
https://alpha.app.net/lyubava - Lyubov Kravtsova
https://alpha.app.net/plindsay - peter lindsay
https://alpha.app.net/employerbenefits - MHC insurance - employerbenefits.ca
https://alpha.app.net/modernahang - Soheil Asghari
https://alpha.app.net/kkn - ちと
https://alpha.app.net/tylerdurden - Tyler Durden
https://alpha.app.net/minusforty - Minus Forty
https://alpha.app.net/moonglowlight - Moon Glow Lightscapes
https://alpha.app.net/luxuryluke - Luke Dorny
https://alpha.app.net/code_chimp - Bastian
https://alpha.app.net/nordicenergy - Nordic Energy Systems Ltd.
https://alpha.app.net/oakhomeleisure - Oakville Home Leisure
https://alpha.app.net/onsite - Onsite Contracting Inc.
https://alpha.app.net/h_enjin - Enjin
https://alpha.app.net/failabrion - Michael Sturm
https://alpha.app.net/taviscaron - Alexey Sychev
https://alpha.app.net/parisbuildingsales - Paris Building Sales Ltd.
https://alpha.app.net/zacharyowen - Zachary Owen
https://alpha.app.net/kazio -
https://alpha.app.net/servcon - Servcon Inc.
https://alpha.app.net/tenstorage - Ten Mini Storage
https://alpha.app.net/kiiro_color - kiiro color
https://alpha.app.net/dznovels -
https://alpha.app.net/msrenaz - Sirena Zotz
https://alpha.app.net/androidpolice - Android Police
https://alpha.app.net/dougmeade - Doug Meade
https://alpha.app.net/beadbydead12 - Md Rohaizad
https://alpha.app.net/pejer - Henrik Pejer
https://alpha.app.net/markowen - Mark Owen
https://alpha.app.net/mused_mubarez_5 - Mused Mubarez
https://alpha.app.net/xanderray - Xander Ray
https://alpha.app.net/sahramir - Torsten Bahlo
https://alpha.app.net/verzenkung - VerZenkung
https://alpha.app.net/kesne - Jordan Gensler
https://alpha.app.net/iab00d - AbduLelaH
https://alpha.app.net/thedogmarket - The Dog Market
https://alpha.app.net/tfingroup -
https://alpha.app.net/siro - しろにゃん
https://alpha.app.net/chucho - Chucho
https://alpha.app.net/confidentbrown - ConfidentBrown
https://alpha.app.net/sylviasaid - Sylvia Said
https://alpha.app.net/josh64 - Josh
https://alpha.app.net/timmysays - Timmy Says
https://alpha.app.net/raihan4u2 - Lily
https://alpha.app.net/doorcentre - Door Centre
https://alpha.app.net/8s - でひぽん
https://alpha.app.net/thegardener - The Gardener
https://alpha.app.net/sigil - Sigil
https://alpha.app.net/goldenskye - goldenskye
https://alpha.app.net/eik3 - Eike Herzbach
https://alpha.app.net/primeholidays - Prime Holidays & Resorts
https://alpha.app.net/ollili - Oliver
https://alpha.app.net/dommaden - dommaden
https://alpha.app.net/pnp4nagios - Joerg Linge
https://alpha.app.net/1steffen9 - 1Steffen9
https://alpha.app.net/nio - Antoine Houdaille
https://alpha.app.net/illuminatus23 - Sebastian Bartoschek
https://alpha.app.net/tomitzel - Tomita Militaru
https://alpha.app.net/spotfree1 - Odylon Garo
https://alpha.app.net/trubid - trubid
https://alpha.app.net/henriksverin - Henrik Sverin
https://alpha.app.net/nonumberless - NONUMBERLESS
https://alpha.app.net/shamsensei - Mr Sham
https://alpha.app.net/jella - Jella
https://alpha.app.net/jordan_m_bean - jordan m bean
https://alpha.app.net/mikerastiello - Mike Rastiello
https://alpha.app.net/mattti - Mateusz
https://alpha.app.net/nulookcarpet - Attila Iklady
https://alpha.app.net/electrostar - Eugen Ungureanu
https://alpha.app.net/swiftpaw - Swiftpaw
https://alpha.app.net/mossari - mossari
https://alpha.app.net/justinpdj - Justin Jackson
https://alpha.app.net/kubokazu - とんかつ
https://alpha.app.net/sonsuzrom -
https://alpha.app.net/kienle - Christian Kienle
https://alpha.app.net/westcoastkate - Kate Bourland
https://alpha.app.net/ultratorq - Ultra Torq
https://alpha.app.net/fiaskogaul - Fiaskogaul
https://alpha.app.net/tarachandro - Tara Vanhonacker
https://alpha.app.net/uppercanada - UCAH
https://alpha.app.net/elbblick - Gerhard
https://alpha.app.net/gadgetvirtuoso - Matthew J Stevens
https://alpha.app.net/oynatinfo - oynat
https://alpha.app.net/guildenstern - Andreas
https://alpha.app.net/sweetnsexy - Rgn
https://alpha.app.net/birs - wael fathi
https://alpha.app.net/matlab - みつくり
https://alpha.app.net/vanbeeks - Vanbeeks Garden
https://alpha.app.net/shoshan - Shoshan
https://alpha.app.net/llamarbltn - Lamar Bolton
https://alpha.app.net/tlcarpet1 - Kyle Dillon
https://alpha.app.net/instantdane - Dane Findley
https://alpha.app.net/terabitia - tay
https://alpha.app.net/peterjtonkin - Peter J. Tonkin - The Lifestyle Architect
https://alpha.app.net/kyleswager - Kyle Swager
https://alpha.app.net/svenkuntz - Sven Kuntz
https://alpha.app.net/joudaghmeubel - joudagh meubel jepara
https://alpha.app.net/hare_jia - hare
https://alpha.app.net/alsternerd - alsternerd
https://alpha.app.net/greensaniclean1 - Ronald McIntire
https://alpha.app.net/willyxoft - Willy Mejia
https://alpha.app.net/selfpublish2 - Ryan Girardo
https://alpha.app.net/adanamasajsalonum - Adana masaj salonu - 0546 420 1001 - Paris SPA
https://alpha.app.net/thinkcode - Thinkcode
https://alpha.app.net/mersinmasajsalonu - Mersin masaj salonu Mersin masaj Mersin Masöz İçel
https://alpha.app.net/trungquang25 -
https://alpha.app.net/pagn - Patrick Gniffke
https://alpha.app.net/jahuma79 - Jaime Huerta
https://alpha.app.net/myonlinebizsystem - My Online Biz System
https://alpha.app.net/peipeipe - Shunpei Matsushita
https://alpha.app.net/ukdriven205 - Larry King
https://alpha.app.net/lehmann_m5 - Martin Lehmann
https://alpha.app.net/carpetnerds - Kareem Williams
https://alpha.app.net/webnettworkscvai2 - TheWebNettWork
https://alpha.app.net/jpb - Jan
https://alpha.app.net/sidasa - Sidasa
https://alpha.app.net/ivaivelina - Ivelina
https://alpha.app.net/circlesandy - sandycircle
https://alpha.app.net/pablom -
https://alpha.app.net/jje - Jon Edwards
https://alpha.app.net/r_hak_35 - はくぅ
https://alpha.app.net/myfashionpoints -
https://alpha.app.net/feedaladvard - Feedal Advard
https://alpha.app.net/lexpostma - Lex Postma
https://alpha.app.net/geza - Géza
https://alpha.app.net/bicyclist - Uwe Hauck
https://alpha.app.net/aalaap - Aalaap Ghag
https://alpha.app.net/arifansariseo - arif ansari
https://alpha.app.net/wrightlandscape - Wright Landscape
https://alpha.app.net/marcelnbg - Marcel Silhard
https://alpha.app.net/soyer - Soyer Evden Eve Nakliyat
https://alpha.app.net/okuyucu - Okuyucu.com
https://alpha.app.net/alejrest - Roque Salinas
https://alpha.app.net/jimstyrealty - Jims Realty
https://alpha.app.net/brandonautorepair -
https://alpha.app.net/cnnmortgage - Nicole Francis
https://alpha.app.net/john_nye - John Nye
https://alpha.app.net/lovebeyand1d - ana
https://alpha.app.net/inimad - Imad Rhali
https://alpha.app.net/1stvamp - Wes Mason
https://alpha.app.net/chilihousesf - Han Lijun
https://alpha.app.net/ydgmarketing - Darien Hill
https://alpha.app.net/tawilson2014 - T Antoinette Wilson
https://alpha.app.net/marisa_fitzgerald - Marisa Fitzgerald
https://alpha.app.net/adanamasajsaloncom - Adana Masaj Salonu Adana 0546 420 1001 Paris SPA
https://alpha.app.net/jstodberg - Johan Stodberg
https://alpha.app.net/adanaspanet - Adana SPA Adana - 0546 420 1001 - Paris SPA
https://alpha.app.net/robtolchard - Rob Tolchard
https://alpha.app.net/backroadsrebellion - Hunt Braden
https://alpha.app.net/tagteamempower - Robin Kemp
https://alpha.app.net/claimseo - ClaimSEO
https://alpha.app.net/kritzelkomplex - kritzelkomplex
https://alpha.app.net/weaverpedro - Pedro Weaver
https://alpha.app.net/hitmist - Hitmist Germany
https://alpha.app.net/derherrf - Fabian Kretzer
https://alpha.app.net/ahmdabdlla - Ahmad Abd Allah
https://alpha.app.net/earthproclean1 - David Bigi
https://alpha.app.net/gregnemer - Greg Nemer
https://alpha.app.net/c1 - ya4rushi
https://alpha.app.net/integrahc - Dimitiry Papkov
https://alpha.app.net/eudes - Luiz Claudio Eudes Corrêa
https://alpha.app.net/davidmarsh - David Marsh
https://alpha.app.net/ansoriroma - Ansori Roma
https://alpha.app.net/minton - Greg Minton
https://alpha.app.net/neilandsports - Neil Rosan
https://alpha.app.net/maryloun -
https://alpha.app.net/jlabbott - Jeffrey Abbott
https://alpha.app.net/bajardepeso1 -
https://alpha.app.net/karlaortega -
https://alpha.app.net/susanmorris -
https://alpha.app.net/carriecarpenter - Carrie Carpenter
https://alpha.app.net/soukkanya_phommalang - Soukkanya Phommalangsy
https://alpha.app.net/miapples - miApples - tech/social/news
https://alpha.app.net/thotrangpro89 - Trần hồng
https://alpha.app.net/barbaraj - Barbara Jones
https://alpha.app.net/ryanott - Ryan Ott
https://alpha.app.net/unitedbiotechworld - Pharmaceutical companies in india
https://alpha.app.net/bettyduncan02 - Betty Duncan
https://alpha.app.net/mertesacker -
https://alpha.app.net/oksklim - Oksana
https://alpha.app.net/alexmark09 -
https://alpha.app.net/ironrod - David Walters
https://alpha.app.net/amritaclub - Amritaua
https://alpha.app.net/productospeluqueria - Productos Peluqueria Ibiza
https://alpha.app.net/kurumsal - kurumsal
https://alpha.app.net/akdeniznakliyat -
https://alpha.app.net/louispsmith -
https://alpha.app.net/sagasumi - 常葉
https://alpha.app.net/tanmayi_royal - Tanmayi Royal
https://alpha.app.net/hippocratesinst - Hippocrates Health Institute
https://alpha.app.net/garvinmcdoogle - Garvin Mcdoogle
https://alpha.app.net/crawlerguys -
https://alpha.app.net/fbrem - Florian Bremer
https://alpha.app.net/johnmarchini - John Marchini
https://alpha.app.net/ghulam -
https://alpha.app.net/twojslub -
https://alpha.app.net/nelsonzhu - Nelson zhu
https://alpha.app.net/julien - Julien Genestoux
https://alpha.app.net/cristamourn -
https://alpha.app.net/taxipetersburg - Jim Neuman
https://alpha.app.net/andyspainting - Andy Warren
https://alpha.app.net/positionly - Positionly
https://alpha.app.net/serzh_dobrin - Sergo Dobrin
https://alpha.app.net/kukv - 玲二
https://alpha.app.net/styleinfashion -
https://alpha.app.net/claireatwaves - Claire Thompson
https://alpha.app.net/elsxia - elsxia
https://alpha.app.net/rezi - 七瀬玲二
https://alpha.app.net/alasca - driks
https://alpha.app.net/heyeh - Shiva
https://alpha.app.net/drainandleakpros - DrainandLeakRepairPros
https://alpha.app.net/jaguadarte - izzie
https://alpha.app.net/bturner9 - B.T.
https://alpha.app.net/stumax - Stuart Maxwell
https://alpha.app.net/omarquazi - Omar Quazi
https://alpha.app.net/davidkflowers - David Flowers
https://alpha.app.net/jessiew -
https://alpha.app.net/ftto - Fatima Abdulrahman
https://alpha.app.net/taoris - Joli
https://alpha.app.net/charlie_november - C N
https://alpha.app.net/arianelazaga - Ariane Lazaga
https://alpha.app.net/darrenlittle - Darren Little
https://alpha.app.net/danitaa - Danita Andrews
https://alpha.app.net/carlodelossantos - Carlo Delos Santos
https://alpha.app.net/genstepura - Gen Stepura
https://alpha.app.net/yaylakul -
https://alpha.app.net/truongthi - Trương Thi
https://alpha.app.net/beverly_king_568 - Beverly King
https://alpha.app.net/judyfengliu - Judy Feng Liu
https://alpha.app.net/hc_s - Hanno Schwede
https://alpha.app.net/kingsway -
https://alpha.app.net/alcva - Alfred van Amelsvoort
https://alpha.app.net/myrongolden - Myron Golden
https://alpha.app.net/ardy88 - ardy88
https://alpha.app.net/koala_yumeno - Koala_Yumeno
https://alpha.app.net/miniel -
https://alpha.app.net/jensuschrist - JensusChirst
https://alpha.app.net/ashleyrizwan -
https://alpha.app.net/forest2 - forest2
https://alpha.app.net/petrickhampton - Petrick Hampton
https://alpha.app.net/josegonzalez2 -
https://alpha.app.net/dungxkt50 - DuDu
https://alpha.app.net/jackdawn21 -
https://alpha.app.net/nickloose - Nick Loose
https://alpha.app.net/zhyrax - Axel Olsson
https://alpha.app.net/designgraphiq - DesignGraphiq
https://alpha.app.net/kellypoul -
https://alpha.app.net/haraldlink - Harald Link
https://alpha.app.net/sexylingerie -
https://alpha.app.net/dsont - Daniel Sont
https://alpha.app.net/soredmado - So Red ma Do Podcast
https://alpha.app.net/emma_farmer - Emma Farmer
https://alpha.app.net/imajitour -
https://alpha.app.net/brandon57 - Brandon
https://alpha.app.net/buhmuckl - Ko van Bold
https://alpha.app.net/profile - Profile App
https://alpha.app.net/beautifulflowers888 - beautifulflowers888
https://alpha.app.net/arkanjil - Trey
https://alpha.app.net/healthfire - Christopher Byars
https://alpha.app.net/phoenixtree - L L
https://alpha.app.net/keronpa_ -
https://alpha.app.net/viermalbe - Ben
https://alpha.app.net/aprct3_fruit17 -
https://alpha.app.net/protocatechuic - Protocatechuic
https://alpha.app.net/mosspropertychicago - Jonathon Moss
https://alpha.app.net/plumberperthwa - Colin Hayes
https://alpha.app.net/officialglofx - Dan Watkins
https://alpha.app.net/mjtsai - Michael Tsai
https://alpha.app.net/franklyn54 - Franklyn54
https://alpha.app.net/hypermb -
https://alpha.app.net/crystak - Drone Fan
https://alpha.app.net/neleheise - Nele Heise
https://alpha.app.net/webmotivationuk - Alex Ramsden
https://alpha.app.net/mountcomfortrv - Toney Crawford
https://alpha.app.net/bradsellstexas - bradsellstexas.com
https://alpha.app.net/liton307 - Liton Kumar Podder
https://alpha.app.net/eshopkingfelt6700 -
https://alpha.app.net/brianjp68 - brianjp68
https://alpha.app.net/aboalfwares - Abo Alfwares
https://alpha.app.net/savingonwell1 - Trevor Ferguson
https://alpha.app.net/redundanzesser - Tobias S.
https://alpha.app.net/kristyh - Pearl Bliss
https://alpha.app.net/scarlet_miu - みぅ
https://alpha.app.net/mikescott8 - Mike MikeScott8 Hamilton
https://alpha.app.net/cyc - さいく
https://alpha.app.net/smithsam - Sam Smith
https://alpha.app.net/webmasterspost - Robert Stone
https://alpha.app.net/viralleadmachine -
https://alpha.app.net/keisharuffme - Keisha Ruff
https://alpha.app.net/cuongmachikiem -
https://alpha.app.net/servicebizcoach - Service Biz Coach
https://alpha.app.net/tonightsgame - Tonightsgame
https://alpha.app.net/nfd - Nathaniel Daught
https://alpha.app.net/sumoncps - Clipping Path Specialist
https://alpha.app.net/lisagonzalez2 - Lisa Gonzalez
https://alpha.app.net/voniz - Voniz Tech
https://alpha.app.net/david_murrow - David Murrow
https://alpha.app.net/ayeshaammad -
https://alpha.app.net/rainbowrabbit - Games & App
https://alpha.app.net/weboshi - うぇぼし~
https://alpha.app.net/btconf - beyond tellerrand
https://alpha.app.net/elgrowzone - Volker Mohr
https://alpha.app.net/evotopia - Pusat Obat Herbal
https://alpha.app.net/andrespuentes - Andres Puentes
https://alpha.app.net/sherman1peterson - Sherman Peterson
https://alpha.app.net/couponseva - Coupon Seva
https://alpha.app.net/lingerielegsappeal -
https://alpha.app.net/phi_ -
https://alpha.app.net/mstern84 - mStern
https://alpha.app.net/pepper - pepper
https://alpha.app.net/krosh - Dmitry
https://alpha.app.net/armin67 - armin hamidian
https://alpha.app.net/clshamo -
https://alpha.app.net/lsf3og - Thorsten
https://alpha.app.net/marianchorniy - Мар'ян Чорній
https://alpha.app.net/julianjames - julian
https://alpha.app.net/mrlund2 - MrLund2
https://alpha.app.net/stuartlonn - Stuart Lonn
https://alpha.app.net/cheeeroru -
https://alpha.app.net/morningdara - MorningDara Ent
https://alpha.app.net/esters - sven
https://alpha.app.net/abstruct - Rohan Kalstra
https://alpha.app.net/m_boeckelmann -
https://alpha.app.net/markus3141 - Markus
https://alpha.app.net/dellmerca -
https://alpha.app.net/cherimarz - Cherie Marquez
https://alpha.app.net/karengillan - Aftab Alam
https://alpha.app.net/danyglover - Danny Glover
https://alpha.app.net/bonfirebuilding - bonfirebuilding
https://alpha.app.net/coastalclean - Sean Qualls
https://alpha.app.net/rogerdoger - Frank The Tank
https://alpha.app.net/ranksingapore - John Micheal
https://alpha.app.net/shedsue -
https://alpha.app.net/dancrider - Dan Crider
https://alpha.app.net/pinecomweb - Pinecom Website Design
https://alpha.app.net/zonbur - zonbur john
https://alpha.app.net/beanathlete - Be An Athlete
https://alpha.app.net/feyaq13 - Anastasia
https://alpha.app.net/2014mj - MJ
https://alpha.app.net/denisse_brito - Denisse Brito
https://alpha.app.net/vampire - Anton
https://alpha.app.net/makhatma -
https://alpha.app.net/jvistuff - <script>alert("This account will not post new item
https://alpha.app.net/eeleo_eeleowireless - Eeleo Eeleo-wireless
https://alpha.app.net/davemee - Dave Mee
https://alpha.app.net/twelch - Teressa Welch
https://alpha.app.net/simranjit - simranjit singh
https://alpha.app.net/actywave - actywave
https://alpha.app.net/zaintanas - gabriel
https://alpha.app.net/niallhoran - gabriel
https://alpha.app.net/ato5fundake2done - アハハbot
https://alpha.app.net/diegofc27 - Diego
https://alpha.app.net/hammondco - Brian Robbins
https://alpha.app.net/marl_mine - きゃなわ
https://alpha.app.net/elegantlyiced - Kelsey Turner
https://alpha.app.net/twitachi - ツイタチ
https://alpha.app.net/burkhard - Burkhard Krauss
https://alpha.app.net/denturesdoneright - Dentures Done Right
https://alpha.app.net/romain_yvrard - #romain_y
https://alpha.app.net/someonewith - Jill Kerr
https://alpha.app.net/tomus12 -
https://alpha.app.net/lisyguide - Lisyguide
https://alpha.app.net/pearlb - pearlB
https://alpha.app.net/susilexa -
https://alpha.app.net/phannon - Pat Hannon
https://alpha.app.net/chrissicool - chrissicool
https://alpha.app.net/mellaservices - Mella Window & Carpet Cleaning
https://alpha.app.net/yourztruly -
https://alpha.app.net/cubedriver64 - Roger
https://alpha.app.net/ctznx -
https://alpha.app.net/mobileapp2015 - Mobile Apps 2015
https://alpha.app.net/strickvl - Alex Strick van Linschoten
https://alpha.app.net/emma77wilsonrea - Emma Wilson Rea
https://alpha.app.net/degiovanniluigi - degiovanniluigi
https://alpha.app.net/hbuddin - Howard Buddin
https://alpha.app.net/sirenawilliams - sirena williams
https://alpha.app.net/bestinabot -
https://alpha.app.net/sarinaslegal -
https://alpha.app.net/mr_eis - Marius
https://alpha.app.net/hongan30002000 - ng hong an
https://alpha.app.net/rebort2jame - Rebort Jame
https://alpha.app.net/ipears - Jan van Iperen
https://alpha.app.net/tornado1014 - 이현찬
https://alpha.app.net/lanakent -
https://alpha.app.net/marguskristof -
https://alpha.app.net/meldungk - Helge Kletti
https://alpha.app.net/medicalppt - Sophia Loren
https://alpha.app.net/susanmoore - susan moore
https://alpha.app.net/steffend_ - Steffen D. 
https://alpha.app.net/boudevihhi - Laura Bodewig (ラウラ•ボーデヴィッヒ)
https://alpha.app.net/mipservices - William King
https://alpha.app.net/isanechek - Alexander
https://alpha.app.net/ventossoftware - ventos Software
https://alpha.app.net/powerofsuccess - Power of Success
https://alpha.app.net/kyt - Know your Timeline
https://alpha.app.net/devdev - Dev2
https://alpha.app.net/rentipad -
https://alpha.app.net/metalab - Metalab
https://alpha.app.net/waynedarnell - Wayne Darnell
https://alpha.app.net/clamotty - Clamotty - Your Fashion Stylist
https://alpha.app.net/jewelbracydemaio - Jewel Bracy DeMaio
https://alpha.app.net/scrapcar - Scrap Car Removal Perth
https://alpha.app.net/ontopdocs1 - Brian Lavender
https://alpha.app.net/suzu418 - すずしろ
https://alpha.app.net/anvil - .
https://alpha.app.net/eroge - WOTA
https://alpha.app.net/ing156 - Сергей Гребенщиков
https://alpha.app.net/mddivorcecenter - David L. Reuben
https://alpha.app.net/southcargo - south
https://alpha.app.net/sceniclandscaping - Mitchell Knapp
https://alpha.app.net/palmcitypools - Nikki Wheatly
https://alpha.app.net/accountabilityplus - Drew Cameron
https://alpha.app.net/coretherapyassoc -
https://alpha.app.net/claudettepools - Claudette Potter
https://alpha.app.net/arvore - q iso?
https://alpha.app.net/gauravsharma214 -
https://alpha.app.net/khairulakbar - Khairul Akbar
https://alpha.app.net/mpenke - Matthias Penke
https://alpha.app.net/thorstenbutz - Thorsten Butz
https://alpha.app.net/dperrera - Dan Perrera
https://alpha.app.net/psychotalk - Psychotalk
https://alpha.app.net/pakisai - Xiuhui
https://alpha.app.net/drbobnelson - Bob Nelson
https://alpha.app.net/tungluu0808 -
https://alpha.app.net/wikigeeks - Wikigeeks Podcast
https://alpha.app.net/giomax - Giovanni Cavalli
https://alpha.app.net/lendlayer - LendLayer
https://alpha.app.net/enversoz -
https://alpha.app.net/deckerweb - David Decker
https://alpha.app.net/blatherus - Owen Lewery
https://alpha.app.net/coffeedunninctx -
https://alpha.app.net/ortner - Skipper
https://alpha.app.net/swishclothing -
https://alpha.app.net/dobstey - deb
https://alpha.app.net/mirukuru - みるくる
https://alpha.app.net/maxdittrich - Max Dittrich
https://alpha.app.net/revine - Revine Vhan
https://alpha.app.net/bzbcleaning1 - Dimitriy Papkov
https://alpha.app.net/dee71 -
https://alpha.app.net/nicolaseabbott - Nicolas Abbott
https://alpha.app.net/andres_feria - Andrés Feria
https://alpha.app.net/suyane - suyane
https://alpha.app.net/alexanderjoelmoron - Alexander Joel MH
https://alpha.app.net/chsweb - Jono Young
https://alpha.app.net/heavendaemon - GeorgeFreeman
https://alpha.app.net/earlst3wart -
https://alpha.app.net/rutthy -
https://alpha.app.net/leou90 - du lịch nhật bản
https://alpha.app.net/yusrahomar -
https://alpha.app.net/petabytezdotcom - Julien Rocher
https://alpha.app.net/wijayatamawsata - wijayatama wisata
https://alpha.app.net/faisalfachrureza - Faisal Fachrureza
https://alpha.app.net/qurayyatscout - كشافة تعليم القريات
https://alpha.app.net/podigee - podigee
https://alpha.app.net/wannabees1 - Luisa J Hannah
https://alpha.app.net/cartonsofcigarettes - cartonsofcigarettes
https://alpha.app.net/lutoma - Lukas Martini
https://alpha.app.net/nickolaylewis - Nickolay Lewis
https://alpha.app.net/amjadali - amjadali
https://alpha.app.net/powerloans - Power Loans
https://alpha.app.net/jamesnigel11 - James Nigel
https://alpha.app.net/beckmesser - Martin Schotterer
https://alpha.app.net/biznesvdom - Mikhail Bondarenko
https://alpha.app.net/manodere - manoDerecha
https://alpha.app.net/franzturati - Francesco Turati
https://alpha.app.net/yenioyunoyna - OyunOynaSkor
https://alpha.app.net/pennystock1 - Jennifer Kelly
https://alpha.app.net/horax - Christian P
https://alpha.app.net/xtof - Christophe Ducamp
https://alpha.app.net/mpospese - Mark Pospesel
https://alpha.app.net/crido - Crido
https://alpha.app.net/ur5 - ur5
https://alpha.app.net/leoofborg - Bad Uncle Leo Marihart
https://alpha.app.net/diascooter - diascooterNews
https://alpha.app.net/ishaq_ishaq_165 - Lussi Ishaq
https://alpha.app.net/andr3w74 - Andrew corton
https://alpha.app.net/akinaksu -
https://alpha.app.net/ayumu - Ayumu
https://alpha.app.net/ekalayaseo - ekalayaseo
https://alpha.app.net/ms_nikkij -
https://alpha.app.net/chessking68 - Chessking
https://alpha.app.net/janpaul_pastorcastil - paul castillo
https://alpha.app.net/jaemazor -
https://alpha.app.net/siphosith - Siphosith
https://alpha.app.net/dbardi - Daniel S. Bardi
https://alpha.app.net/gazouzou -
https://alpha.app.net/ravensherbert - Raven Sherbert
https://alpha.app.net/vanillachief - Christopher van der Meyden
https://alpha.app.net/wannabeman - Yoon Junseok
https://alpha.app.net/keithmelendrez2 - Keith Melendrez
https://alpha.app.net/haspermaggi - Hasper Maggi
https://alpha.app.net/hayttman - Hayttman
https://alpha.app.net/kremer - Jan Kremer
https://alpha.app.net/dardanelos - Emilio Burillo
https://alpha.app.net/goodasnew1 - Ryan Beach
https://alpha.app.net/gulicom3 - gulicom3
https://alpha.app.net/hammalbaloch - Baloch Khan
https://alpha.app.net/mike___naughton - Mike Naughton
https://alpha.app.net/wyinoue - wyinoue
https://alpha.app.net/drinkipa - Ken Weingold
https://alpha.app.net/americaneagle - Adam Frazier
https://alpha.app.net/xenimapp - XENIM App
https://alpha.app.net/ogyaa - おぎゃあ
https://alpha.app.net/wijaya88 -
https://alpha.app.net/fletsche - Das Fletsche
https://alpha.app.net/dnisttahuz - Daniel Nisttahuz
https://alpha.app.net/zakys - Ντετέκτιβ Ζακυνθινός
https://alpha.app.net/gaensler - Kay Gaensler
https://alpha.app.net/andrewabernathy - Andrew Abernathy
https://alpha.app.net/daniel_suarez_169067 - El Dany Suarez
https://alpha.app.net/podcastideen - Podcast-Ideen
https://alpha.app.net/accooper02 - Anthony Cooper
https://alpha.app.net/timlowe - Tim Lowe
https://alpha.app.net/ksuehring - Karsten Suehring
https://alpha.app.net/fisharsenal - Ebonyworld TV
https://alpha.app.net/keanofcu - HM Sprenger
https://alpha.app.net/artphotodude -
https://alpha.app.net/nerxs - Nik
https://alpha.app.net/haibara - Haibara Kasumi
https://alpha.app.net/simplyfixit - SimplyFixIt
https://alpha.app.net/peruvian_kines - PeruvianKines

19
cal/LICENSE Normal file
View file

@ -0,0 +1,19 @@
Copyright (c) 2013 Tobias Diekershoff
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

29
cal/README.md Normal file
View file

@ -0,0 +1,29 @@
Calendar Export
===============
This addon makes it possible to export the events posted by your users,
so they can be imported into other calendar applications.
Exporting a calendar is an _opt-in_ feature which has to be activated by each
of the users in the _addon settings_. As the admin you can only provide the
service but should not force it upon your users.
The calendars are exported at
http://example.com/cal/username/export/format
currently the following formats are supported
* ical
* csv.
Author
------
This addon is developed by [Tobias Diekershoff](https://f.diekershoff.de/profile/tobias).
License
-------
This addon is licensed under the [MIT](http://opensource.org/licenses/MIT)
license, see also the LICENSE file in the addon directory.

200
cal/cal.php Normal file
View file

@ -0,0 +1,200 @@
<?php
/********************************************************************
* Name: Calendar Export
* Description: This addon exports the public events of your users as calendar files
* Version: 0.1
* Author: Tobias Diekershoff <https://f.diekershoff.de/profile/tobias>
* License: MIT
* Status: Unsupported
* ******************************************************************/
function cal_install()
{
register_hook('plugin_settings', 'addon/cal/cal.php', 'cal_addon_settings');
register_hook('plugin_settings_post', 'addon/cal/cal.php', 'cal_addon_settings_post');
}
function cal_uninstall()
{
unregister_hook('plugin_settings', 'addon/cal/cal.php', 'cal_addon_settings');
unregister_hook('plugin_settings_post', 'addon/cal/cal.php', 'cal_addon_settings_post');
}
function cal_module()
{
}
/* pathes
* /cal/$user/export/$format
* currently supported formats are ical (iCalendar) and CSV
*/
function cal_content()
{
$a = get_app();
$o = "";
if ($a->argc == 1) {
$o .= "<h3>".t('Event Export')."</h3><p>".t('You can download public events from: ').$a->get_baseurl()."/cal/username/export/ical</p>";
} elseif ($a->argc==4) {
// get the parameters from the request we just received
$username = $a->argv[1];
$do = $a->argv[2];
$format = $a->argv[3];
// check that there is a user matching the requested profile
$r = q("SELECT uid FROM user WHERE nickname='".$username."' LIMIT 1;");
if (count($r))
{
$uid = $r[0]['uid'];
} else {
killme();
}
// if we shall do anything other then export, end here
if (! $do == 'export' )
killme();
// check if the user allows us to share the profile
$enable = get_pconfig( $uid, 'cal', 'enable');
if (! $enable == 1) {
info(t('The user does not export the calendar.'));
return;
}
// we are allowed to show events
// get the timezone the user is in
$r = q("SELECT timezone FROM user WHERE uid=".$uid." LIMIT 1;");
if (count($r))
$timezone = $r[0]['timezone'];
// does the user who requests happen to be the owner of the events
// requested? then show all of your events, otherwise only those that
// don't have limitations set in allow_cid and allow_gid
if (local_user() == $uid) {
$r = q("SELECT `start`, `finish`, `adjust`, `summary`, `desc`, `location` FROM `event` WHERE `uid`=".$uid." and `cid`=0;");
} else {
$r = q("SELECT `start`, `finish`, `adjust`, `summary`, `desc`, `location` FROM `event` WHERE `allow_cid`='' and `allow_gid`='' and `uid`='".$uid."' and `cid`='0';");
}
// we have the events that are available for the requestor
// now format the output according to the requested format
$res = cal_format_output($r, $format, $timezone);
if (! $res=='')
info($res);
} else {
// wrong number of parameters
killme();
}
return $o;
}
function cal_format_output ($r, $f, $tz)
{
$res = t('This calendar format is not supported');
switch ($f)
{
// format the exported data as a CSV file
case "csv":
header("Content-type: text/csv");
$o = '"Subject", "Start Date", "Start Time", "Description", "End Date", "End Time", "Location"' . PHP_EOL;
foreach ($r as $rr) {
// TODO the time / date entries don't include any information about the
// timezone the event is scheduled in :-/
$tmp1 = strtotime($rr['start']);
$tmp2 = strtotime($rr['finish']);
$time_format = "%H:%M:%S";
$date_format = "%Y-%m-%d";
$o .= '"'.$rr['summary'].'", "'.strftime($date_format, $tmp1) .
'", "'.strftime($time_format, $tmp1).'", "'.$rr['desc'] .
'", "'.strftime($date_format, $tmp2) .
'", "'.strftime($time_format, $tmp2) .
'", "'.$rr['location'].'"' . PHP_EOL;
}
echo $o;
killme();
case "ical":
header("Content-type: text/ics");
$o = 'BEGIN:VCALENDAR'. PHP_EOL
. 'VERSION:2.0' . PHP_EOL
. 'PRODID:-//friendica calendar export//0.1//EN' . PHP_EOL;
// TODO include timezone informations in cases were the time is not in UTC
// see http://tools.ietf.org/html/rfc2445#section-4.8.3
// . 'BEGIN:VTIMEZONE' . PHP_EOL
// . 'TZID:' . $tz . PHP_EOL
// . 'END:VTIMEZONE' . PHP_EOL;
// TODO instead of PHP_EOL CRLF should be used for long entries
// but test your solution against http://icalvalid.cloudapp.net/
// also long lines SHOULD be split at 75 characters length
foreach ($r as $rr) {
if ($rr['adjust'] == 1) {
$UTC = 'Z';
} else {
$UTC = '';
}
$o .= 'BEGIN:VEVENT' . PHP_EOL;
if ($rr[start]) {
$tmp = strtotime($rr['start']);
$dtformat = "%Y%m%dT%H%M%S".$UTC;
$o .= 'DTSTART:'.strftime($dtformat, $tmp).PHP_EOL;
}
if ($rr['finish']) {
$tmp = strtotime($rr['finish']);
$dtformat = "%Y%m%dT%H%M%S".$UTC;
$o .= 'DTEND:'.strftime($dtformat, $tmp).PHP_EOL;
}
if ($rr['summary'])
$tmp = $rr['summary'];
$tmp = str_replace(PHP_EOL, PHP_EOL.' ',$tmp);
$tmp = addcslashes($tmp, ',;');
$o .= 'SUMMARY:' . $tmp . PHP_EOL;
if ($rr['desc'])
$tmp = $rr['desc'];
$tmp = str_replace(PHP_EOL, PHP_EOL.' ',$tmp);
$tmp = addcslashes($tmp, ',;');
$o .= 'DESCRIPTION:' . $tmp . PHP_EOL;
if ($rr['location']) {
$tmp = $rr['location'];
$tmp = str_replace(PHP_EOL, PHP_EOL.' ',$tmp);
$tmp = addcslashes($tmp, ',;');
$o .= 'LOCATION:' . $tmp . PHP_EOL;
}
$o .= 'END:VEVENT' . PHP_EOL;
}
$o .= 'END:VCALENDAR' . PHP_EOL;
echo $o;
killme();
}
return $res;
}
function cal_addon_settings_post ( &$a, &$b )
{
if (! local_user())
return;
if (!x($_POST,'cal-submit'))
return;
set_pconfig(local_user(),'cal','enable',intval($_POST['cal-enable']));
}
function cal_addon_settings ( &$a, &$s )
{
if (! local_user())
return;
$enabled = get_pconfig(local_user(), 'cal', 'enable');
$checked = (($enabled) ? ' checked="checked" ' : '');
$url = $a->get_baseurl().'/cal/'.$a->user['nickname'].'/export/<em>format</em>';
$s .= '<span id="settings_cal_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_cal_expanded\'); openClose(\'settings_cal_inflated\');">';
$s .= '<h3>'.t('Export Events').'</h3>';
$s .= '</span>';
$s .= '<div id="settings_cal_expanded" class="settings-block" style="display: none;">';
$s .= '<span class="fakelink" onclick="openClose(\'settings_cal_expanded\'); openClose(\'settings_cal_inflated\');">';
$s .= '<h3>'.t('Export Events').'</h3>';
$s .= '</span>';
$s .= '<div id="cal-wrapper">';
$s .= '<p>'.t('If this is enabled, your public events will be available at').' <strong>'.$url.'</strong></p>';
$s .= '<p>'.t('Currently supported formats are ical and csv.').'</p>';
$s .= '<label id="cal-enable-label" for="cal-checkbox">'. t('Enable calendar export') .'</label>';
$s .= '<input id="cal-checkbox" type="checkbox" name="cal-enable" value="1" ' . $checked . '/>';
$s .= '<div class="settings-submit-wrapper" ><input type="submit" name="cal-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div>';
$s .= '<div class="clear"></div>';
$s .= '</div>';
$s .= '</div>';
}
?>

54
cal/lang/C/messages.po Normal file
View file

@ -0,0 +1,54 @@
# ADDON cal
# Copyright (C)
# This file is distributed under the same license as the Friendica cal addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: cal.php:33
msgid "Event Export"
msgstr ""
#: cal.php:33
msgid "You can download public events from: "
msgstr ""
#: cal.php:53
msgid "The user does not export the calendar."
msgstr ""
#: cal.php:83
msgid "This calendar format is not supported"
msgstr ""
#: cal.php:181 cal.php:185
msgid "Export Events"
msgstr ""
#: cal.php:189
msgid "If this is enabled, your public events will be available at"
msgstr ""
#: cal.php:190
msgid "Currently supported formats are ical and csv."
msgstr ""
#: cal.php:191
msgid "Enable calendar export"
msgstr ""
#: cal.php:193
msgid "Save Settings"
msgstr ""

12
cal/lang/C/strings.php Normal file
View file

@ -0,0 +1,12 @@
<?php
;
$a->strings["Event Export"] = "";
$a->strings["You can download public events from: "] = "";
$a->strings["The user does not export the calendar."] = "";
$a->strings["This calendar format is not supported"] = "";
$a->strings["Export Events"] = "";
$a->strings["If this is enabled, your public events will be available at"] = "";
$a->strings["Currently supported formats are ical and csv."] = "";
$a->strings["Enable calendar export"] = "";
$a->strings["Submit"] = "";

56
cal/lang/cs/messages.po Normal file
View file

@ -0,0 +1,56 @@
# ADDON cal
# Copyright (C)
# This file is distributed under the same license as the Friendica cal addon package.
#
#
# Translators:
# Michal Šupler <msupler@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2014-09-07 11:04+0000\n"
"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: cal.php:33
msgid "Event Export"
msgstr "Export událostí"
#: cal.php:33
msgid "You can download public events from: "
msgstr "Veřejné události si můžete stánout z:"
#: cal.php:53
msgid "The user does not export the calendar."
msgstr "Uživatel kalenář neexportuje."
#: cal.php:83
msgid "This calendar format is not supported"
msgstr "Tento kalendářový formát není podporován."
#: cal.php:181 cal.php:185
msgid "Export Events"
msgstr "Export událostí"
#: cal.php:189
msgid "If this is enabled, your public events will be available at"
msgstr "Pokud je toto povoleno, vaše veřejné události budou viditelné na"
#: cal.php:190
msgid "Currently supported formats are ical and csv."
msgstr "Aktuálně podporované formáty jsou ical a csv."
#: cal.php:191
msgid "Enable calendar export"
msgstr "Povolit export kalendáře"
#: cal.php:193
msgid "Save Settings"
msgstr "Uložit Nastavení"

16
cal/lang/cs/strings.php Normal file
View file

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
}}
;
$a->strings["Event Export"] = "Export událostí";
$a->strings["You can download public events from: "] = "Veřejné události si můžete stánout z:";
$a->strings["The user does not export the calendar."] = "Uživatel kalenář neexportuje.";
$a->strings["This calendar format is not supported"] = "Tento kalendářový formát není podporován.";
$a->strings["Export Events"] = "Export událostí";
$a->strings["If this is enabled, your public events will be available at"] = "Pokud je toto povoleno, vaše veřejné události budou viditelné na";
$a->strings["Currently supported formats are ical and csv."] = "Aktuálně podporované formáty jsou ical a csv.";
$a->strings["Enable calendar export"] = "Povolit export kalendáře";
$a->strings["Save Settings"] = "Uložit Nastavení";

56
cal/lang/de/messages.po Normal file
View file

@ -0,0 +1,56 @@
# ADDON cal
# Copyright (C)
# This file is distributed under the same license as the Friendica cal addon package.
#
#
# Translators:
# bavatar <tobias.diekershoff@gmx.net>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2014-09-28 10:39+0000\n"
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cal.php:33
msgid "Event Export"
msgstr "Ereignis Export"
#: cal.php:33
msgid "You can download public events from: "
msgstr "Du kannst öffentliche Ereignisse hier herunterladen;"
#: cal.php:53
msgid "The user does not export the calendar."
msgstr "Diese_r Nutzer_in exportiert den Kalender nicht."
#: cal.php:83
msgid "This calendar format is not supported"
msgstr "Dieses Kalenderformat wird nicht unterstützt."
#: cal.php:181 cal.php:185
msgid "Export Events"
msgstr "Exportiere Ereignisse"
#: cal.php:189
msgid "If this is enabled, your public events will be available at"
msgstr "Wenn dies aktiviert ist, werden alle öffentliche Ereignisse unter folgender URL verfügbar sein"
#: cal.php:190
msgid "Currently supported formats are ical and csv."
msgstr "Derzeit werden die Formate ical und csv unterstützt."
#: cal.php:191
msgid "Enable calendar export"
msgstr "Kalenderexport aktivieren"
#: cal.php:193
msgid "Save Settings"
msgstr "Einstellungen speichern"

16
cal/lang/de/strings.php Normal file
View file

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_de")) {
function string_plural_select_de($n){
return ($n != 1);;
}}
;
$a->strings["Event Export"] = "Ereignis Export";
$a->strings["You can download public events from: "] = "Du kannst öffentliche Ereignisse hier herunterladen;";
$a->strings["The user does not export the calendar."] = "Diese_r Nutzer_in exportiert den Kalender nicht.";
$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
$a->strings["Export Events"] = "Exportiere Ereignisse";
$a->strings["If this is enabled, your public events will be available at"] = "Wenn dies aktiviert ist, werden alle öffentliche Ereignisse unter folgender URL verfügbar sein";
$a->strings["Currently supported formats are ical and csv."] = "Derzeit werden die Formate ical und csv unterstützt.";
$a->strings["Enable calendar export"] = "Kalenderexport aktivieren";
$a->strings["Save Settings"] = "Einstellungen speichern";

55
cal/lang/es/messages.po Normal file
View file

@ -0,0 +1,55 @@
# ADDON cal
# Copyright (C)
# This file is distributed under the same license as the Friendica cal addon package.
#
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2016-10-10 20:48+0000\n"
"Last-Translator: Athalbert\n"
"Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cal.php:33
msgid "Event Export"
msgstr "Exportación de evento"
#: cal.php:33
msgid "You can download public events from: "
msgstr "Puede descargar eventos públicos desde:"
#: cal.php:53
msgid "The user does not export the calendar."
msgstr "El usuario no exporta el calendario."
#: cal.php:83
msgid "This calendar format is not supported"
msgstr "No se soporta este formato de calendario"
#: cal.php:181 cal.php:185
msgid "Export Events"
msgstr "Exportar Eventos"
#: cal.php:189
msgid "If this is enabled, your public events will be available at"
msgstr "Si esto está habilitado, sus eventos públicos estarán permitidos en"
#: cal.php:190
msgid "Currently supported formats are ical and csv."
msgstr "Los formatos soportados actualmente son ical y csv."
#: cal.php:191
msgid "Enable calendar export"
msgstr "Habilitar exportar calendario"
#: cal.php:193
msgid "Save Settings"
msgstr "Guardar Ajustes"

16
cal/lang/es/strings.php Normal file
View file

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
return ($n != 1);;
}}
;
$a->strings["Event Export"] = "Exportación de evento";
$a->strings["You can download public events from: "] = "Puede descargar eventos públicos desde:";
$a->strings["The user does not export the calendar."] = "El usuario no exporta el calendario.";
$a->strings["This calendar format is not supported"] = "No se soporta este formato de calendario";
$a->strings["Export Events"] = "Exportar Eventos";
$a->strings["If this is enabled, your public events will be available at"] = "Si esto está habilitado, sus eventos públicos estarán permitidos en";
$a->strings["Currently supported formats are ical and csv."] = "Los formatos soportados actualmente son ical y csv.";
$a->strings["Enable calendar export"] = "Habilitar exportar calendario";
$a->strings["Save Settings"] = "Guardar Ajustes";

56
cal/lang/fr/messages.po Normal file
View file

@ -0,0 +1,56 @@
# ADDON cal
# Copyright (C)
# This file is distributed under the same license as the Friendica cal addon package.
#
#
# Translators:
# Tubuntu <tubuntu@testimonium.be>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2014-09-07 09:24+0000\n"
"Last-Translator: Tubuntu <tubuntu@testimonium.be>\n"
"Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: cal.php:33
msgid "Event Export"
msgstr "Exportation d'événement"
#: cal.php:33
msgid "You can download public events from: "
msgstr "Vous pouvez télécharger les événements publiques de :"
#: cal.php:53
msgid "The user does not export the calendar."
msgstr "L'utilisateur n'exporte pas le calendrier."
#: cal.php:83
msgid "This calendar format is not supported"
msgstr "Ce format de calendrier n'est pas pris en charge"
#: cal.php:181 cal.php:185
msgid "Export Events"
msgstr "Exporter les événements"
#: cal.php:189
msgid "If this is enabled, your public events will be available at"
msgstr "Si activé, vos événements publiques seront disponible à"
#: cal.php:190
msgid "Currently supported formats are ical and csv."
msgstr "Les formats actuellement pris en charge sont ical et csv."
#: cal.php:191
msgid "Enable calendar export"
msgstr "Activer l'export de calendrier"
#: cal.php:193
msgid "Save Settings"
msgstr "Sauvegarder les paramètres"

16
cal/lang/fr/strings.php Normal file
View file

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_fr")) {
function string_plural_select_fr($n){
return ($n > 1);;
}}
;
$a->strings["Event Export"] = "Exportation d'événement";
$a->strings["You can download public events from: "] = "Vous pouvez télécharger les événements publiques de :";
$a->strings["The user does not export the calendar."] = "L'utilisateur n'exporte pas le calendrier.";
$a->strings["This calendar format is not supported"] = "Ce format de calendrier n'est pas pris en charge";
$a->strings["Export Events"] = "Exporter les événements";
$a->strings["If this is enabled, your public events will be available at"] = "Si activé, vos événements publiques seront disponible à";
$a->strings["Currently supported formats are ical and csv."] = "Les formats actuellement pris en charge sont ical et csv.";
$a->strings["Enable calendar export"] = "Activer l'export de calendrier";
$a->strings["Save Settings"] = "Sauvegarder les paramètres";

56
cal/lang/it/messages.po Normal file
View file

@ -0,0 +1,56 @@
# ADDON cal
# Copyright (C)
# This file is distributed under the same license as the Friendica cal addon package.
#
#
# Translators:
# fabrixxm <fabrix.xm@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2014-09-10 10:30+0000\n"
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cal.php:33
msgid "Event Export"
msgstr "Esporta Evento"
#: cal.php:33
msgid "You can download public events from: "
msgstr "Puoi scaricare gli eventi publici da:"
#: cal.php:53
msgid "The user does not export the calendar."
msgstr "L'utente non esporta il calendario."
#: cal.php:83
msgid "This calendar format is not supported"
msgstr "Il formato del calendario non è supportato"
#: cal.php:181 cal.php:185
msgid "Export Events"
msgstr "Esporta Eventi"
#: cal.php:189
msgid "If this is enabled, your public events will be available at"
msgstr "Se abilitato, i tuoi eventi pubblici saranno disponibili a"
#: cal.php:190
msgid "Currently supported formats are ical and csv."
msgstr "I formati supportati sono ical e csv."
#: cal.php:191
msgid "Enable calendar export"
msgstr "Abilita esporazione calendario"
#: cal.php:193
msgid "Save Settings"
msgstr "Salva Impostazioni"

16
cal/lang/it/strings.php Normal file
View file

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
return ($n != 1);;
}}
;
$a->strings["Event Export"] = "Esporta Evento";
$a->strings["You can download public events from: "] = "Puoi scaricare gli eventi publici da:";
$a->strings["The user does not export the calendar."] = "L'utente non esporta il calendario.";
$a->strings["This calendar format is not supported"] = "Il formato del calendario non è supportato";
$a->strings["Export Events"] = "Esporta Eventi";
$a->strings["If this is enabled, your public events will be available at"] = "Se abilitato, i tuoi eventi pubblici saranno disponibili a";
$a->strings["Currently supported formats are ical and csv."] = "I formati supportati sono ical e csv.";
$a->strings["Enable calendar export"] = "Abilita esporazione calendario";
$a->strings["Save Settings"] = "Salva Impostazioni";

View file

@ -0,0 +1,57 @@
# ADDON cal
# Copyright (C)
# This file is distributed under the same license as the Friendica cal addon package.
#
#
# Translators:
# John Brazil, 2015
# Sérgio Lima <oigreslima@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2015-01-31 01:24+0000\n"
"Last-Translator: John Brazil\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/friendica/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: cal.php:33
msgid "Event Export"
msgstr "Exportar Evento"
#: cal.php:33
msgid "You can download public events from: "
msgstr "Você pode baixar eventos públicos de:"
#: cal.php:53
msgid "The user does not export the calendar."
msgstr "O usuário não exportou o calendário."
#: cal.php:83
msgid "This calendar format is not supported"
msgstr "Esse formato de calendário não é suportado."
#: cal.php:181 cal.php:185
msgid "Export Events"
msgstr "Exporta Eventos"
#: cal.php:189
msgid "If this is enabled, your public events will be available at"
msgstr "Se isso estiver habiltiado, seus eventos públicos estarão disponíveis"
#: cal.php:190
msgid "Currently supported formats are ical and csv."
msgstr "Os formatos disponíveis atualmente são ical e csv."
#: cal.php:191
msgid "Enable calendar export"
msgstr "Habilite exportar calendário"
#: cal.php:193
msgid "Save Settings"
msgstr "Salvar as Configurações"

View file

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_pt_br")) {
function string_plural_select_pt_br($n){
return ($n > 1);;
}}
;
$a->strings["Event Export"] = "Exportar Evento";
$a->strings["You can download public events from: "] = "Você pode baixar eventos públicos de:";
$a->strings["The user does not export the calendar."] = "O usuário não exportou o calendário.";
$a->strings["This calendar format is not supported"] = "Esse formato de calendário não é suportado.";
$a->strings["Export Events"] = "Exporta Eventos";
$a->strings["If this is enabled, your public events will be available at"] = "Se isso estiver habiltiado, seus eventos públicos estarão disponíveis";
$a->strings["Currently supported formats are ical and csv."] = "Os formatos disponíveis atualmente são ical e csv.";
$a->strings["Enable calendar export"] = "Habilite exportar calendário";
$a->strings["Save Settings"] = "Salvar as Configurações";

56
cal/lang/ro/messages.po Normal file
View file

@ -0,0 +1,56 @@
# ADDON cal
# Copyright (C)
# This file is distributed under the same license as the Friendica cal addon package.
#
#
# Translators:
# Doru DEACONU <dumitrudeaconu@yahoo.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2014-11-27 14:13+0000\n"
"Last-Translator: Doru DEACONU <dumitrudeaconu@yahoo.com>\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/friendica/language/ro_RO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ro_RO\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#: cal.php:33
msgid "Event Export"
msgstr "Exportare Eveniment"
#: cal.php:33
msgid "You can download public events from: "
msgstr "Puteți descărca evenimente publice de la:"
#: cal.php:53
msgid "The user does not export the calendar."
msgstr "Utilizatorul nu își exportă calendarul."
#: cal.php:83
msgid "This calendar format is not supported"
msgstr "Acest format de calendar nu este acceptat"
#: cal.php:181 cal.php:185
msgid "Export Events"
msgstr "Exportați Evenimente"
#: cal.php:189
msgid "If this is enabled, your public events will be available at"
msgstr "Dacă este activat, evenimente dvs publice vor fi disponibile pe"
#: cal.php:190
msgid "Currently supported formats are ical and csv."
msgstr "Formate acceptate în prezent sunt ical şi csv."
#: cal.php:191
msgid "Enable calendar export"
msgstr "Activați exportarea calendarului"
#: cal.php:193
msgid "Save Settings"
msgstr "Salvare Configurări"

16
cal/lang/ro/strings.php Normal file
View file

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_ro")) {
function string_plural_select_ro($n){
return ($n==1?0:((($n%100>19)||(($n%100==0)&&($n!=0)))?2:1));;
}}
;
$a->strings["Event Export"] = "Exportare Eveniment";
$a->strings["You can download public events from: "] = "Puteți descărca evenimente publice de la:";
$a->strings["The user does not export the calendar."] = "Utilizatorul nu își exportă calendarul.";
$a->strings["This calendar format is not supported"] = "Acest format de calendar nu este acceptat";
$a->strings["Export Events"] = "Exportați Evenimente";
$a->strings["If this is enabled, your public events will be available at"] = "Dacă este activat, evenimente dvs publice vor fi disponibile pe";
$a->strings["Currently supported formats are ical and csv."] = "Formate acceptate în prezent sunt ical şi csv.";
$a->strings["Enable calendar export"] = "Activați exportarea calendarului";
$a->strings["Save Settings"] = "Salvare Configurări";

56
cal/lang/ru/messages.po Normal file
View file

@ -0,0 +1,56 @@
# ADDON cal
# Copyright (C)
# This file is distributed under the same license as the Friendica cal addon package.
#
#
# Translators:
# Stanislav N. <pztrn@pztrn.name>, 2017
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2017-04-08 17:06+0000\n"
"Last-Translator: Stanislav N. <pztrn@pztrn.name>\n"
"Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: cal.php:33
msgid "Event Export"
msgstr "Экспорт событий"
#: cal.php:33
msgid "You can download public events from: "
msgstr "Вы можете скачать публичные события из:"
#: cal.php:53
msgid "The user does not export the calendar."
msgstr "Пользователь не экспортировал календарь."
#: cal.php:83
msgid "This calendar format is not supported"
msgstr "Этот формат календарей не поддерживается"
#: cal.php:181 cal.php:185
msgid "Export Events"
msgstr "Экспорт событий"
#: cal.php:189
msgid "If this is enabled, your public events will be available at"
msgstr "Если эта настройка включена, то ваши публичные события будут доступны на:"
#: cal.php:190
msgid "Currently supported formats are ical and csv."
msgstr "Текущие поддерживаемые форматы ical и csv."
#: cal.php:191
msgid "Enable calendar export"
msgstr "Включить экспорт календаря"
#: cal.php:193
msgid "Save Settings"
msgstr "Сохранить настройки"

16
cal/lang/ru/strings.php Normal file
View file

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_ru")) {
function string_plural_select_ru($n){
return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);;
}}
;
$a->strings["Event Export"] = "Экспорт событий";
$a->strings["You can download public events from: "] = "Вы можете скачать публичные события из:";
$a->strings["The user does not export the calendar."] = "Пользователь не экспортировал календарь.";
$a->strings["This calendar format is not supported"] = "Этот формат календарей не поддерживается";
$a->strings["Export Events"] = "Экспорт событий";
$a->strings["If this is enabled, your public events will be available at"] = "Если эта настройка включена, то ваши публичные события будут доступны на:";
$a->strings["Currently supported formats are ical and csv."] = "Текущие поддерживаемые форматы ical и csv.";
$a->strings["Enable calendar export"] = "Включить экспорт календаря";
$a->strings["Save Settings"] = "Сохранить настройки";

View file

@ -0,0 +1,56 @@
# ADDON cal
# Copyright (C)
# This file is distributed under the same license as the Friendica cal addon package.
#
#
# Translators:
# mytbk <mytbk920423@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2017-10-02 05:52+0000\n"
"Last-Translator: mytbk <mytbk920423@gmail.com>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/Friendica/friendica/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: cal.php:33
msgid "Event Export"
msgstr "事件导出"
#: cal.php:33
msgid "You can download public events from: "
msgstr "你可以从这里下载公开事件:"
#: cal.php:53
msgid "The user does not export the calendar."
msgstr "这个用户没有导出日历。"
#: cal.php:83
msgid "This calendar format is not supported"
msgstr "不支持这个日历格式"
#: cal.php:181 cal.php:185
msgid "Export Events"
msgstr "导出事件"
#: cal.php:189
msgid "If this is enabled, your public events will be available at"
msgstr "如果这个被启用,你的公开事件会在"
#: cal.php:190
msgid "Currently supported formats are ical and csv."
msgstr "当前支持的格式是 ical 和 csv."
#: cal.php:191
msgid "Enable calendar export"
msgstr "启用日历导出"
#: cal.php:193
msgid "Save Settings"
msgstr "保存设置"

View file

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_zh_cn")) {
function string_plural_select_zh_cn($n){
return 0;;
}}
;
$a->strings["Event Export"] = "事件导出";
$a->strings["You can download public events from: "] = "你可以从这里下载公开事件:";
$a->strings["The user does not export the calendar."] = "这个用户没有导出日历。";
$a->strings["This calendar format is not supported"] = "不支持这个日历格式";
$a->strings["Export Events"] = "导出事件";
$a->strings["If this is enabled, your public events will be available at"] = "如果这个被启用,你的公开事件会在";
$a->strings["Currently supported formats are ical and csv."] = "当前支持的格式是 ical 和 csv.";
$a->strings["Enable calendar export"] = "启用日历导出";
$a->strings["Save Settings"] = "保存设置";

7
convpath/README Executable file
View file

@ -0,0 +1,7 @@
convpath
This addon converts all internal paths according to the current scheme.
That means that if a page is called via https then all internal links are also converted into https.
Same happens when you call your page with http.

102
convpath/convpath.php Normal file
View file

@ -0,0 +1,102 @@
<?php
/**
* Name: Convert Paths
* Description: Converts all internal paths according to the current scheme (http or https)
* Version: 1.0
* Author: Michael Vogel <https://pirati.ca/profile/heluecht>
* Status: Unsupported
*/
function convpath_install() {
register_hook('page_end', 'addon/convpath/convpath.php', 'convpath_page_end');
register_hook('page_header', 'addon/convpath/convpath.php', 'convpath_page_header');
register_hook('ping_xmlize', 'addon/convpath/convpath.php', 'convpath_ping_xmlize_hook');
register_hook('prepare_body', 'addon/convpath/convpath.php', 'convpath_prepare_body_hook');
register_hook('display_item', 'addon/convpath/convpath.php', 'convpath_display_item_hook');
}
function convpath_uninstall() {
unregister_hook('page_end', 'addon/convpath/convpath.php', 'convpath_page_end');
unregister_hook('page_header', 'addon/convpath/convpath.php', 'convpath_page_header');
unregister_hook('ping_xmlize', 'addon/convpath/convpath.php', 'convpath_ping_xmlize_hook');
unregister_hook('prepare_body', 'addon/convpath/convpath.php', 'convpath_prepare_body_hook');
unregister_hook('display_item', 'addon/convpath/convpath.php', 'convpath_display_item_hook');
}
function convpath_ping_xmlize_hook(&$a, &$o) {
$o["photo"] = convpath_url($a, $o["photo"]);
}
function convpath_page_header(&$a, &$o){
$o = convpath_convert($o);
}
function convpath_page_end(&$a, &$o){
$o = convpath_convert($o);
if (isset($a->page['aside']))
$a->page['aside'] = convpath_convert($a->page['aside']);
}
function convpath_prepare_body_hook(&$a, &$o) {
$o["html"] = convpath_convert($o["html"]);
}
function convpath_display_item_hook(&$a, &$o) {
if (isset($o["output"])) {
if (isset($o["output"]["thumb"]))
$o["output"]["thumb"] = convpath_url($a, $o["output"]["thumb"]);
if (isset($o["output"]["author-avatar"]))
$o["output"]["author-avatar"] = convpath_url($a, $o["output"]["author-avatar"]);
if (isset($o["output"]["owner-avatar"]))
$o["output"]["owner-avatar"] = convpath_url($a, $o["output"]["owner-avatar"]);
if (isset($o["output"]["owner_photo"]))
$o["output"]["owner_photo"] = convpath_url($a, $o["output"]["owner_photo"]);
}
}
function convpath_url($a, $path) {
if ($path == "")
return("");
$ssl = (substr($a->get_baseurl(), 0, 8) == "https://");
if ($ssl) {
$search = "http://".$a->get_hostname();
$replace = "https://".$a->get_hostname();
} else {
$search = "https://".$a->get_hostname();
$replace = "http://".$a->get_hostname();
}
$path = str_replace($search, $replace, $path);
return($path);
}
/*
Converts a given path according to the current scheme
*/
function convpath_convert($path) {
global $a;
if ($path == "")
return("");
$ssl = (substr($a->get_baseurl(), 0, 8) == "https://");
if ($ssl) {
$search = "http://".$a->get_hostname();
$replace = "https://".$a->get_hostname();
} else {
$search = "https://".$a->get_hostname();
$replace = "http://".$a->get_hostname();
}
$searcharr = array("src='".$search, 'src="'.$search);
$replacearr = array("src='".$replace, 'src="'.$replace);
$path = str_replace($searcharr, $replacearr, $path);
//$path = str_replace($search, $replace, $path);
return($path);
}

View file

7
defaultfeatures/README Normal file
View file

@ -0,0 +1,7 @@
Default Features Plugin
This plugin allows the site admin to choose which Additional Features
are on by default for newly created users on the site. The defaults
apply to all new users upon registration, but do not impact a user's
ability to turn features on/off once their account has been created.
These default settings do not impact existing users.

View file

@ -0,0 +1,60 @@
<?php
/**
* Name: Default Features
* Description: Choose which Additional Features are on by default for new users on the site.
* Version: 1.0
* Author: Michael Johnston
* Status: Unsupported
*/
function defaultfeatures_install() {
register_hook('register_account', 'addon/defaultfeatures/defaultfeatures.php', 'defaultfeatures_register');
logger("installed defaultfeatures plugin");
}
function defaultfeatures_uninstall() {
unregister_hook('register_account', 'addon/defaultfeatures/defaultfeatures.php', 'defaultfeatures_register');
logger("uninstalled defaultfeatures plugin");
}
function defaultfeatures_register($a, $newuid) {
$arr = array();
$features = get_features();
foreach($features as $fname => $fdata) {
foreach(array_slice($fdata,1) as $f) {
set_pconfig($newuid,'feature',$f[0],((intval(get_config('defaultfeatures',$f[0]))) ? "1" : "0"));
}
}
}
function defaultfeatures_plugin_admin_post (&$a) {
check_form_security_token_redirectOnErr('/admin/plugins/defaultfeatures', 'defaultfeaturessave');
foreach($_POST as $k => $v) {
if(strpos($k,'feature_') === 0) {
set_config('defaultfeatures',substr($k,8),((intval($v)) ? 1 : 0));
}
}
info( t('Features updated') . EOL);
}
function defaultfeatures_plugin_admin (&$a, &$o) {
$t = get_markup_template( "admin.tpl", "addon/defaultfeatures/" );
$token = get_form_security_token("defaultfeaturessave");
$arr = array();
$features = get_features();
foreach($features as $fname => $fdata) {
$arr[$fname] = array();
$arr[$fname][0] = $fdata[0];
foreach(array_slice($fdata,1) as $f) {
$arr[$fname][1][] = array('feature_' .$f[0],$f[1],((intval(get_config('defaultfeatures',$f[0]))) ? "1" : "0"),$f[2],array(t('Off'),t('On')));
}
}
//logger("Features: " . print_r($arr,true));
$o = replace_macros($t, array(
'$submit' => t('Save Settings'),
'$features' => $arr,
'$form_security_token' => $token
));
}

View file

@ -0,0 +1,34 @@
# ADDON defaultfeatures
# Copyright (C)
# This file is distributed under the same license as the Friendica defaultfeatures addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-23 14:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: defaultfeatures.php:36
msgid "Features updated"
msgstr ""
#: defaultfeatures.php:48
msgid "Off"
msgstr ""
#: defaultfeatures.php:48
msgid "On"
msgstr ""
#: defaultfeatures.php:55
msgid "Save Settings"
msgstr ""

View file

@ -0,0 +1,14 @@
{{*
* AUTOMATICALLY GENERATED TEMPLATE
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
*
*}}
<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
{{foreach $features as $f}}
<h3 class="settings-heading">{{$f.0}}</h3>
{{foreach $f.1 as $fcat}}
{{include file="field_yesno.tpl" field=$fcat}}
{{/foreach}}
{{/foreach}}
<div class="submit"><input type="submit" name="defaultfeatures-submit" value="{{$submit}}" /></div>

14
editplain/editplain.css Executable file
View file

@ -0,0 +1,14 @@
#editplain-enable-label {
float: left;
width: 200px;
margin-bottom: 25px;
}
#editplain-checkbox {
float: left;
}

86
editplain/editplain.php Executable file
View file

@ -0,0 +1,86 @@
<?php
/**
* Name: Editplain
* Description: This addon is deprecated and has been replaced with the "Advanced Features" setting. Admins should remove this addon when their core code is updated to include advanced feature settings.
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
* Status: Unsupported
*
*/
function editplain_install() {
register_hook('plugin_settings', 'addon/editplain/editplain.php', 'editplain_settings');
register_hook('plugin_settings_post', 'addon/editplain/editplain.php', 'editplain_settings_post');
logger("installed editplain");
}
function editplain_uninstall() {
unregister_hook('plugin_settings', 'addon/editplain/editplain.php', 'editplain_settings');
unregister_hook('plugin_settings_post', 'addon/editplain/editplain.php', 'editplain_settings_post');
logger("removed editplain");
}
/**
*
* Callback from the settings post function.
* $post contains the $_POST array.
* We will make sure we've got a valid user account
* and if so set our configuration setting for this person.
*
*/
function editplain_settings_post($a,$post) {
if(! local_user() || (! x($_POST,'editplain-submit')))
return;
set_pconfig(local_user(),'system','plaintext',intval($_POST['editplain']));
info( t('Editplain settings updated.') . EOL);
}
/**
*
* Called from the Plugin Setting form.
* Add our own settings info to the page.
*
*/
function editplain_settings(&$a,&$s) {
if(! local_user())
return;
/* Add our stylesheet to the page so we can make our settings look nice */
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/editplain/editplain.css' . '" media="all" />' . "\r\n";
/* Get the current state of our config variable */
$enabled = get_pconfig(local_user(),'system','plaintext');
$checked = (($enabled) ? ' checked="checked" ' : '');
/* Add some HTML to the existing form */
$s .= '<div class="settings-block">';
$s .= '<h3>' . t('Editplain Settings') . '</h3>';
$s .= '<div id="editplain-enable-wrapper">';
$s .= '<label id="editplain-enable-label" for="editplain-checkbox">' . t('Disable richtext status editor') . '</label>';
$s .= '<input id="editplain-checkbox" type="checkbox" name="editplain" value="1" ' . $checked . '/>';
$s .= '</div><div class="clear"></div>';
/* provide a submit button */
$s .= '<div class="settings-submit-wrapper" ><input type="submit" name="editplain-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
}

View file

@ -0,0 +1,34 @@
# ADDON editplain
# Copyright (C)
# This file is distributed under the same license as the Friendica editplain addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: editplain.php:46
msgid "Editplain settings updated."
msgstr ""
#: editplain.php:76
msgid "Editplain Settings"
msgstr ""
#: editplain.php:78
msgid "Disable richtext status editor"
msgstr ""
#: editplain.php:84
msgid "Submit"
msgstr ""

View file

@ -0,0 +1,6 @@
<?php
$a->strings["Editplain settings updated."] = "Actualitzar la configuració de Editplain.";
$a->strings["Editplain Settings"] = "Configuració de Editplain";
$a->strings["Disable richtext status editor"] = "Deshabilitar l'editor d'estatus de texte enriquit";
$a->strings["Submit"] = "Enviar";

View file

@ -0,0 +1,36 @@
# ADDON editplain
# Copyright (C)
# This file is distributed under the same license as the Friendica editplain addon package.
#
#
# Translators:
# Michal Šupler <msupler@gmail.com>, 2014-2015
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2015-02-11 19:40+0000\n"
"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: editplain.php:46
msgid "Editplain settings updated."
msgstr "Editplain nastavení aktualizováno"
#: editplain.php:76
msgid "Editplain Settings"
msgstr "Editplain nastavení"
#: editplain.php:78
msgid "Disable richtext status editor"
msgstr "Zakázat richtext status editor"
#: editplain.php:84
msgid "Submit"
msgstr "Odeslat"

View file

@ -0,0 +1,11 @@
<?php
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
}}
;
$a->strings["Editplain settings updated."] = "Editplain nastavení aktualizováno";
$a->strings["Editplain Settings"] = "Editplain nastavení";
$a->strings["Disable richtext status editor"] = "Zakázat richtext status editor";
$a->strings["Submit"] = "Odeslat";

View file

@ -0,0 +1,37 @@
# ADDON editplain
# Copyright (C)
# This file is distributed under the same license as the Friendica editplain addon package.
#
#
# Translators:
# Abrax <webmaster@a-zwenkau.de>, 2014
# bavatar <tobias.diekershoff@gmx.net>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2014-10-15 12:19+0000\n"
"Last-Translator: Abrax <webmaster@a-zwenkau.de>\n"
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: editplain.php:46
msgid "Editplain settings updated."
msgstr "Editplain Einstellungen gespeichert."
#: editplain.php:76
msgid "Editplain Settings"
msgstr "Editplain Einstellungen"
#: editplain.php:78
msgid "Disable richtext status editor"
msgstr "Web-Editor für Beiträge deakivieren"
#: editplain.php:84
msgid "Submit"
msgstr "Senden"

View file

@ -0,0 +1,11 @@
<?php
if(! function_exists("string_plural_select_de")) {
function string_plural_select_de($n){
return ($n != 1);;
}}
;
$a->strings["Editplain settings updated."] = "Editplain Einstellungen gespeichert.";
$a->strings["Editplain Settings"] = "Editplain Einstellungen";
$a->strings["Disable richtext status editor"] = "Web-Editor für Beiträge deakivieren";
$a->strings["Submit"] = "Senden";

View file

@ -0,0 +1,6 @@
<?php
$a->strings["Editplain settings updated."] = "Ĝisdatigis la Editplain agordojn.";
$a->strings["Editplain Settings"] = "Agordoj por Editplain";
$a->strings["Disable richtext status editor"] = "Malŝalti la riĉteksto-redaktilon";
$a->strings["Submit"] = "Sendi";

View file

@ -0,0 +1,36 @@
# ADDON editplain
# Copyright (C)
# This file is distributed under the same license as the Friendica editplain addon package.
#
#
# Translators:
# Alberto Díaz Tormo <albertodiaztormo@gmail.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2016-10-23 11:35+0000\n"
"Last-Translator: Alberto Díaz Tormo <albertodiaztormo@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: editplain.php:46
msgid "Editplain settings updated."
msgstr "Ajustes de edición sencillos actualizados."
#: editplain.php:76
msgid "Editplain Settings"
msgstr "Ajustes de edición sencillos"
#: editplain.php:78
msgid "Disable richtext status editor"
msgstr "Desactivar el editor de texto enriquecido del estatus"
#: editplain.php:84
msgid "Submit"
msgstr "Enviar"

View file

@ -0,0 +1,11 @@
<?php
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
return ($n != 1);;
}}
;
$a->strings["Editplain settings updated."] = "Ajustes de edición sencillos actualizados.";
$a->strings["Editplain Settings"] = "Ajustes de edición sencillos";
$a->strings["Disable richtext status editor"] = "Desactivar el editor de texto enriquecido del estatus";
$a->strings["Submit"] = "Enviar";

View file

@ -0,0 +1,36 @@
# ADDON editplain
# Copyright (C)
# This file is distributed under the same license as the Friendica editplain addon package.
#
#
# Translators:
# Nicola Spanti <translations@nicola-spanti.info>, 2015
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2015-07-27 18:13+0000\n"
"Last-Translator: Nicola Spanti <translations@nicola-spanti.info>\n"
"Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: editplain.php:46
msgid "Editplain settings updated."
msgstr ""
#: editplain.php:76
msgid "Editplain Settings"
msgstr ""
#: editplain.php:78
msgid "Disable richtext status editor"
msgstr "Désactiver l'éditeur avancé de statut"
#: editplain.php:84
msgid "Submit"
msgstr "Soumettre"

View file

@ -0,0 +1,11 @@
<?php
if(! function_exists("string_plural_select_fr")) {
function string_plural_select_fr($n){
return ($n > 1);;
}}
;
$a->strings["Editplain settings updated."] = "";
$a->strings["Editplain Settings"] = "";
$a->strings["Disable richtext status editor"] = "Désactiver l'éditeur avancé de statut";
$a->strings["Submit"] = "Soumettre";

View file

@ -0,0 +1,6 @@
<?php
$a->strings["Editplain settings updated."] = "";
$a->strings["Editplain Settings"] = "";
$a->strings["Disable richtext status editor"] = "";
$a->strings["Submit"] = "Senda inn";

View file

@ -0,0 +1,36 @@
# ADDON editplain
# Copyright (C)
# This file is distributed under the same license as the Friendica editplain addon package.
#
#
# Translators:
# fabrixxm <fabrix.xm@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2014-10-22 07:54+0000\n"
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: editplain.php:46
msgid "Editplain settings updated."
msgstr "Impostazioni 'Editplain' aggiornate."
#: editplain.php:76
msgid "Editplain Settings"
msgstr "Impostazioni Editplain"
#: editplain.php:78
msgid "Disable richtext status editor"
msgstr "Disabilita l'editor di testo visuale"
#: editplain.php:84
msgid "Submit"
msgstr "Invia"

View file

@ -0,0 +1,11 @@
<?php
if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
return ($n != 1);;
}}
;
$a->strings["Editplain settings updated."] = "Impostazioni 'Editplain' aggiornate.";
$a->strings["Editplain Settings"] = "Impostazioni Editplain";
$a->strings["Disable richtext status editor"] = "Disabilita l'editor di testo visuale";
$a->strings["Submit"] = "Invia";

View file

@ -0,0 +1,6 @@
<?php
$a->strings["Editplain settings updated."] = "";
$a->strings["Editplain Settings"] = "";
$a->strings["Disable richtext status editor"] = "";
$a->strings["Submit"] = "Lagre";

View file

@ -0,0 +1,6 @@
<?php
$a->strings["Editplain settings updated."] = "";
$a->strings["Editplain Settings"] = "";
$a->strings["Disable richtext status editor"] = "";
$a->strings["Submit"] = "Potwierdź";

View file

@ -0,0 +1,6 @@
<?php
$a->strings["Editplain settings updated."] = "Configurações Editplain atualizadas.";
$a->strings["Editplain Settings"] = "Configurações Editplain";
$a->strings["Disable richtext status editor"] = "Disabilite o modo de edição richtext";
$a->strings["Submit"] = "Enviar";

View file

@ -0,0 +1,36 @@
# ADDON editplain
# Copyright (C)
# This file is distributed under the same license as the Friendica editplain addon package.
#
#
# Translators:
# Doru DEACONU <dumitrudeaconu@yahoo.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2014-11-27 14:13+0000\n"
"Last-Translator: Doru DEACONU <dumitrudeaconu@yahoo.com>\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/friendica/language/ro_RO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ro_RO\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#: editplain.php:46
msgid "Editplain settings updated."
msgstr "Configurările Editplain au fost actualizate."
#: editplain.php:76
msgid "Editplain Settings"
msgstr "Configurări Editplain"
#: editplain.php:78
msgid "Disable richtext status editor"
msgstr "Dezactivare editorul status de text îmbogățit"
#: editplain.php:84
msgid "Submit"
msgstr "Trimite"

View file

@ -0,0 +1,11 @@
<?php
if(! function_exists("string_plural_select_ro")) {
function string_plural_select_ro($n){
return ($n==1?0:((($n%100>19)||(($n%100==0)&&($n!=0)))?2:1));;
}}
;
$a->strings["Editplain settings updated."] = "Configurările Editplain au fost actualizate.";
$a->strings["Editplain Settings"] = "Configurări Editplain";
$a->strings["Disable richtext status editor"] = "Dezactivare editorul status de text îmbogățit";
$a->strings["Submit"] = "Trimite";

View file

@ -0,0 +1,36 @@
# ADDON editplain
# Copyright (C)
# This file is distributed under the same license as the Friendica editplain addon package.
#
#
# Translators:
# Stanislav N. <pztrn@pztrn.name>, 2017
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2017-04-08 17:10+0000\n"
"Last-Translator: Stanislav N. <pztrn@pztrn.name>\n"
"Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: editplain.php:46
msgid "Editplain settings updated."
msgstr "Настройки Editplain обновлены"
#: editplain.php:76
msgid "Editplain Settings"
msgstr "Настройки Editplain"
#: editplain.php:78
msgid "Disable richtext status editor"
msgstr "Отключить richtext status editor"
#: editplain.php:84
msgid "Submit"
msgstr "Добавить"

View file

@ -0,0 +1,11 @@
<?php
if(! function_exists("string_plural_select_ru")) {
function string_plural_select_ru($n){
return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);;
}}
;
$a->strings["Editplain settings updated."] = "Настройки Editplain обновлены";
$a->strings["Editplain Settings"] = "Настройки Editplain";
$a->strings["Disable richtext status editor"] = "Отключить richtext status editor";
$a->strings["Submit"] = "Добавить";

View file

@ -0,0 +1,3 @@
<?php
$a->strings["Submit"] = "Spara";

View file

@ -0,0 +1,6 @@
<?php
$a->strings["Editplain settings updated."] = "Editplain设置更新了";
$a->strings["Editplain Settings"] = "Editplain设置";
$a->strings["Disable richtext status editor"] = "使richtext现状编辑 不能用";
$a->strings["Submit"] = "提交";

29
extcron/extcron.php Executable file
View file

@ -0,0 +1,29 @@
<?php
/**
* Name: external cron
* Description: Use external server or service to run poller regularly
* Version: 1.0
* Author: Mike Macgirvin <https://macgirvin.com/profile/mike>
*
* Notes: External service needs to make a web request to http(s)://yoursite/extcron
* Status: Unsupported
*/
require_once "mod/worker.php";
function extcron_install() {}
function extcron_uninstall() {}
function extcron_module() {}
function extcron_init(&$a) {
worker_init($a);
killme();
// Deactivated
//proc_run('php','include/poller.php');
//killme();
}

View file

19
facebook/README.md Executable file
View file

@ -0,0 +1,19 @@
> # Note
> **Facebook Connector, Facebook Post Connector and Facebook Sync plugins are deprecated.**
> As of the moment you cannot bridge from or to Facebook with Friendica.
Installing the Friendica/Facebook connector
Detailed instructions how to use this plugin can be found at
the [How to: Friendica's Facebook Connector](https://github.com/friendica/friendica/wiki/How-to:-Friendica%E2%80%99s-Facebook-connector) page.
Vidoes and embeds will not be posted if there is no other content. Links
and images will be converted to a format suitable for the Facebook API and
long posts truncated - with a link to view the full post.
Facebook contacts will not be able to view private photos, as they are not able to
authenticate to your site to establish identity. We will address this
in a future release.
Info: please make sure that you understand all aspects due to Friendica's
default licence which is: [MIT License](https://github.com/friendica/friendica/blob/master/LICENSE)

13
facebook/facebook.css Executable file
View file

@ -0,0 +1,13 @@
#facebook-enable-wrapper {
margin-top: 20px;
}
#facebook-disable-wrapper {
margin-top: 20px;
}
#facebook-post-default-form input {
margin-top: 20px;
margin-right: 20px;
}

2140
facebook/facebook.php Normal file
View file

@ -0,0 +1,2140 @@
<?php
/**
* Name: Facebook Connector
* Version: 1.3
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
* Author: Tobias Hößl <https://github.com/CatoTH/>
* Status: Unsupported
*/
/**
* Installing the Friendica/Facebook connector
*
* Detailed instructions how to use this plugin can be found at
* https://github.com/friendica/friendica/wiki/How-to:-Friendica%E2%80%99s-Facebook-connector
*
* Vidoes and embeds will not be posted if there is no other content. Links
* and images will be converted to a format suitable for the Facebook API and
* long posts truncated - with a link to view the full post.
*
* Facebook contacts will not be able to view private photos, as they are not able to
* authenticate to your site to establish identity. We will address this
* in a future release.
*/
/** TODO
* - Implement a method for the administrator to delete all configuration data the plugin has created,
* e.g. the app_access_token
*/
// Size of maximum post length increased
// see http://www.facebook.com/schrep/posts/203969696349811
// define('FACEBOOK_MAXPOSTLEN', 420);
define('FACEBOOK_MAXPOSTLEN', 63206);
define('FACEBOOK_SESSION_ERR_NOTIFICATION_INTERVAL', 259200); // 3 days
define('FACEBOOK_DEFAULT_POLL_INTERVAL', 60); // given in minutes
define('FACEBOOK_MIN_POLL_INTERVAL', 5);
define('FACEBOOK_RTU_ERR_MAIL_AFTER_MINUTES', 180); // 3 hours
require_once('include/security.php');
function facebook_install() {
register_hook('post_local', 'addon/facebook/facebook.php', 'facebook_post_local');
register_hook('notifier_normal', 'addon/facebook/facebook.php', 'facebook_post_hook');
register_hook('jot_networks', 'addon/facebook/facebook.php', 'facebook_jot_nets');
register_hook('connector_settings', 'addon/facebook/facebook.php', 'facebook_plugin_settings');
register_hook('cron', 'addon/facebook/facebook.php', 'facebook_cron');
register_hook('enotify', 'addon/facebook/facebook.php', 'facebook_enotify');
register_hook('queue_predeliver', 'addon/facebook/facebook.php', 'fb_queue_hook');
}
function facebook_uninstall() {
unregister_hook('post_local', 'addon/facebook/facebook.php', 'facebook_post_local');
unregister_hook('notifier_normal', 'addon/facebook/facebook.php', 'facebook_post_hook');
unregister_hook('jot_networks', 'addon/facebook/facebook.php', 'facebook_jot_nets');
unregister_hook('connector_settings', 'addon/facebook/facebook.php', 'facebook_plugin_settings');
unregister_hook('cron', 'addon/facebook/facebook.php', 'facebook_cron');
unregister_hook('enotify', 'addon/facebook/facebook.php', 'facebook_enotify');
unregister_hook('queue_predeliver', 'addon/facebook/facebook.php', 'fb_queue_hook');
// hook moved
unregister_hook('post_local_end', 'addon/facebook/facebook.php', 'facebook_post_hook');
unregister_hook('plugin_settings', 'addon/facebook/facebook.php', 'facebook_plugin_settings');
}
/* declare the facebook_module function so that /facebook url requests will land here */
function facebook_module() {}
// If a->argv[1] is a nickname, this is a callback from Facebook oauth requests.
// If $_REQUEST["realtime_cb"] is set, this is a callback from the Real-Time Updates API
/**
* @param App $a
*/
function facebook_init(&$a) {
if (x($_REQUEST, "realtime_cb") && x($_REQUEST, "realtime_cb")) {
logger("facebook_init: Facebook Real-Time callback called", LOGGER_DEBUG);
if (x($_REQUEST, "hub_verify_token")) {
// this is the verification callback while registering for real time updates
$verify_token = get_config('facebook', 'cb_verify_token');
if ($verify_token != $_REQUEST["hub_verify_token"]) {
logger('facebook_init: Wrong Facebook Callback Verifier - expected ' . $verify_token . ', got ' . $_REQUEST["hub_verify_token"]);
return;
}
if (x($_REQUEST, "hub_challenge")) {
logger('facebook_init: Answering Challenge: ' . $_REQUEST["hub_challenge"], LOGGER_DATA);
echo $_REQUEST["hub_challenge"];
die();
}
}
require_once('include/items.php');
// this is a status update
$content = file_get_contents("php://input");
if (is_numeric($content)) $content = file_get_contents("php://input");
$js = json_decode($content);
logger(print_r($js, true), LOGGER_DATA);
if (!isset($js->object) || $js->object != "user" || !isset($js->entry)) {
logger('facebook_init: Could not parse Real-Time Update data', LOGGER_DEBUG);
return;
}
$affected_users = array("feed" => array(), "friends" => array());
foreach ($js->entry as $entry) {
$fbuser = $entry->uid;
foreach ($entry->changed_fields as $field) {
if (!isset($affected_users[$field])) {
logger('facebook_init: Unknown field "' . $field . '"');
continue;
}
if (in_array($fbuser, $affected_users[$field])) continue;
$r = q("SELECT `uid` FROM `pconfig` WHERE `cat` = 'facebook' AND `k` = 'self_id' AND `v` = '%s' LIMIT 1", dbesc($fbuser));
if(! count($r))
continue;
$uid = $r[0]['uid'];
$access_token = get_pconfig($uid,'facebook','access_token');
if(! $access_token)
return;
switch ($field) {
case "feed":
logger('facebook_init: FB-User ' . $fbuser . ' / feed', LOGGER_DEBUG);
if(! get_pconfig($uid,'facebook','no_wall')) {
$private_wall = intval(get_pconfig($uid,'facebook','private_wall'));
$s = fetch_url('https://graph.facebook.com/me/feed?access_token=' . $access_token);
if($s) {
$j = json_decode($s);
if (isset($j->data)) {
logger('facebook_init: wall: ' . print_r($j,true), LOGGER_DATA);
fb_consume_stream($uid,$j,($private_wall) ? false : true);
} else {
logger('facebook_init: wall: got no data from Facebook: ' . print_r($j,true), LOGGER_NORMAL);
}
}
}
break;
case "friends":
logger('facebook_init: FB-User ' . $fbuser . ' / friends', LOGGER_DEBUG);
fb_get_friends($uid, false);
set_pconfig($uid,'facebook','friend_check',time());
break;
default:
logger('facebook_init: Unknown callback field for ' . $fbuser, LOGGER_NORMAL);
}
$affected_users[$field][] = $fbuser;
}
}
}
if($a->argc != 2)
return;
$nick = $a->argv[1];
if(strlen($nick))
$r = q("SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1",
dbesc($nick)
);
if(!(isset($r) && count($r)))
return;
$uid = $r[0]['uid'];
$auth_code = (x($_GET, 'code') ? $_GET['code'] : '');
$error = (x($_GET, 'error_description') ? $_GET['error_description'] : '');
if($error)
logger('facebook_init: Error: ' . $error);
if($auth_code && $uid) {
$appid = get_config('facebook','appid');
$appsecret = get_config('facebook', 'appsecret');
$x = fetch_url('https://graph.facebook.com/oauth/access_token?client_id='
. $appid . '&client_secret=' . $appsecret . '&redirect_uri='
. urlencode($a->get_baseurl() . '/facebook/' . $nick)
. '&code=' . $auth_code);
logger('facebook_init: returned access token: ' . $x, LOGGER_DATA);
if(strpos($x,'access_token=') !== false) {
$token = str_replace('access_token=', '', $x);
if(strpos($token,'&') !== false)
$token = substr($token,0,strpos($token,'&'));
set_pconfig($uid,'facebook','access_token',$token);
set_pconfig($uid,'facebook','post','1');
if(get_pconfig($uid,'facebook','no_linking') === false)
set_pconfig($uid,'facebook','no_linking',1);
fb_get_self($uid);
fb_get_friends($uid, true);
fb_consume_all($uid);
}
}
}
/**
* @param int $uid
*/
function fb_get_self($uid) {
$access_token = get_pconfig($uid,'facebook','access_token');
if(! $access_token)
return;
$s = fetch_url('https://graph.facebook.com/me/?access_token=' . $access_token);
if($s) {
$j = json_decode($s);
set_pconfig($uid,'facebook','self_id',(string) $j->id);
}
}
/**
* @param int $uid
* @param string $access_token
* @param array $persons
*/
function fb_get_friends_sync_new($uid, $access_token, $persons) {
$persons_todo = array();
foreach ($persons as $person) {
$link = 'http://facebook.com/profile.php?id=' . $person->id;
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' LIMIT 1",
intval($uid),
dbesc($link)
);
if (count($r) == 0) {
logger('fb_get_friends: new contact found: ' . $link, LOGGER_DEBUG);
$persons_todo[] = $person;
}
if (count($persons_todo) > 0) fb_get_friends_sync_full($uid, $access_token, $persons_todo);
}
}
/**
* @param int $uid
* @param object $contact
*/
function fb_get_friends_sync_parsecontact($uid, $contact) {
$contact->link = 'http://facebook.com/profile.php?id=' . $contact->id;
// If its a page then set the first name from the username
if (!$contact->first_name && $contact->username)
$contact->first_name = $contact->username;
// check if we already have a contact
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' LIMIT 1",
intval($uid),
dbesc($contact->link)
);
if(count($r)) {
// update profile photos once every two weeks as we have no notification of when they change.
$update_photo = (($r[0]['avatar-date'] < datetime_convert('','','now -14 days')) ? true : false);
// check that we have all the photos, this has been known to fail on occasion
if((! $r[0]['photo']) || (! $r[0]['thumb']) || (! $r[0]['micro']) || ($update_photo)) {
require_once("Photo.php");
$photos = import_profile_photo('https://graph.facebook.com/' . $contact->id . '/picture', $uid, $r[0]['id']);
q("UPDATE `contact` SET `photo` = '%s',
`thumb` = '%s',
`micro` = '%s',
`name-date` = '%s',
`uri-date` = '%s',
`avatar-date` = '%s'
WHERE `id` = %d
",
dbesc($photos[0]),
dbesc($photos[1]),
dbesc($photos[2]),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
intval($r[0]['id'])
);
}
return;
}
else {
// create contact record
q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
`name`, `nick`, `photo`, `network`, `rel`, `priority`,
`writable`, `blocked`, `readonly`, `pending` )
VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, 0, 0, 0 ) ",
intval($uid),
dbesc(datetime_convert()),
dbesc($contact->link),
dbesc(normalise_link($contact->link)),
dbesc(''),
dbesc(''),
dbesc($contact->id),
dbesc('facebook ' . $contact->id),
dbesc($contact->name),
dbesc(($contact->nickname) ? $contact->nickname : mb_convert_case($contact->first_name, MB_CASE_LOWER, "UTF-8")),
dbesc('https://graph.facebook.com/' . $contact->id . '/picture'),
dbesc(NETWORK_FACEBOOK),
intval(CONTACT_IS_FRIEND),
intval(1),
intval(1)
);
}
$r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1",
dbesc($contact->link),
intval($uid)
);
if(! count($r)) {
return;
}
$contact_id = $r[0]['id'];
$g = q("select def_gid from user where uid = %d limit 1",
intval($uid)
);
if($g && intval($g[0]['def_gid'])) {
require_once('include/group.php');
group_add_member($uid,'',$contact_id,$g[0]['def_gid']);
}
require_once("Photo.php");
$photos = import_profile_photo($r[0]['photo'],$uid,$contact_id);
q("UPDATE `contact` SET `photo` = '%s',
`thumb` = '%s',
`micro` = '%s',
`name-date` = '%s',
`uri-date` = '%s',
`avatar-date` = '%s'
WHERE `id` = %d
",
dbesc($photos[0]),
dbesc($photos[1]),
dbesc($photos[2]),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
intval($contact_id)
);
}
/**
* @param int $uid
* @param string $access_token
* @param array $persons
*/
function fb_get_friends_sync_full($uid, $access_token, $persons) {
if (count($persons) == 0) return;
$nums = Ceil(count($persons) / 50);
for ($i = 0; $i < $nums; $i++) {
$batch_request = array();
for ($j = $i * 50; $j < ($i+1) * 50 && $j < count($persons); $j++) $batch_request[] = array('method'=>'GET', 'relative_url'=>$persons[$j]->id);
$s = post_url('https://graph.facebook.com/', array('access_token' => $access_token, 'batch' => json_encode($batch_request)));
if($s) {
$results = json_decode($s);
logger('fb_get_friends: info: ' . print_r($results,true), LOGGER_DATA);
if(count($results)) {
foreach ($results as $contact) {
if ($contact->code != 200) logger('fb_get_friends: not found: ' . print_r($contact,true), LOGGER_DEBUG);
else fb_get_friends_sync_parsecontact($uid, json_decode($contact->body));
}
}
}
}
}
// if $fullsync is true, only new contacts are searched for
/**
* @param int $uid
* @param bool $fullsync
*/
function fb_get_friends($uid, $fullsync = true) {
$r = q("SELECT `uid` FROM `user` WHERE `uid` = %d AND `account_expired` = 0 LIMIT 1",
intval($uid)
);
if(! count($r))
return;
$access_token = get_pconfig($uid,'facebook','access_token');
$no_linking = get_pconfig($uid,'facebook','no_linking');
if($no_linking)
return;
if(! $access_token)
return;
$s = fetch_url('https://graph.facebook.com/me/friends?access_token=' . $access_token);
if($s) {
logger('facebook: fb_gwet_friends: ' . $s, LOGGER_DATA);
$j = json_decode($s);
logger('facebook: fb_get_friends: json: ' . print_r($j,true), LOGGER_DATA);
if(! $j->data)
return;
$persons_todo = array();
foreach($j->data as $person) $persons_todo[] = $person;
if ($fullsync)
fb_get_friends_sync_full($uid, $access_token, $persons_todo);
else
fb_get_friends_sync_new($uid, $access_token, $persons_todo);
}
}
// This is the POST method to the facebook settings page
// Content is posted to Facebook in the function facebook_post_hook()
/**
* @param App $a
*/
function facebook_post(&$a) {
$uid = local_user();
if($uid){
$fb_limited = get_config('facebook','crestrict');
$value = ((x($_POST,'post_by_default')) ? intval($_POST['post_by_default']) : 0);
set_pconfig($uid,'facebook','post_by_default', $value);
$no_linking = get_pconfig($uid,'facebook','no_linking');
$no_wall = ((x($_POST,'facebook_no_wall')) ? intval($_POST['facebook_no_wall']) : 0);
set_pconfig($uid,'facebook','no_wall',$no_wall);
$private_wall = ((x($_POST,'facebook_private_wall')) ? intval($_POST['facebook_private_wall']) : 0);
set_pconfig($uid,'facebook','private_wall',$private_wall);
set_pconfig($uid,'facebook','blocked_apps',escape_tags(trim($_POST['blocked_apps'])));
$linkvalue = ((x($_POST,'facebook_linking')) ? intval($_POST['facebook_linking']) : 0);
if($fb_limited) {
if($linkvalue == 0)
set_pconfig($uid,'facebook','no_linking', 1);
}
else
set_pconfig($uid,'facebook','no_linking', (($linkvalue) ? 0 : 1));
// FB linkage was allowed but has just been turned off - remove all FB contacts and posts
if((! intval($no_linking)) && (! intval($linkvalue))) {
$r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `network` = '%s' ",
intval($uid),
dbesc(NETWORK_FACEBOOK)
);
if(count($r)) {
require_once('include/Contact.php');
foreach($r as $rr)
contact_remove($rr['id']);
}
}
elseif(intval($no_linking) && intval($linkvalue)) {
// FB linkage is now allowed - import stuff.
fb_get_self($uid);
fb_get_friends($uid, true);
fb_consume_all($uid);
}
info( t('Settings updated.') . EOL);
}
return;
}
// Facebook settings form
/**
* @param App $a
* @return string
*/
function facebook_content(&$a) {
if(! local_user()) {
notice( t('Permission denied.') . EOL);
return '';
}
if(! service_class_allows(local_user(),'facebook_connect')) {
notice( t('Permission denied.') . EOL);
return upgrade_bool_message();
}
if($a->argc > 1 && $a->argv[1] === 'remove') {
del_pconfig(local_user(),'facebook','post');
info( t('Facebook disabled') . EOL);
}
if($a->argc > 1 && $a->argv[1] === 'friends') {
fb_get_friends(local_user(), true);
info( t('Updating contacts') . EOL);
}
$fb_limited = get_config('facebook','restrict');
$o = '';
$fb_installed = false;
if (get_pconfig(local_user(),'facebook','post')) {
$access_token = get_pconfig(local_user(),'facebook','access_token');
if ($access_token) {
$s = fetch_url('https://graph.facebook.com/me/feed?access_token=' . $access_token);
if($s) {
$j = json_decode($s);
if (isset($j->data)) $fb_installed = true;
}
}
}
$appid = get_config('facebook','appid');
if(! $appid) {
notice( t('Facebook API key is missing.') . EOL);
return '';
}
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'
. $a->get_baseurl() . '/addon/facebook/facebook.css' . '" media="all" />' . "\r\n";
$o .= '<h3>' . t('Facebook Connect') . '</h3>';
if(! $fb_installed) {
$o .= '<div id="facebook-enable-wrapper">';
$o .= '<a href="https://www.facebook.com/dialog/oauth?client_id=' . $appid . '&redirect_uri='
. $a->get_baseurl() . '/facebook/' . $a->user['nickname'] . '&scope=publish_stream,read_stream,offline_access">' . t('Install Facebook connector for this account.') . '</a>';
$o .= '</div>';
}
if($fb_installed) {
$o .= '<div id="facebook-disable-wrapper">';
$o .= '<a href="' . $a->get_baseurl() . '/facebook/remove' . '">' . t('Remove Facebook connector') . '</a></div>';
$o .= '<div id="facebook-enable-wrapper">';
$o .= '<a href="https://www.facebook.com/dialog/oauth?client_id=' . $appid . '&redirect_uri='
. $a->get_baseurl() . '/facebook/' . $a->user['nickname'] . '&scope=publish_stream,read_stream,offline_access">' . t('Re-authenticate [This is necessary whenever your Facebook password is changed.]') . '</a>';
$o .= '</div>';
$o .= '<div id="facebook-post-default-form">';
$o .= '<form action="facebook" method="post" >';
$post_by_default = get_pconfig(local_user(),'facebook','post_by_default');
$checked = (($post_by_default) ? ' checked="checked" ' : '');
$o .= '<input type="checkbox" name="post_by_default" value="1"' . $checked . '/>' . ' ' . t('Post to Facebook by default') . EOL;
$no_linking = get_pconfig(local_user(),'facebook','no_linking');
$checked = (($no_linking) ? '' : ' checked="checked" ');
if($fb_limited) {
if($no_linking) {
$o .= EOL . '<strong>' . t('Facebook friend linking has been disabled on this site. The following settings will have no effect.') . '</strong>' . EOL;
$checked .= " disabled ";
}
else {
$o .= EOL . '<strong>' . t('Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it.') . '</strong>' . EOL;
}
}
$o .= '<input type="checkbox" name="facebook_linking" value="1"' . $checked . '/>' . ' ' . t('Link all your Facebook friends and conversations on this website') . EOL ;
$o .= '<p>' . t('Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>.');
$o .= ' ' . t('On this website, your Facebook friend stream is only visible to you.');
$o .= ' ' . t('The following settings determine the privacy of your Facebook profile wall on this website.') . '</p>';
$private_wall = get_pconfig(local_user(),'facebook','private_wall');
$checked = (($private_wall) ? ' checked="checked" ' : '');
$o .= '<input type="checkbox" name="facebook_private_wall" value="1"' . $checked . '/>' . ' ' . t('On this website your Facebook profile wall conversations will only be visible to you') . EOL ;
$no_wall = get_pconfig(local_user(),'facebook','no_wall');
$checked = (($no_wall) ? ' checked="checked" ' : '');
$o .= '<input type="checkbox" name="facebook_no_wall" value="1"' . $checked . '/>' . ' ' . t('Do not import your Facebook profile wall conversations') . EOL ;
$o .= '<p>' . t('If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations.') . '</p>';
$blocked_apps = get_pconfig(local_user(),'facebook','blocked_apps');
$o .= '<div><label id="blocked-apps-label" for="blocked-apps">' . t('Comma separated applications to ignore') . ' </label></div>';
$o .= '<div><textarea id="blocked-apps" name="blocked_apps" >' . htmlspecialchars($blocked_apps) . '</textarea></div>';
$o .= '<input type="submit" name="submit" value="' . t('Save Settings') . '" /></form></div>';
}
return $o;
}
/**
* @param App $a
* @param null|object $b
* @return mixed
*/
function facebook_cron($a,$b) {
$last = get_config('facebook','last_poll');
$poll_interval = intval(get_config('facebook','poll_interval'));
if(! $poll_interval)
$poll_interval = FACEBOOK_DEFAULT_POLL_INTERVAL;
if($last) {
$next = $last + ($poll_interval * 60);
if($next > time())
return;
}
logger('facebook_cron');
// Find the FB users on this site and randomize in case one of them
// uses an obscene amount of memory. It may kill this queue run
// but hopefully we'll get a few others through on each run.
$r = q("SELECT * FROM `pconfig` WHERE `cat` = 'facebook' AND `k` = 'post' AND `v` = '1' ORDER BY RAND() ");
if(count($r)) {
foreach($r as $rr) {
if(get_pconfig($rr['uid'],'facebook','no_linking'))
continue;
$ab = intval(get_config('system','account_abandon_days'));
if($ab > 0) {
$z = q("SELECT `uid` FROM `user` WHERE `uid` = %d AND `login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY LIMIT 1",
intval($rr['uid']),
intval($ab)
);
if(! count($z))
continue;
}
// check for new friends once a day
$last_friend_check = get_pconfig($rr['uid'],'facebook','friend_check');
if($last_friend_check)
$next_friend_check = $last_friend_check + 86400;
else
$next_friend_check = 0;
if($next_friend_check <= time()) {
fb_get_friends($rr['uid'], true);
set_pconfig($rr['uid'],'facebook','friend_check',time());
}
fb_consume_all($rr['uid']);
}
}
if (get_config('facebook', 'realtime_active') == 1) {
if (!facebook_check_realtime_active()) {
logger('facebook_cron: Facebook is not sending Real-Time Updates any more, although it is supposed to. Trying to fix it...', LOGGER_NORMAL);
facebook_subscription_add_users();
if (facebook_check_realtime_active())
logger('facebook_cron: Successful', LOGGER_NORMAL);
else {
logger('facebook_cron: Failed', LOGGER_NORMAL);
$first_err = get_config('facebook', 'realtime_first_err');
if (!$first_err) {
$first_err = time();
set_config('facebook', 'realtime_first_err', $first_err);
}
$first_err_ago = (time() - $first_err);
if(strlen($a->config['admin_email']) && !get_config('facebook', 'realtime_err_mailsent') && $first_err_ago > (FACEBOOK_RTU_ERR_MAIL_AFTER_MINUTES * 60)) {
mail($a->config['admin_email'], t('Problems with Facebook Real-Time Updates'),
"Hi!\n\nThere's a problem with the Facebook Real-Time Updates that cannot be solved automatically. Maybe a permission issue?\n\nPlease try to re-activate it on " . $a->config["system"]["url"] . "/admin/plugins/facebook\n\nThis e-mail will only be sent once.",
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
. 'Content-type: text/plain; charset=UTF-8' . "\n"
. 'Content-transfer-encoding: 8bit'
);
set_config('facebook', 'realtime_err_mailsent', 1);
}
}
} else { // !facebook_check_realtime_active()
del_config('facebook', 'realtime_err_mailsent');
del_config('facebook', 'realtime_first_err');
}
}
set_config('facebook','last_poll', time());
}
/**
* @param App $a
* @param null|object $b
*/
function facebook_plugin_settings(&$a,&$b) {
$b .= '<div class="settings-block">';
$b .= '<h3>' . t('Facebook') . '</h3>';
$b .= '<a href="facebook">' . t('Facebook Connector Settings') . '</a><br />';
$b .= '</div>';
}
/**
* @param App $a
* @param null|object $o
*/
function facebook_plugin_admin(&$a, &$o){
$o = '<input type="hidden" name="form_security_token" value="' . get_form_security_token("fbsave") . '">';
$o .= '<h4>' . t('Facebook API Key') . '</h4>';
$appid = get_config('facebook', 'appid' );
$appsecret = get_config('facebook', 'appsecret' );
$poll_interval = get_config('facebook', 'poll_interval' );
$sync_comments = get_config('facebook', 'sync_comments' );
if (!$poll_interval) $poll_interval = FACEBOOK_DEFAULT_POLL_INTERVAL;
$ret1 = q("SELECT `v` FROM `config` WHERE `cat` = 'facebook' AND `k` = 'appid' LIMIT 1");
$ret2 = q("SELECT `v` FROM `config` WHERE `cat` = 'facebook' AND `k` = 'appsecret' LIMIT 1");
if ((count($ret1) > 0 && $ret1[0]['v'] != $appid) || (count($ret2) > 0 && $ret2[0]['v'] != $appsecret)) $o .= t('Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>');
$working_connection = false;
if ($appid && $appsecret) {
$subs = facebook_subscriptions_get();
if ($subs === null) $o .= t('Error: the given API Key seems to be incorrect (the application access token could not be retrieved).') . '<br>';
elseif (is_array($subs)) {
$o .= t('The given API Key seems to work correctly.') . '<br>';
$working_connection = true;
} else $o .= t('The correctness of the API Key could not be detected. Something strange\'s going on.') . '<br>';
}
$o .= '<label for="fb_appid">' . t('App-ID / API-Key') . '</label><input id="fb_appid" name="appid" type="text" value="' . escape_tags($appid ? $appid : "") . '"><br style="clear: both;">';
$o .= '<label for="fb_appsecret">' . t('Application secret') . '</label><input id="fb_appsecret" name="appsecret" type="text" value="' . escape_tags($appsecret ? $appsecret : "") . '"><br style="clear: both;">';
$o .= '<label for="fb_poll_interval">' . sprintf(t('Polling Interval in minutes (minimum %1$s minutes)'), FACEBOOK_MIN_POLL_INTERVAL) . '</label><input name="poll_interval" id="fb_poll_interval" type="number" min="' . FACEBOOK_MIN_POLL_INTERVAL . '" value="' . $poll_interval . '"><br style="clear: both;">';
$o .= '<label for="fb_sync_comments">' . t('Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)') . '</label><input name="sync_comments" id="fb_sync_comments" type="checkbox" ' . ($sync_comments ? 'checked' : '') . '><br style="clear: both;">';
$o .= '<input type="submit" name="fb_save_keys" value="' . t('Save') . '">';
if ($working_connection) {
$o .= '<h4>' . t('Real-Time Updates') . '</h4>';
$activated = facebook_check_realtime_active();
if ($activated) {
$o .= t('Real-Time Updates are activated.') . '<br><br>';
$o .= '<input type="submit" name="real_time_deactivate" value="' . t('Deactivate Real-Time Updates') . '">';
} else {
$o .= t('Real-Time Updates not activated.') . '<br><input type="submit" name="real_time_activate" value="' . t('Activate Real-Time Updates') . '">';
}
}
}
/**
* @param App $a
*/
function facebook_plugin_admin_post(&$a){
check_form_security_token_redirectOnErr('/admin/plugins/facebook', 'fbsave');
if (x($_REQUEST,'fb_save_keys')) {
set_config('facebook', 'appid', $_REQUEST['appid']);
set_config('facebook', 'appsecret', $_REQUEST['appsecret']);
$poll_interval = IntVal($_REQUEST['poll_interval']);
if ($poll_interval >= FACEBOOK_MIN_POLL_INTERVAL) set_config('facebook', 'poll_interval', $poll_interval);
set_config('facebook', 'sync_comments', (x($_REQUEST, 'sync_comments') ? 1 : 0));
del_config('facebook', 'app_access_token');
info(t('The new values have been saved.'));
}
if (x($_REQUEST,'real_time_activate')) {
facebook_subscription_add_users();
}
if (x($_REQUEST,'real_time_deactivate')) {
facebook_subscription_del_users();
}
}
/**
* @param App $a
* @param object $b
* @return mixed
*/
function facebook_jot_nets(&$a,&$b) {
if(! local_user())
return;
$fb_post = get_pconfig(local_user(),'facebook','post');
if(intval($fb_post) == 1) {
$fb_defpost = get_pconfig(local_user(),'facebook','post_by_default');
$selected = ((intval($fb_defpost) == 1) ? ' checked="checked" ' : '');
$b .= '<div class="profile-jot-net"><input type="checkbox" name="facebook_enable"' . $selected . ' value="1" /> '
. t('Post to Facebook') . '</div>';
}
}
/**
* @param App $a
* @param object $b
* @return mixed
*/
function facebook_post_hook(&$a,&$b) {
if($b['deleted'] || ($b['created'] !== $b['edited']))
return;
/**
* Post to Facebook stream
*/
require_once('include/group.php');
require_once('include/html2plain.php');
logger('Facebook post');
$reply = false;
$likes = false;
$deny_arr = array();
$allow_arr = array();
$toplevel = (($b['id'] == $b['parent']) ? true : false);
$linking = ((get_pconfig($b['uid'],'facebook','no_linking')) ? 0 : 1);
if((! $toplevel) && ($linking)) {
$r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($b['parent']),
intval($b['uid'])
);
if(count($r) && substr($r[0]['uri'],0,4) === 'fb::')
$reply = substr($r[0]['uri'],4);
elseif(count($r) && substr($r[0]['extid'],0,4) === 'fb::')
$reply = substr($r[0]['extid'],4);
else
return;
$u = q("SELECT * FROM user where uid = %d limit 1",
intval($b['uid'])
);
if(! count($u))
return;
// only accept comments from the item owner. Other contacts are unknown to FB.
if(! link_compare($b['author-link'], $a->get_baseurl() . '/profile/' . $u[0]['nickname']))
return;
logger('facebook reply id=' . $reply);
}
if(strstr($b['postopts'],'facebook') || ($b['private']) || ($reply)) {
if($b['private'] && $reply === false) {
$allow_people = expand_acl($b['allow_cid']);
$allow_groups = expand_groups(expand_acl($b['allow_gid']));
$deny_people = expand_acl($b['deny_cid']);
$deny_groups = expand_groups(expand_acl($b['deny_gid']));
$recipients = array_unique(array_merge($allow_people,$allow_groups));
$deny = array_unique(array_merge($deny_people,$deny_groups));
$allow_str = dbesc(implode(', ',$recipients));
if($allow_str) {
$r = q("SELECT `notify` FROM `contact` WHERE `id` IN ( $allow_str ) AND `network` = 'face'");
if(count($r))
foreach($r as $rr)
$allow_arr[] = $rr['notify'];
}
$deny_str = dbesc(implode(', ',$deny));
if($deny_str) {
$r = q("SELECT `notify` FROM `contact` WHERE `id` IN ( $deny_str ) AND `network` = 'face'");
if(count($r))
foreach($r as $rr)
$deny_arr[] = $rr['notify'];
}
if(count($deny_arr) && (! count($allow_arr))) {
// One or more FB folks were denied access but nobody on FB was specifically allowed access.
// This might cause the post to be open to public on Facebook, but only to selected members
// on another network. Since this could potentially leak a post to somebody who was denied,
// we will skip posting it to Facebook with a slightly vague but relevant message that will
// hopefully lead somebody to this code comment for a better explanation of what went wrong.
notice( t('Post to Facebook cancelled because of multi-network access permission conflict.') . EOL);
return;
}
// if it's a private message but no Facebook members are allowed or denied, skip Facebook post
if((! count($allow_arr)) && (! count($deny_arr)))
return;
}
if($b['verb'] == ACTIVITY_LIKE)
$likes = true;
$appid = get_config('facebook', 'appid' );
$secret = get_config('facebook', 'appsecret' );
if($appid && $secret) {
logger('facebook: have appid+secret');
$fb_token = get_pconfig($b['uid'],'facebook','access_token');
// post to facebook if it's a public post and we've ticked the 'post to Facebook' box,
// or it's a private message with facebook participants
// or it's a reply or likes action to an existing facebook post
if($fb_token && ($toplevel || $b['private'] || $reply)) {
logger('facebook: able to post');
require_once('library/facebook.php');
require_once('include/bbcode.php');
$msg = $b['body'];
logger('Facebook post: original msg=' . $msg, LOGGER_DATA);
// make links readable before we strip the code
// unless it's a dislike - just send the text as a comment
// if($b['verb'] == ACTIVITY_DISLIKE)
// $msg = trim(strip_tags(bbcode($msg)));
// Old code
/*$search_str = $a->get_baseurl() . '/search';
if(preg_match("/\[url=(.*?)\](.*?)\[\/url\]/is",$msg,$matches)) {
// don't use hashtags for message link
if(strpos($matches[2],$search_str) === false) {
$link = $matches[1];
if(substr($matches[2],0,5) != '[img]')
$linkname = $matches[2];
}
}
// strip tag links to avoid link clutter, this really should be
// configurable because we're losing information
$msg = preg_replace("/\#\[url=(.*?)\](.*?)\[\/url\]/is",'#$2',$msg);
// provide the link separately for normal links
$msg = preg_replace("/\[url=(.*?)\](.*?)\[\/url\]/is",'$2 $1',$msg);
if(preg_match("/\[img\](.*?)\[\/img\]/is",$msg,$matches))
$image = $matches[1];
$msg = preg_replace("/\[img\](.*?)\[\/img\]/is", t('Image: ') . '$1', $msg);
if((strpos($link,z_root()) !== false) && (! $image))
$image = $a->get_baseurl() . '/images/friendica-64.jpg';
$msg = trim(strip_tags(bbcode($msg)));*/
// New code
// Looking for the first image
$image = '';
if(preg_match("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/is",$b['body'],$matches))
$image = $matches[3];
if ($image == '')
if(preg_match("/\[img\](.*?)\[\/img\]/is",$b['body'],$matches))
$image = $matches[1];
// When saved into the database the content is sent through htmlspecialchars
// That means that we have to decode all image-urls
$image = htmlspecialchars_decode($image);
// Checking for a bookmark element
$body = $b['body'];
if (strpos($body, "[bookmark") !== false) {
// splitting the text in two parts:
// before and after the bookmark
$pos = strpos($body, "[bookmark");
$body1 = substr($body, 0, $pos);
$body2 = substr($body, $pos);
// Removing the bookmark and all quotes after the bookmark
// they are mostly only the content after the bookmark.
$body2 = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism",'',$body2);
$body2 = preg_replace("/\[quote\=([^\]]*)\](.*?)\[\/quote\]/ism",'',$body2);
$body2 = preg_replace("/\[quote\](.*?)\[\/quote\]/ism",'',$body2);
$body = $body1.$body2;
}
// At first convert the text to html
$html = bbcode($body, false, false);
// Then convert it to plain text
$msg = trim($b['title']." \n\n".html2plain($html, 0, true));
$msg = html_entity_decode($msg,ENT_QUOTES,'UTF-8');
// Removing multiple newlines
while (strpos($msg, "\n\n\n") !== false)
$msg = str_replace("\n\n\n", "\n\n", $msg);
// add any attachments as text urls
$arr = explode(',',$b['attach']);
if(count($arr)) {
$msg .= "\n";
foreach($arr as $r) {
$matches = false;
$cnt = preg_match('|\[attach\]href=\"(.*?)\" size=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches);
if($cnt) {
$msg .= "\n".$matches[1];
}
}
}
$link = '';
$linkname = '';
// look for bookmark-bbcode and handle it with priority
if(preg_match("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/is",$b['body'],$matches)) {
$link = $matches[1];
$linkname = $matches[2];
}
// If there is no bookmark element then take the first link
if ($link == '') {
$links = collecturls($html);
if (sizeof($links) > 0) {
reset($links);
$link = current($links);
}
}
// Remove trailing and leading spaces
$msg = trim($msg);
// Since facebook increased the maxpostlen massively this never should happen again :)
if (strlen($msg) > FACEBOOK_MAXPOSTLEN) {
require_once('library/slinky.php');
$display_url = $b['plink'];
$slinky = new Slinky( $display_url );
// setup a cascade of shortening services
// try to get a short link from these services
// in the order ur1.ca, trim, id.gd, tinyurl
$slinky->set_cascade( array( new Slinky_UR1ca(), new Slinky_Trim(), new Slinky_IsGd(), new Slinky_TinyURL() ) );
$shortlink = $slinky->short();
// the new message will be shortened such that "... $shortlink"
// will fit into the character limit
$msg = substr($msg, 0, FACEBOOK_MAXPOSTLEN - strlen($shortlink) - 4);
$msg .= '... ' . $shortlink;
}
// Fallback - if message is empty
if(!strlen($msg))
$msg = $linkname;
if(!strlen($msg))
$msg = $link;
if(!strlen($msg))
$msg = $image;
// If there is nothing to post then exit
if(!strlen($msg))
return;
logger('Facebook post: msg=' . $msg, LOGGER_DATA);
if($likes) {
$postvars = array('access_token' => $fb_token);
}
else {
// message, picture, link, name, caption, description, source, place, tags
$postvars = array(
'access_token' => $fb_token,
'message' => $msg
);
if(trim($image) != "") {
$postvars['picture'] = $image;
}
if(trim($link) != "") {
$postvars['link'] = $link;
// The following doesn't work - why?
if ((stristr($link,'youtube')) || (stristr($link,'youtu.be')) || (stristr($link,'vimeo'))) {
$postvars['source'] = $link;
}
}
if(trim($linkname) != "")
$postvars['name'] = $linkname;
}
if(($b['private']) && ($toplevel)) {
$postvars['privacy'] = '{"value": "CUSTOM", "friends": "SOME_FRIENDS"';
if(count($allow_arr))
$postvars['privacy'] .= ',"allow": "' . implode(',',$allow_arr) . '"';
if(count($deny_arr))
$postvars['privacy'] .= ',"deny": "' . implode(',',$deny_arr) . '"';
$postvars['privacy'] .= '}';
}
if($reply) {
$url = 'https://graph.facebook.com/' . $reply . '/' . (($likes) ? 'likes' : 'comments');
} else if (($link != "") || ($image != "") || ($b['title'] == '') || (strlen($msg) < 500)) {
$url = 'https://graph.facebook.com/me/feed';
if($b['plink'])
$postvars['actions'] = '{"name": "' . t('View on Friendica') . '", "link": "' . $b['plink'] . '"}';
} else {
// if its only a message and a subject and the message is larger than 500 characters then post it as note
$postvars = array(
'access_token' => $fb_token,
'message' => bbcode($b['body'], false, false),
'subject' => $b['title'],
);
$url = 'https://graph.facebook.com/me/notes';
}
logger('facebook: post to ' . $url);
logger('facebook: postvars: ' . print_r($postvars,true));
// "test_mode" prevents anything from actually being posted.
// Otherwise, let's do it.
if(! get_config('facebook','test_mode')) {
$x = post_url($url, $postvars);
logger('Facebook post returns: ' . $x, LOGGER_DEBUG);
$retj = json_decode($x);
if($retj->id) {
q("UPDATE `item` SET `extid` = '%s' WHERE `id` = %d",
dbesc('fb::' . $retj->id),
intval($b['id'])
);
}
else {
if(! $likes) {
$s = serialize(array('url' => $url, 'item' => $b['id'], 'post' => $postvars));
require_once('include/queue_fn.php');
add_to_queue($a->contact,NETWORK_FACEBOOK,$s);
notice( t('Facebook post failed. Queued for retry.') . EOL);
}
if (isset($retj->error) && $retj->error->type == "OAuthException" && $retj->error->code == 190) {
logger('Facebook session has expired due to changed password.', LOGGER_DEBUG);
$last_notification = get_pconfig($b['uid'], 'facebook', 'session_expired_mailsent');
if (!$last_notification || $last_notification < (time() - FACEBOOK_SESSION_ERR_NOTIFICATION_INTERVAL)) {
require_once('include/enotify.php');
$r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($b['uid']) );
notification(array(
'uid' => $b['uid'],
'type' => NOTIFY_SYSTEM,
'system_type' => 'facebook_connection_invalid',
'language' => $r[0]['language'],
'to_name' => $r[0]['username'],
'to_email' => $r[0]['email'],
'source_name' => t('Administrator'),
'source_link' => $a->config["system"]["url"],
'source_photo' => $a->config["system"]["url"] . '/images/person-80.jpg',
));
set_pconfig($b['uid'], 'facebook', 'session_expired_mailsent', time());
} else logger('Facebook: No notification, as the last one was sent on ' . $last_notification, LOGGER_DEBUG);
}
}
}
}
}
}
}
/**
* @param App $app
* @param object $data
*/
function facebook_enotify(&$app, &$data) {
if (x($data, 'params') && $data['params']['type'] == NOTIFY_SYSTEM && x($data['params'], 'system_type') && $data['params']['system_type'] == 'facebook_connection_invalid') {
$data['itemlink'] = '/facebook';
$data['epreamble'] = $data['preamble'] = t('Your Facebook connection became invalid. Please Re-authenticate.');
$data['subject'] = t('Facebook connection became invalid');
$data['body'] = sprintf( t("Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."), $data['params']['to_name'], "[url=" . $app->config["system"]["url"] . "]" . $app->config["sitename"] . "[/url]", "[url=" . $app->config["system"]["url"] . "/facebook]", "[/url]");
}
}
/**
* @param App $a
* @param object $b
*/
function facebook_post_local(&$a,&$b) {
// Figure out if Facebook posting is enabled for this post and file it in 'postopts'
// where we will discover it during background delivery.
// This can only be triggered by a local user posting to their own wall.
if((local_user()) && (local_user() == $b['uid'])) {
$fb_post = intval(get_pconfig(local_user(),'facebook','post'));
$fb_enable = (($fb_post && x($_REQUEST,'facebook_enable')) ? intval($_REQUEST['facebook_enable']) : 0);
// if API is used, default to the chosen settings
// but allow a specific override
if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'facebook','post_by_default'))) {
if(! x($_REQUEST,'facebook_enable'))
$fb_enable = 1;
}
if(! $fb_enable)
return;
if(strlen($b['postopts']))
$b['postopts'] .= ',';
$b['postopts'] .= 'facebook';
}
}
/**
* @param App $a
* @param object $b
*/
function fb_queue_hook(&$a,&$b) {
$qi = q("SELECT * FROM `queue` WHERE `network` = '%s'",
dbesc(NETWORK_FACEBOOK)
);
if(! count($qi))
return;
require_once('include/queue_fn.php');
foreach($qi as $x) {
if($x['network'] !== NETWORK_FACEBOOK)
continue;
logger('facebook_queue: run');
$r = q("SELECT `user`.* FROM `user` LEFT JOIN `contact` on `contact`.`uid` = `user`.`uid`
WHERE `contact`.`self` = 1 AND `contact`.`id` = %d LIMIT 1",
intval($x['cid'])
);
if(! count($r))
continue;
$user = $r[0];
$appid = get_config('facebook', 'appid' );
$secret = get_config('facebook', 'appsecret' );
if($appid && $secret) {
$fb_post = intval(get_pconfig($user['uid'],'facebook','post'));
$fb_token = get_pconfig($user['uid'],'facebook','access_token');
if($fb_post && $fb_token) {
logger('facebook_queue: able to post');
require_once('library/facebook.php');
$z = unserialize($x['content']);
$item = $z['item'];
$j = post_url($z['url'],$z['post']);
$retj = json_decode($j);
if($retj->id) {
q("UPDATE `item` SET `extid` = '%s' WHERE `id` = %d",
dbesc('fb::' . $retj->id),
intval($item)
);
logger('facebook_queue: success: ' . $j);
remove_queue_item($x['id']);
}
else {
logger('facebook_queue: failed: ' . $j);
update_queue_time($x['id']);
}
}
}
}
}
/**
* @param string $access_token
* @param int $since
* @return object
*/
function fb_get_timeline($access_token, &$since) {
$entries = new stdClass();
$entries->data = array();
$newest = 0;
$url = 'https://graph.facebook.com/me/home?access_token='.$access_token;
if ($since != 0)
$url .= "&since=".$since;
do {
$s = fetch_url($url);
$j = json_decode($s);
$oldestdate = time();
if (isset($j->data))
foreach ($j->data as $entry) {
$created = strtotime($entry->created_time);
if ($newest < $created)
$newest = $created;
if ($created >= $since)
$entries->data[] = $entry;
if ($created <= $oldestdate)
$oldestdate = $created;
}
else
break;
$url = (isset($j->paging) && isset($j->paging->next) ? $j->paging->next : '');
} while (($oldestdate > $since) and ($since != 0) and ($url != ''));
if ($newest > $since)
$since = $newest;
return($entries);
}
/**
* @param int $uid
*/
function fb_consume_all($uid) {
require_once('include/items.php');
$access_token = get_pconfig($uid,'facebook','access_token');
if(! $access_token)
return;
if(! get_pconfig($uid,'facebook','no_wall')) {
$private_wall = intval(get_pconfig($uid,'facebook','private_wall'));
$s = fetch_url('https://graph.facebook.com/me/feed?access_token=' . $access_token);
if($s) {
$j = json_decode($s);
if (isset($j->data)) {
logger('fb_consume_stream: wall: ' . print_r($j,true), LOGGER_DATA);
fb_consume_stream($uid,$j,($private_wall) ? false : true);
} else {
logger('fb_consume_stream: wall: got no data from Facebook: ' . print_r($j,true), LOGGER_NORMAL);
}
}
}
// Get the last date
$lastdate = get_pconfig($uid,'facebook','lastdate');
// fetch all items since the last date
$j = fb_get_timeline($access_token, $lastdate);
if (isset($j->data)) {
logger('fb_consume_stream: feed: ' . print_r($j,true), LOGGER_DATA);
fb_consume_stream($uid,$j,false);
// Write back the last date
set_pconfig($uid,'facebook','lastdate', $lastdate);
} else
logger('fb_consume_stream: feed: got no data from Facebook: ' . print_r($j,true), LOGGER_NORMAL);
}
/**
* @param int $uid
* @param string $link
* @return string
*/
function fb_get_photo($uid,$link) {
$access_token = get_pconfig($uid,'facebook','access_token');
if(! $access_token || (! stristr($link,'facebook.com/photo.php')))
return "";
//return "\n" . '[url=' . $link . ']' . t('link') . '[/url]';
$ret = preg_match('/fbid=([0-9]*)/',$link,$match);
if($ret)
$photo_id = $match[1];
else
return "";
$x = fetch_url('https://graph.facebook.com/' . $photo_id . '?access_token=' . $access_token);
$j = json_decode($x);
if($j->picture)
return "\n\n" . '[url=' . $link . '][img]' . $j->picture . '[/img][/url]';
//else
// return "\n" . '[url=' . $link . ']' . t('link') . '[/url]';
return "";
}
/**
* @param App $a
* @param array $user
* @param array $self
* @param string $fb_id
* @param bool $wall
* @param array $orig_post
* @param object $cmnt
*/
function fb_consume_comment(&$a, &$user, &$self, $fb_id, $wall, &$orig_post, &$cmnt) {
if(! $orig_post)
return;
$top_item = $orig_post['id'];
$uid = IntVal($user[0]['uid']);
$r = q("SELECT * FROM `item` WHERE `uid` = %d AND ( `uri` = '%s' OR `extid` = '%s' ) LIMIT 1",
intval($uid),
dbesc('fb::' . $cmnt->id),
dbesc('fb::' . $cmnt->id)
);
if(count($r))
return;
$cmntdata = array();
$cmntdata['parent'] = $top_item;
$cmntdata['verb'] = ACTIVITY_POST;
$cmntdata['gravity'] = 6;
$cmntdata['uid'] = $uid;
$cmntdata['wall'] = (($wall) ? 1 : 0);
$cmntdata['uri'] = 'fb::' . $cmnt->id;
$cmntdata['parent-uri'] = $orig_post['uri'];
if($cmnt->from->id == $fb_id) {
$cmntdata['contact-id'] = $self[0]['id'];
}
else {
$r = q("SELECT * FROM `contact` WHERE `notify` = '%s' AND `uid` = %d LIMIT 1",
dbesc($cmnt->from->id),
intval($uid)
);
if(count($r)) {
$cmntdata['contact-id'] = $r[0]['id'];
if($r[0]['blocked'] || $r[0]['readonly'])
return;
}
}
if(! x($cmntdata,'contact-id'))
$cmntdata['contact-id'] = $orig_post['contact-id'];
$cmntdata['app'] = 'facebook';
$cmntdata['created'] = datetime_convert('UTC','UTC',$cmnt->created_time);
$cmntdata['edited'] = datetime_convert('UTC','UTC',$cmnt->created_time);
$cmntdata['verb'] = ACTIVITY_POST;
$cmntdata['author-name'] = $cmnt->from->name;
$cmntdata['author-link'] = 'http://facebook.com/profile.php?id=' . $cmnt->from->id;
$cmntdata['author-avatar'] = 'https://graph.facebook.com/' . $cmnt->from->id . '/picture';
$cmntdata['body'] = $cmnt->message;
$item = item_store($cmntdata);
$myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 AND `deleted` = 0",
dbesc($orig_post['uri']),
intval($uid)
);
if(count($myconv)) {
$importer_url = $a->get_baseurl() . '/profile/' . $user[0]['nickname'];
foreach($myconv as $conv) {
// now if we find a match, it means we're in this conversation
if(! link_compare($conv['author-link'],$importer_url))
continue;
require_once('include/enotify.php');
$conv_parent = $conv['parent'];
notification(array(
'type' => NOTIFY_COMMENT,
'notify_flags' => $user[0]['notify-flags'],
'language' => $user[0]['language'],
'to_name' => $user[0]['username'],
'to_email' => $user[0]['email'],
'uid' => $user[0]['uid'],
'item' => $cmntdata,
'link' => $a->get_baseurl() . '/display/' . $user[0]['nickname'] . '/' . $item,
'source_name' => $cmntdata['author-name'],
'source_link' => $cmntdata['author-link'],
'source_photo' => $cmntdata['author-avatar'],
'verb' => ACTIVITY_POST,
'otype' => 'item',
'parent' => $conv_parent,
));
// only send one notification
break;
}
}
}
/**
* @param App $a
* @param array $user
* @param array $self
* @param string $fb_id
* @param bool $wall
* @param array $orig_post
* @param object $likes
*/
function fb_consume_like(&$a, &$user, &$self, $fb_id, $wall, &$orig_post, &$likes) {
$top_item = $orig_post['id'];
$uid = IntVal($user[0]['uid']);
if(! $orig_post)
return;
// If we posted the like locally, it will be found with our url, not the FB url.
$second_url = (($likes->id == $fb_id) ? $self[0]['url'] : 'http://facebook.com/profile.php?id=' . $likes->id);
$r = q("SELECT * FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `verb` = '%s'
AND ( `author-link` = '%s' OR `author-link` = '%s' ) LIMIT 1",
dbesc($orig_post['uri']),
intval($uid),
dbesc(ACTIVITY_LIKE),
dbesc('http://facebook.com/profile.php?id=' . $likes->id),
dbesc($second_url)
);
if(count($r))
return;
$likedata = array();
$likedata['parent'] = $top_item;
$likedata['verb'] = ACTIVITY_LIKE;
$likedata['gravity'] = 3;
$likedata['uid'] = $uid;
$likedata['wall'] = (($wall) ? 1 : 0);
$likedata['uri'] = item_new_uri($a->get_baseurl(), $uid);
$likedata['parent-uri'] = $orig_post['uri'];
if($likes->id == $fb_id)
$likedata['contact-id'] = $self[0]['id'];
else {
$r = q("SELECT * FROM `contact` WHERE `notify` = '%s' AND `uid` = %d AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
dbesc($likes->id),
intval($uid)
);
if(count($r))
$likedata['contact-id'] = $r[0]['id'];
}
if(! x($likedata,'contact-id'))
$likedata['contact-id'] = $orig_post['contact-id'];
$likedata['app'] = 'facebook';
$likedata['verb'] = ACTIVITY_LIKE;
$likedata['author-name'] = $likes->name;
$likedata['author-link'] = 'http://facebook.com/profile.php?id=' . $likes->id;
$likedata['author-avatar'] = 'https://graph.facebook.com/' . $likes->id . '/picture';
$author = '[url=' . $likedata['author-link'] . ']' . $likedata['author-name'] . '[/url]';
$objauthor = '[url=' . $orig_post['author-link'] . ']' . $orig_post['author-name'] . '[/url]';
$post_type = t('status');
$plink = '[url=' . $orig_post['plink'] . ']' . $post_type . '[/url]';
$likedata['object-type'] = ACTIVITY_OBJ_NOTE;
$likedata['body'] = sprintf( t('%1$s likes %2$s\'s %3$s'), $author, $objauthor, $plink);
$likedata['object'] = '<object><type>' . ACTIVITY_OBJ_NOTE . '</type><local>1</local>' .
'<id>' . $orig_post['uri'] . '</id><link>' . xmlify('<link rel="alternate" type="text/html" href="' . xmlify($orig_post['plink']) . '" />') . '</link><title>' . $orig_post['title'] . '</title><content>' . $orig_post['body'] . '</content></object>';
item_store($likedata);
}
/**
* @param App $a
* @param array $user
* @param object $entry
* @param array $self
* @param string $fb_id
* @param bool $wall
* @param array $orig_post
*/
function fb_consume_status(&$a, &$user, &$entry, &$self, $fb_id, $wall, &$orig_post) {
$uid = IntVal($user[0]['uid']);
$access_token = get_pconfig($uid, 'facebook', 'access_token');
$s = fetch_url('https://graph.facebook.com/' . $entry->id . '?access_token=' . $access_token);
if($s) {
$j = json_decode($s);
if (isset($j->comments) && isset($j->comments->data))
foreach ($j->comments->data as $cmnt)
fb_consume_comment($a, $user, $self, $fb_id, $wall, $orig_post, $cmnt);
if (isset($j->likes) && isset($j->likes->data) && isset($j->likes->count)) {
if (count($j->likes->data) == $j->likes->count) {
foreach ($j->likes->data as $likers) fb_consume_like($a, $user, $self, $fb_id, $wall, $orig_post, $likers);
} else {
$t = fetch_url('https://graph.facebook.com/' . $entry->id . '/likes?access_token=' . $access_token);
if ($t) {
$k = json_decode($t);
if (isset($k->data))
foreach ($k->data as $likers)
fb_consume_like($a, $user, $self, $fb_id, $wall, $orig_post, $likers);
}
}
}
}
}
/**
* @param int $uid
* @param object $j
* @param bool $wall
*/
function fb_consume_stream($uid,$j,$wall = false) {
$a = get_app();
$user = q("SELECT * FROM `user` WHERE `uid` = %d AND `account_expired` = 0 LIMIT 1",
intval($uid)
);
if(! count($user))
return;
// $my_local_url = $a->get_baseurl() . '/profile/' . $user[0]['nickname'];
$no_linking = get_pconfig($uid,'facebook','no_linking');
if($no_linking)
return;
$self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
intval($uid)
);
$blocked_apps = get_pconfig($uid,'facebook','blocked_apps');
$blocked_apps_arr = explode(',',$blocked_apps);
$sync_comments = get_config('facebook', 'sync_comments');
/** @var string $self_id */
$self_id = get_pconfig($uid,'facebook','self_id');
if(! count($j->data) || (! strlen($self_id)))
return;
$top_item = 0;
foreach($j->data as $entry) {
logger('fb_consume: entry: ' . print_r($entry,true), LOGGER_DATA);
$datarray = array();
$r = q("SELECT * FROM `item` WHERE ( `uri` = '%s' OR `extid` = '%s') AND `uid` = %d LIMIT 1",
dbesc('fb::' . $entry->id),
dbesc('fb::' . $entry->id),
intval($uid)
);
if(count($r)) {
$orig_post = $r[0];
$top_item = $r[0]['id'];
}
else {
$orig_post = null;
}
if(! $orig_post) {
$datarray['gravity'] = 0;
$datarray['uid'] = $uid;
$datarray['wall'] = (($wall) ? 1 : 0);
$datarray['uri'] = $datarray['parent-uri'] = 'fb::' . $entry->id;
$from = $entry->from;
if($from->id == $self_id)
$datarray['contact-id'] = $self[0]['id'];
else {
// Looking if user is known - if not he is added
$access_token = get_pconfig($uid, 'facebook', 'access_token');
fb_get_friends_sync_new($uid, $access_token, array($from));
$r = q("SELECT * FROM `contact` WHERE `notify` = '%s' AND `uid` = %d AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
dbesc($from->id),
intval($uid)
);
if(count($r))
$datarray['contact-id'] = $r[0]['id'];
}
// don't store post if we don't have a contact
if(! x($datarray,'contact-id')) {
logger('facebook: no contact '.$from->name.' '.$from->id.'. post ignored');
continue;
}
$datarray['verb'] = ACTIVITY_POST;
if($wall) {
$datarray['owner-name'] = $self[0]['name'];
$datarray['owner-link'] = $self[0]['url'];
$datarray['owner-avatar'] = $self[0]['thumb'];
}
if(isset($entry->application) && isset($entry->application->name) && strlen($entry->application->name))
$datarray['app'] = strip_tags($entry->application->name);
else
$datarray['app'] = 'facebook';
$found_blocked = false;
if(count($blocked_apps_arr)) {
foreach($blocked_apps_arr as $bad_appl) {
if(strlen(trim($bad_appl)) && (stristr($datarray['app'],trim($bad_appl)))) {
$found_blocked = true;
}
}
}
if($found_blocked) {
logger('facebook: blocking application: ' . $datarray['app']);
continue;
}
$datarray['author-name'] = $from->name;
$datarray['author-link'] = 'http://facebook.com/profile.php?id=' . $from->id;
$datarray['author-avatar'] = 'https://graph.facebook.com/' . $from->id . '/picture';
$datarray['plink'] = $datarray['author-link'] . '&v=wall&story_fbid=' . substr($entry->id,strpos($entry->id,'_') + 1);
logger('facebook: post '.$entry->id.' from '.$from->name);
$datarray['body'] = (isset($entry->message) ? escape_tags($entry->message) : '');
if(isset($entry->name) && isset($entry->link))
$datarray['body'] .= "\n\n[bookmark=".$entry->link."]".$entry->name."[/bookmark]";
elseif (isset($entry->name))
$datarray['body'] .= "\n\n[b]" . $entry->name."[/b]";
if(isset($entry->caption)) {
if(!isset($entry->name) && isset($entry->link))
$datarray['body'] .= "\n\n[bookmark=".$entry->link."]".$entry->caption."[/bookmark]";
else
$datarray['body'] .= "[i]" . $entry->caption."[/i]\n";
}
if(!isset($entry->caption) && !isset($entry->name)) {
if (isset($entry->link))
$datarray['body'] .= "\n[url]".$entry->link."[/url]\n";
else
$datarray['body'] .= "\n";
}
$quote = "";
if(isset($entry->description))
$quote = $entry->description;
if (isset($entry->properties))
foreach ($entry->properties as $property)
$quote .= "\n".$property->name.": [url=".$property->href."]".$property->text."[/url]";
if ($quote)
$datarray['body'] .= "\n[quote]".$quote."[/quote]";
// Only import the picture when the message is no video
// oembed display a picture of the video as well
if ($entry->type != "video") {
if(isset($entry->picture) && isset($entry->link)) {
$datarray['body'] .= "\n" . '[url=' . $entry->link . '][img]'.$entry->picture.'[/img][/url]';
}
else {
if(isset($entry->picture))
$datarray['body'] .= "\n" . '[img]' . $entry->picture . '[/img]';
// if just a link, it may be a wall photo - check
if(isset($entry->link))
$datarray['body'] .= fb_get_photo($uid,$entry->link);
}
}
if (($datarray['app'] == "Events") && isset($entry->actions))
foreach ($entry->actions as $action)
if ($action->name == "View")
$datarray['body'] .= " [url=".$action->link."]".$entry->story."[/url]";
// Just as a test - to see if these are the missing entries
//if(trim($datarray['body']) == '')
// $datarray['body'] = $entry->story;
// Adding the "story" text to see if there are useful data in it (testing)
//if (($datarray['app'] != "Events") && $entry->story)
// $datarray['body'] .= "\n".$entry->story;
if(trim($datarray['body']) == '') {
logger('facebook: empty body '.$entry->id.' '.print_r($entry, true));
continue;
}
$datarray['body'] .= "\n";
if (isset($entry->icon))
$datarray['body'] .= "[img]".$entry->icon."[/img] &nbsp; ";
if (isset($entry->actions))
foreach ($entry->actions as $action)
if (($action->name != "Comment") && ($action->name != "Like"))
$datarray['body'] .= "[url=".$action->link."]".$action->name."[/url] &nbsp; ";
$datarray['body'] = trim($datarray['body']);
//if(($datarray['body'] != '') && ($uid == 1))
// $datarray['body'] .= "[noparse]".print_r($entry, true)."[/noparse]";
if (isset($entry->place)) {
if ($entry->place->name || $entry->place->location->street ||
$entry->place->location->city || $entry->place->location->Denmark) {
$datarray['coord'] = '';
if ($entry->place->name)
$datarray['coord'] .= $entry->place->name;
if ($entry->place->location->street)
$datarray['coord'] .= $entry->place->location->street;
if ($entry->place->location->city)
$datarray['coord'] .= " ".$entry->place->location->city;
if ($entry->place->location->country)
$datarray['coord'] .= " ".$entry->place->location->country;
} else if ($entry->place->location->latitude && $entry->place->location->longitude)
$datarray['coord'] = substr($entry->place->location->latitude, 0, 8)
.' '.substr($entry->place->location->longitude, 0, 8);
}
$datarray['created'] = datetime_convert('UTC','UTC',$entry->created_time);
$datarray['edited'] = datetime_convert('UTC','UTC',$entry->updated_time);
// If the entry has a privacy policy, we cannot assume who can or cannot see it,
// as the identities are from a foreign system. Mark it as private to the owner.
if(isset($entry->privacy) && $entry->privacy->value !== 'EVERYONE') {
$datarray['private'] = 1;
$datarray['allow_cid'] = '<' . $self[0]['id'] . '>';
}
$top_item = item_store($datarray);
$r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($top_item),
intval($uid)
);
if(count($r)) {
$orig_post = $r[0];
logger('fb: new top level item posted');
}
}
/** @var array $orig_post */
$likers_num = (isset($entry->likes) && isset($entry->likes->count) ? IntVal($entry->likes->count) : 0 );
if(isset($entry->likes) && isset($entry->likes->data))
$likers = $entry->likes->data;
else
$likers = null;
$comments_num = (isset($entry->comments) && isset($entry->comments->count) ? IntVal($entry->comments->count) : 0 );
if(isset($entry->comments) && isset($entry->comments->data))
$comments = $entry->comments->data;
else
$comments = null;
$needs_sync = false;
if(is_array($likers)) {
foreach($likers as $likes) fb_consume_like($a, $user, $self, $self_id, $wall, $orig_post, $likes);
if ($sync_comments) {
$r = q("SELECT COUNT(*) likes FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `verb` = '%s' AND `parent-uri` != `uri`",
dbesc($orig_post['uri']),
intval($uid),
dbesc(ACTIVITY_LIKE)
);
if ($r[0]['likes'] < $likers_num) {
logger('fb_consume_stream: missing likes found for ' . $orig_post['uri'] . ' (we have ' . $r[0]['likes'] . ' of ' . $likers_num . '). Synchronizing...', LOGGER_DEBUG);
$needs_sync = true;
}
}
}
if(is_array($comments)) {
foreach($comments as $cmnt) fb_consume_comment($a, $user, $self, $self_id, $wall, $orig_post, $cmnt);
if ($sync_comments) {
$r = q("SELECT COUNT(*) comments FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `verb` = '%s' AND `parent-uri` != `uri`",
dbesc($orig_post['uri']),
intval($uid),
ACTIVITY_POST
);
if ($r[0]['comments'] < $comments_num) {
logger('fb_consume_stream: missing comments found for ' . $orig_post['uri'] . ' (we have ' . $r[0]['comments'] . ' of ' . $comments_num . '). Synchronizing...', LOGGER_DEBUG);
$needs_sync = true;
}
}
}
if ($needs_sync) fb_consume_status($a, $user, $entry, $self, $self_id, $wall, $orig_post);
}
}
/**
* @return bool|string
*/
function fb_get_app_access_token() {
$acc_token = get_config('facebook','app_access_token');
if ($acc_token !== false) return $acc_token;
$appid = get_config('facebook','appid');
$appsecret = get_config('facebook', 'appsecret');
if ($appid === false || $appsecret === false) {
logger('fb_get_app_access_token: appid and/or appsecret not set', LOGGER_DEBUG);
return false;
}
logger('https://graph.facebook.com/oauth/access_token?client_id=' . $appid . '&client_secret=' . $appsecret . '&grant_type=client_credentials', LOGGER_DATA);
$x = fetch_url('https://graph.facebook.com/oauth/access_token?client_id=' . $appid . '&client_secret=' . $appsecret . '&grant_type=client_credentials');
if(strpos($x,'access_token=') !== false) {
logger('fb_get_app_access_token: returned access token: ' . $x, LOGGER_DATA);
$token = str_replace('access_token=', '', $x);
if(strpos($token,'&') !== false)
$token = substr($token,0,strpos($token,'&'));
if ($token == "") {
logger('fb_get_app_access_token: empty token: ' . $x, LOGGER_DEBUG);
return false;
}
set_config('facebook','app_access_token',$token);
return $token;
} else {
logger('fb_get_app_access_token: response did not contain an access_token: ' . $x, LOGGER_DATA);
return false;
}
}
function facebook_subscription_del_users() {
$a = get_app();
$access_token = fb_get_app_access_token();
$url = "https://graph.facebook.com/" . get_config('facebook', 'appid' ) . "/subscriptions?access_token=" . $access_token;
facebook_delete_url($url);
if (!facebook_check_realtime_active()) del_config('facebook', 'realtime_active');
}
/**
* @param bool $second_try
*/
function facebook_subscription_add_users($second_try = false) {
$a = get_app();
$access_token = fb_get_app_access_token();
$url = "https://graph.facebook.com/" . get_config('facebook', 'appid' ) . "/subscriptions?access_token=" . $access_token;
list($usec, $sec) = explode(" ", microtime());
$verify_token = sha1($usec . $sec . rand(0, 999999999));
set_config('facebook', 'cb_verify_token', $verify_token);
$cb = $a->get_baseurl() . '/facebook/?realtime_cb=1';
$j = post_url($url,array(
"object" => "user",
"fields" => "feed,friends",
"callback_url" => $cb,
"verify_token" => $verify_token,
));
del_config('facebook', 'cb_verify_token');
if ($j) {
$x = json_decode($j);
logger("Facebook reponse: " . $j, LOGGER_DATA);
if (isset($x->error)) {
logger('facebook_subscription_add_users: got an error: ' . $j);
if ($x->error->type == "OAuthException" && $x->error->code == 190) {
del_config('facebook', 'app_access_token');
if ($second_try === false) facebook_subscription_add_users(true);
}
} else {
logger('facebook_subscription_add_users: sucessful');
if (facebook_check_realtime_active()) set_config('facebook', 'realtime_active', 1);
}
};
}
/**
* @return null|array
*/
function facebook_subscriptions_get() {
$access_token = fb_get_app_access_token();
if (!$access_token) return null;
$url = "https://graph.facebook.com/" . get_config('facebook', 'appid' ) . "/subscriptions?access_token=" . $access_token;
$j = fetch_url($url);
$ret = null;
if ($j) {
$x = json_decode($j);
if (isset($x->data)) $ret = $x->data;
}
return $ret;
}
/**
* @return bool
*/
function facebook_check_realtime_active() {
$ret = facebook_subscriptions_get();
if (is_null($ret)) return false;
if (is_array($ret)) foreach ($ret as $re) if (is_object($re) && $re->object == "user") return true;
return false;
}
// DELETE-request to $url
if(! function_exists('facebook_delete_url')) {
/**
* @param string $url
* @param null|array $headers
* @param int $redirects
* @param int $timeout
* @return bool|string
*/
function facebook_delete_url($url,$headers = null, &$redirects = 0, $timeout = 0) {
$a = get_app();
$ch = curl_init($url);
if(($redirects > 8) || (! $ch))
return false;
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE");
curl_setopt($ch, CURLOPT_USERAGENT, "Friendica");
if(intval($timeout)) {
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
}
else {
$curl_time = intval(get_config('system','curl_timeout'));
curl_setopt($ch, CURLOPT_TIMEOUT, (($curl_time !== false) ? $curl_time : 60));
}
if(defined('LIGHTTPD')) {
if(!is_array($headers)) {
$headers = array('Expect:');
} else {
if(!in_array('Expect:', $headers)) {
array_push($headers, 'Expect:');
}
}
}
if($headers)
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$check_cert = get_config('system','verifyssl');
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
$prx = get_config('system','proxy');
if(strlen($prx)) {
curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
curl_setopt($ch, CURLOPT_PROXY, $prx);
$prxusr = get_config('system','proxyuser');
if(strlen($prxusr))
curl_setopt($ch, CURLOPT_PROXYUSERPWD, $prxusr);
}
$a->set_curl_code(0);
// don't let curl abort the entire application
// if it throws any errors.
$s = @curl_exec($ch);
$base = $s;
$curl_info = curl_getinfo($ch);
$http_code = $curl_info['http_code'];
$header = '';
// Pull out multiple headers, e.g. proxy and continuation headers
// allow for HTTP/2.x without fixing code
while(preg_match('/^HTTP\/[1-2].+? [1-5][0-9][0-9]/',$base)) {
$chunk = substr($base,0,strpos($base,"\r\n\r\n")+4);
$header .= $chunk;
$base = substr($base,strlen($chunk));
}
if($http_code == 301 || $http_code == 302 || $http_code == 303) {
$matches = array();
preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches);
$url = trim(array_pop($matches));
$url_parsed = @parse_url($url);
if (isset($url_parsed)) {
$redirects++;
return facebook_delete_url($url,$headers,$redirects,$timeout);
}
}
$a->set_curl_code($http_code);
$body = substr($s,strlen($header));
$a->set_curl_headers($header);
curl_close($ch);
return($body);
}}

253
facebook/lang/C/messages.po Normal file
View file

@ -0,0 +1,253 @@
# ADDON facebook
# Copyright (C)
# This file is distributed under the same license as the Friendica facebook addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: facebook.php:497
msgid "Settings updated."
msgstr ""
#: facebook.php:512 facebook.php:518
msgid "Permission denied."
msgstr ""
#: facebook.php:525
msgid "Facebook disabled"
msgstr ""
#: facebook.php:530
msgid "Updating contacts"
msgstr ""
#: facebook.php:553
msgid "Facebook API key is missing."
msgstr ""
#: facebook.php:560
msgid "Facebook Connect"
msgstr ""
#: facebook.php:566
msgid "Install Facebook connector for this account."
msgstr ""
#: facebook.php:573
msgid "Remove Facebook connector"
msgstr ""
#: facebook.php:578
msgid ""
"Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]"
msgstr ""
#: facebook.php:585
msgid "Post to Facebook by default"
msgstr ""
#: facebook.php:591
msgid ""
"Facebook friend linking has been disabled on this site. The following "
"settings will have no effect."
msgstr ""
#: facebook.php:595
msgid ""
"Facebook friend linking has been disabled on this site. If you disable it, "
"you will be unable to re-enable it."
msgstr ""
#: facebook.php:598
msgid "Link all your Facebook friends and conversations on this website"
msgstr ""
#: facebook.php:600
msgid ""
"Facebook conversations consist of your <em>profile wall</em> and your friend "
"<em>stream</em>."
msgstr ""
#: facebook.php:601
msgid "On this website, your Facebook friend stream is only visible to you."
msgstr ""
#: facebook.php:602
msgid ""
"The following settings determine the privacy of your Facebook profile wall "
"on this website."
msgstr ""
#: facebook.php:606
msgid ""
"On this website your Facebook profile wall conversations will only be "
"visible to you"
msgstr ""
#: facebook.php:611
msgid "Do not import your Facebook profile wall conversations"
msgstr ""
#: facebook.php:613
msgid ""
"If you choose to link conversations and leave both of these boxes unchecked, "
"your Facebook profile wall will be merged with your profile wall on this "
"website and your privacy settings on this website will be used to determine "
"who may see the conversations."
msgstr ""
#: facebook.php:618
msgid "Comma separated applications to ignore"
msgstr ""
#: facebook.php:621
msgid "Submit"
msgstr ""
#: facebook.php:702
msgid "Problems with Facebook Real-Time Updates"
msgstr ""
#: facebook.php:704 facebook.php:1202
msgid "Administrator"
msgstr ""
#: facebook.php:730
msgid "Facebook"
msgstr ""
#: facebook.php:731
msgid "Facebook Connector Settings"
msgstr ""
#: facebook.php:746
msgid "Facebook API Key"
msgstr ""
#: facebook.php:756
msgid ""
"Error: it appears that you have specified the App-ID and -Secret in your ."
"htconfig.php file. As long as they are specified there, they cannot be set "
"using this form.<br><br>"
msgstr ""
#: facebook.php:761
msgid ""
"Error: the given API Key seems to be incorrect (the application access token "
"could not be retrieved)."
msgstr ""
#: facebook.php:763
msgid "The given API Key seems to work correctly."
msgstr ""
#: facebook.php:765
msgid ""
"The correctness of the API Key could not be detected. Something strange's "
"going on."
msgstr ""
#: facebook.php:768
msgid "App-ID / API-Key"
msgstr ""
#: facebook.php:769
msgid "Application secret"
msgstr ""
#: facebook.php:770
#, php-format
msgid "Polling Interval in minutes (minimum %1$s minutes)"
msgstr ""
#: facebook.php:771
msgid ""
"Synchronize comments (no comments on Facebook are missed, at the cost of "
"increased system load)"
msgstr ""
#: facebook.php:772
msgid "Save"
msgstr ""
#: facebook.php:775
msgid "Real-Time Updates"
msgstr ""
#: facebook.php:779
msgid "Real-Time Updates are activated."
msgstr ""
#: facebook.php:780
msgid "Deactivate Real-Time Updates"
msgstr ""
#: facebook.php:782
msgid "Real-Time Updates not activated."
msgstr ""
#: facebook.php:782
msgid "Activate Real-Time Updates"
msgstr ""
#: facebook.php:801
msgid "The new values have been saved."
msgstr ""
#: facebook.php:825
msgid "Post to Facebook"
msgstr ""
#: facebook.php:923
msgid ""
"Post to Facebook cancelled because of multi-network access permission "
"conflict."
msgstr ""
#: facebook.php:1151
msgid "View on Friendica"
msgstr ""
#: facebook.php:1184
msgid "Facebook post failed. Queued for retry."
msgstr ""
#: facebook.php:1224
msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr ""
#: facebook.php:1225
msgid "Facebook connection became invalid"
msgstr ""
#: facebook.php:1226
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"The connection between your accounts on %2$s and Facebook became invalid. "
"This usually happens after you change your Facebook-password. To enable the "
"connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
msgstr ""
#: facebook.php:1600
msgid "status"
msgstr ""
#: facebook.php:1604
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr ""

View file

@ -0,0 +1,49 @@
<?php
$a->strings["Settings updated."] = "Ajustos actualitzats.";
$a->strings["Permission denied."] = "Permís denegat.";
$a->strings["Facebook disabled"] = "Facebook deshabilitat";
$a->strings["Updating contacts"] = "Actualitzant contactes";
$a->strings["Facebook API key is missing."] = "La clau del API de Facebook s'ha perdut.";
$a->strings["Facebook Connect"] = "Facebook Connectat";
$a->strings["Install Facebook connector for this account."] = "Instal·lar el connector de Facebook per aquest compte.";
$a->strings["Remove Facebook connector"] = "Eliminar el connector de Faceboook";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Re-autentificar [Això és necessari cada vegada que la contrasenya de Facebook canvia.]";
$a->strings["Post to Facebook by default"] = "Enviar a Facebook per defecte";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "La vinculació amb amics de Facebook s'ha deshabilitat en aquest lloc. Els ajustos que facis no faran efecte.";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "La vinculació amb amics de Facebook s'ha deshabilitat en aquest lloc. Si esta deshabilitat, no es pot utilitzar.";
$a->strings["Link all your Facebook friends and conversations on this website"] = "Enllaça tots els teus amics i les converses de Facebook en aquest lloc web";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Les converses de Facebook consisteixen en el <em>perfil del mur</em> i en el<em> flux </em> del seu amic.";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "En aquesta pàgina web, el flux del seu amic a Facebook només és visible per a vostè.";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Les següents opcions determinen la privacitat del mur del seu perfil de Facebook en aquest lloc web.";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "En aquesta pàgina web les seves converses al mur del perfil de Facebook només seran visible per a vostè";
$a->strings["Do not import your Facebook profile wall conversations"] = "No importi les seves converses del mur del perfil de Facebook";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Si opta per vincular les converses i deixar ambdues caselles sense marcar, el mur del seu perfil de Facebook es fusionarà amb el mur del seu perfil en aquest lloc web i la seva configuració de privacitat en aquest website serà utilitzada per determinar qui pot veure les converses.";
$a->strings["Comma separated applications to ignore"] = "Separats per comes les aplicacions a ignorar";
$a->strings["Submit"] = "Enviar";
$a->strings["Problems with Facebook Real-Time Updates"] = "Problemes amb Actualitzacions en Temps Real a Facebook";
$a->strings["Administrator"] = "Administrador";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Ajustos del Connector de Facebook";
$a->strings["Facebook API Key"] = "Facebook API Key";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Error: Apareix que has especificat el App-ID i el Secret en el arxiu .htconfig.php. Per estar especificat allà, no pot ser canviat utilitzant aquest formulari.<br><br>";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Error: la API Key facilitada sembla incorrecta (no es va poder recuperar el token d'accés de l'aplicatiu).";
$a->strings["The given API Key seems to work correctly."] = "La API Key facilitada sembla treballar correctament.";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "La correcció de la API key no pot ser detectada. Quelcom estrany ha succeït.";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "Application secret";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Sincronitzar els comentaris (els comentaris a Facebook es perden, a costa de la major càrrega del sistema)";
$a->strings["Save"] = "Guardar";
$a->strings["Real-Time Updates"] = "Actualitzacions en Temps Real";
$a->strings["Real-Time Updates are activated."] = "Actualitzacions en Temps Real està activat.";
$a->strings["Deactivate Real-Time Updates"] = "Actualitzacions en Temps Real Desactivat";
$a->strings["Real-Time Updates not activated."] = "Actualitzacions en Temps Real no activat.";
$a->strings["Activate Real-Time Updates"] = "Actualitzacions en Temps Real Activat";
$a->strings["The new values have been saved."] = "Els nous valors s'han guardat.";
$a->strings["Post to Facebook"] = "Enviament a Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Enviament a Facebook cancel·lat perque hi ha un conflicte de permisos d'accés multi-xarxa.";
$a->strings["View on Friendica"] = "Vist en Friendica";
$a->strings["Facebook post failed. Queued for retry."] = "Enviament a Facebook fracassat. En cua per a reintent.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "La seva connexió a Facebook es va convertir en no vàlida. Per favor, torni a autenticar-se";
$a->strings["Facebook connection became invalid"] = "La seva connexió a Facebook es va convertir en no vàlida";
$a->strings["status"] = "estatus";

View file

@ -0,0 +1,49 @@
<?php
$a->strings["Settings updated."] = "Nastavení aktualizováno.";
$a->strings["Permission denied."] = "Přístup odmítnut.";
$a->strings["Facebook disabled"] = "Facebook zakázán";
$a->strings["Updating contacts"] = "Aktualizace kontaktů";
$a->strings["Facebook API key is missing."] = "Chybí Facebook API klíč.";
$a->strings["Facebook Connect"] = "Facebook připojen";
$a->strings["Install Facebook connector for this account."] = "Nainstalovat pro tento účet Facebook konektor.";
$a->strings["Remove Facebook connector"] = "Odstranit konektor na Facebook";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Opětovná autentikace [Toto je nezbytné kdykoliv se změní Vaše heslo na Facebooku.]";
$a->strings["Post to Facebook by default"] = "Standardně posílat příspěvky na Facebook";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "Propojování facebookových přátel bylo na tomto webu zablokováno. Následující odkazy nebudou mít žádný efekt.";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "Propojování facebookových přátel bylo na tomto webu zablokováno. Když to zakážete nebudete schopni toto znovu povolit.";
$a->strings["Link all your Facebook friends and conversations on this website"] = "Připojit na tomto webu všechny Vaše přátelé a konverzace z Facebooku";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Facebookové konverzace se skládají z Vaší <em>profilové zdi</em> a příspěvků Vašich přátel <em>(stream)</em>.";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Na tomto webu můžete vidět pouze příspěvky Vašich přátel Facebook (Stream).";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Následující nastavení určuje Vaše soukromí na Facebookovém profilu na tomto webu.";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Na tomto webu bude konverzace z Facebookové profilové zdi viditelná pouze pro Vás.";
$a->strings["Do not import your Facebook profile wall conversations"] = "Neimportovat konverzace z Facebookové zdi";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Pokud budete chtít propojit konverzace a ponecháte obě z těchto dvou polí nezaškrtnuté, bude Vaše profilová zeď na Facebooku sloučená s profilovou zdí na tomto webu a nastavení soukromí na tomto webu bude určovat kdo bude mít možnost vidět konverzace.";
$a->strings["Comma separated applications to ignore"] = "čárkou oddělené aplikace k ignorování";
$a->strings["Submit"] = "Odeslat";
$a->strings["Problems with Facebook Real-Time Updates"] = "Problémy s Facebook Real-Time aktualizacemi";
$a->strings["Administrator"] = "Administrátor";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Nastavení Facebook konektoru ";
$a->strings["Facebook API Key"] = "Facebook API Key";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Chyba: zdá se, že jste specifikoval App-ID a -Secret ve Vašem .htconfig.php souboru. Dokud jsou na tomto místě specifikované, nemohou být nastaveny s pomocí tohoto formuláře.<br><br>";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Chyba: zadané API Key se zdá být chybné (není možné získat aplikační přístupový token).";
$a->strings["The given API Key seems to work correctly."] = "Zadané API Key se zdá funguje v pořádku.";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "Správnost klíče API nemohla být detekovaná. Děje se něco podivného.";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "Application secret";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Syncronizovat komentáře (nedojde k vynechání žádného komentáže na Facebooku za cenu vyšší zátěže systému)";
$a->strings["Save"] = "Uložit";
$a->strings["Real-Time Updates"] = "Real-Time Aktualizace";
$a->strings["Real-Time Updates are activated."] = "Real-Time aktualizace aktivovány.";
$a->strings["Deactivate Real-Time Updates"] = "Deaktivovat Real-Time aktualizace";
$a->strings["Real-Time Updates not activated."] = "Real-Time aktualizace nejsou aktivovány.";
$a->strings["Activate Real-Time Updates"] = "Aktivovat Real-Time aktualizace";
$a->strings["The new values have been saved."] = "Nové hodnoty byly uloženy";
$a->strings["Post to Facebook"] = "Přidat příspěvek na Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Příspěvek na Facebook zrušen kvůli konfliktu přístupových práv mezi sítěmi.";
$a->strings["View on Friendica"] = "Zobrazení na Friendica";
$a->strings["Facebook post failed. Queued for retry."] = "Zaslání příspěvku na Facebook selhalo. Příspěvek byl zařazen do fronty pro opakované odeslání.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Vaše připojení na Facebook přestalo být platné. Prosím znovu se přihlaste.";
$a->strings["Facebook connection became invalid"] = "Připojení na Facebook bylo zneplatněno.";
$a->strings["status"] = "Stav";

View file

@ -0,0 +1,49 @@
<?php
$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
$a->strings["Permission denied."] = "Zugriff verweigert.";
$a->strings["Facebook disabled"] = "Facebook deaktiviert";
$a->strings["Updating contacts"] = "Aktualisiere Kontakte";
$a->strings["Facebook API key is missing."] = "Facebook-API-Schlüssel nicht gefunden";
$a->strings["Facebook Connect"] = "Mit Facebook verbinden";
$a->strings["Install Facebook connector for this account."] = "Facebook-Connector für dieses Konto installieren.";
$a->strings["Remove Facebook connector"] = "Facebook-Connector entfernen";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Neu authentifizieren [Das ist immer dann nötig, wenn du dein Facebook-Passwort geändert hast.]";
$a->strings["Post to Facebook by default"] = "Veröffentliche standardmäßig bei Facebook";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Die folgenden Einstellungen haben keinen Effekt.";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Wenn du es ausgeschaltet hast, kannst du es nicht wieder aktivieren.";
$a->strings["Link all your Facebook friends and conversations on this website"] = "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Facebook-Konversationen bestehen aus deinen Beiträgen auf deiner<em>Pinnwand</em>, sowie den Beiträgen deiner Freunde <em>Stream</em>.";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Hier auf dieser Webseite kannst nur du die Beiträge Deiner Facebook-Freunde (Stream) sehen.";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Mit den folgenden Einstellungen kannst du die Privatsphäre der Kopie Deiner Facebook-Pinnwand hier auf dieser Seite einstellen.";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Meine Facebook-Pinnwand hier auf dieser Webseite nur für mich sichtbar machen";
$a->strings["Do not import your Facebook profile wall conversations"] = "Facebook-Pinnwand nicht importieren";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Wenn du Facebook-Konversationen importierst und diese beiden Häkchen nicht setzt, wird deine Facebook-Pinnwand mit der Pinnwand hier auf dieser Webseite vereinigt. Die Privatsphäre-Einstellungen für deine Pinnwand auf dieser Webseite geben dann an, wer die Konversationen sehen kann.";
$a->strings["Comma separated applications to ignore"] = "Kommaseparierte Anwendungen, die ignoriert werden sollen";
$a->strings["Submit"] = "Senden";
$a->strings["Problems with Facebook Real-Time Updates"] = "Probleme mit Facebook Echtzeit-Updates";
$a->strings["Administrator"] = "Administrator";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Facebook-Verbindungseinstellungen";
$a->strings["Facebook API Key"] = "Facebook API Schlüssel";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Fehler: du scheinst die App-ID und das App-Geheimnis in deiner .htconfig.php Datei angegeben zu haben. Solange sie dort festgelegt werden kannst du dieses Formular hier nicht verwenden.<br><br>";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden).";
$a->strings["The given API Key seems to work correctly."] = "Der angegebene API Schlüssel scheint korrekt zu funktionieren.";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "Die Richtigkeit des API Schlüssels konnte nicht gefunden werden. Irgendwas stimmt nicht.";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "Anwendungs-Geheimnis";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Kommentare synchronisieren (Kein Kommentar von Facebook geht verloren, verursacht höhere Last auf dem Server)";
$a->strings["Save"] = "Speichern";
$a->strings["Real-Time Updates"] = "Echtzeit Aktualisierungen";
$a->strings["Real-Time Updates are activated."] = "Echtzeit-Updates sind aktiviert.";
$a->strings["Deactivate Real-Time Updates"] = "Echtzeit-Updates deaktivieren";
$a->strings["Real-Time Updates not activated."] = "Echtzeit-Updates nicht aktiviert.";
$a->strings["Activate Real-Time Updates"] = "Echtzeit-Updates aktivieren";
$a->strings["The new values have been saved."] = "Die neuen Einstellungen wurden gespeichert.";
$a->strings["Post to Facebook"] = "Bei Facebook veröffentlichen";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Beitrag wurde nicht bei Facebook veröffentlicht, da Konflikte bei den Multi-Netzwerk-Zugriffsrechten vorliegen.";
$a->strings["View on Friendica"] = "In Friendica betrachten";
$a->strings["Facebook post failed. Queued for retry."] = "Veröffentlichung bei Facebook gescheitert. Wir versuchen es später erneut.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich.";
$a->strings["Facebook connection became invalid"] = "Facebook Anmeldedaten sind ungültig geworden";
$a->strings["status"] = "Status";

View file

@ -0,0 +1,49 @@
<?php
$a->strings["Settings updated."] = "Agordoj ĝisdatigita.";
$a->strings["Permission denied."] = "Malpermesita.";
$a->strings["Facebook disabled"] = "Facebook malŝaltita";
$a->strings["Updating contacts"] = "Mi ĝisdatigas la kontaktojn.";
$a->strings["Facebook API key is missing."] = "La API ŝlosilo de Facebook ne estas konata ĉi tie.";
$a->strings["Facebook Connect"] = "Kontekto al Facebook";
$a->strings["Install Facebook connector for this account."] = "Instali la Facebook konektilo por ĉi tiu konto.";
$a->strings["Remove Facebook connector"] = "Forigi la Facebook konektilon.";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Reaŭtentiĝi [Tio estas bezonata ĉiam kiam vi ŝanĝis vian pasvorton ĉe Facebook.]";
$a->strings["Post to Facebook by default"] = "Ĉiam afiŝi al Facebook.";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "Ligado kun Facebook amikoj estas malaktivita ĉe tiu retejo. La sekvantaj agordoj do ne havas validecon.";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "Ligado kun Facebook amikoj estas malaktivita ĉe tiu retejo. Se vi malŝaltas ĝin, vi ne eblos ree ŝalti ĝin.";
$a->strings["Link all your Facebook friends and conversations on this website"] = "Alligu ĉiujn viajn Facebook amikojn kaj konversaciojn je ĉi-tiu retejo.";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Facebok konversacioj konsistas el via <em>profilmuro</em> kaj la <em>fluo</em> de viaj amikoj.";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Je ĉi-tiu retejo, la fluo de viaj amikoj ĉe Facebook nur videblas al vi.";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "La sekvontaj agordoj difinas la privatecon de via Facebook profilmuro je ĉi-tiu retejo.";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Je ĉi-tiu retejo, la conversacioj sur via Facebook profilmuro nur videblas al vi.";
$a->strings["Do not import your Facebook profile wall conversations"] = "Ne importi konversaciojn de via Facebook profilmuro";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Se vi elektas alligi conversaciojn kaj ne elektas tiujn butonojn, via Facebook profilmuro estas kunigota kun via profilmuro ĉi tie. Viaj privatecaj agordoj ĉi tie difinos kiu povas vidi la coversaciojn.";
$a->strings["Comma separated applications to ignore"] = "Ignorotaj programoj, disigita per komo";
$a->strings["Submit"] = "Sendi";
$a->strings["Problems with Facebook Real-Time Updates"] = "Problemoj kun Facebook Realtempaj Ĝisdatigoj";
$a->strings["Administrator"] = "Administranto";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Agordoj por la Facebook konektilo";
$a->strings["Facebook API Key"] = "Facebook API ŝlosilo";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Eraro: Ŝajnas kvazaŭ vi agordis la App-ID kaj la sekreton en via .htconfig.php dosiero. Kiam ili estas agordita tie, vi ne povas agordi ĝin en tiu ĉi formo.<br><br>";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Eraro: La API ŝlosilo aspektas malĝusta (ne eblas ricevi la programa atingoĵetono).";
$a->strings["The given API Key seems to work correctly."] = "La API ŝlosilo ŝajne ĝuste funkcias.";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "Ne povis kontroli la ĝusteco de la API ŝlosilo. Stranga afero okazas.";
$a->strings["App-ID / API-Key"] = "Programo ID / API Ŝlosilo";
$a->strings["Application secret"] = "Programo sekreto";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Sinkronigi komentojn (vi ricevas ĉiujn komentojn de Facebook, sed la ŝargo de la sistemo iom kreskas)";
$a->strings["Save"] = "Konservi";
$a->strings["Real-Time Updates"] = "Realtempaj Ĝisdatigoj";
$a->strings["Real-Time Updates are activated."] = "Realtempaj Ĝisdatigoj estas ŝaltita";
$a->strings["Deactivate Real-Time Updates"] = "Malŝalti Realtempaj Ĝisdatigoj";
$a->strings["Real-Time Updates not activated."] = "Realtempaj Ĝisdatigoj estas malŝaltita";
$a->strings["Activate Real-Time Updates"] = "Ŝalti Realtempaj Ĝisdatigoj";
$a->strings["The new values have been saved."] = "Konservis novajn valorojn.";
$a->strings["Post to Facebook"] = "Afiŝi al Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Afiŝado al Facebook nuligita ĉar okazis konflikto en la multretpermesoj.";
$a->strings["View on Friendica"] = "Vidi ĉe Friendica";
$a->strings["Facebook post failed. Queued for retry."] = "Malsukcesis afiŝi ĉe Facebook. Enigita en vico.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Via Facbook konekto iĝis nevalida. Bonvolu reaŭtentiĝi.";
$a->strings["Facebook connection became invalid"] = "Facebook konekto iĝis nevalida.";
$a->strings["status"] = "staton";

View file

@ -0,0 +1,49 @@
<?php
$a->strings["Settings updated."] = "Configuración actualizada.";
$a->strings["Permission denied."] = "Permiso denegado.";
$a->strings["Facebook disabled"] = "Facebook deshabilitado";
$a->strings["Updating contacts"] = "Actualizando contactos";
$a->strings["Facebook API key is missing."] = "Falta la clave API de Facebook.";
$a->strings["Facebook Connect"] = "Conexión con Facebook";
$a->strings["Install Facebook connector for this account."] = "Instalar el conector de Facebook para esta cuenta.";
$a->strings["Remove Facebook connector"] = "Eliminar el conector de Facebook";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Volver a identificarse [Esto es necesario cada vez que tu contraseña de Facebook cambie.]";
$a->strings["Post to Facebook by default"] = "Publicar en Facebook de forma predeterminada";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "El enlace con los contactos de Facebook ha sido desactivado en este servidor. La configuración no tendrá efecto alguno.";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "El enlace con los contactos de Facebook ha sido desactivado en este servidor. Si se desactiva no podrá volver a reactivarse.";
$a->strings["Link all your Facebook friends and conversations on this website"] = "Vincula a todos tus amigos de Facebook y las conversaciones con este sitio";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Las conversaciones de Facebook consisten en tu <em>muro</em>, tu <em>perfil</em> y las <em>publicaciones</em> de tus amigos.";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "En esta página las publicaciones de tus amigos de Facebook solo son visibles para ti.";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "La siguiente configuración determina la privacidad del muro de tu perfil de Facebook en este sitio.";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "En este sitio las publicaciones del muro de Facebook solo son visibles para ti";
$a->strings["Do not import your Facebook profile wall conversations"] = "No importar las conversaciones de tu muro de Facebook";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Si decides conectar las conversaciones y dejar ambas casillas sin marcar, el muro de tu perfil de Facebook se fusionará con el muro de tu perfil en este sitio y la configuración de privacidad en este sitio será utilizada para determinar quién puede ver las conversaciones.";
$a->strings["Comma separated applications to ignore"] = "Aplicaciones a ignorar separadas por comas";
$a->strings["Submit"] = "Envíar";
$a->strings["Problems with Facebook Real-Time Updates"] = "Hay problemas con las actualizaciones en tiempo real de Facebook";
$a->strings["Administrator"] = "Administrador";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Configuración de conexión a Facebook";
$a->strings["Facebook API Key"] = "Llave API de Facebook";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Error: parece que la App-ID y el -Secret ya están configurados en tu archivo .htconfig.php. Al estar configurados allí, no se usará este formulario.<br><br>";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Error: la llave API proporcionada parece incorrecta (no se pudo recuperar la ficha de acceso a la aplicación).";
$a->strings["The given API Key seems to work correctly."] = "La Llave API proporcionada parece funcionar correctamente.";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "No se ha podido detectar una llave API correcta. Algo raro está pasando.";
$a->strings["App-ID / API-Key"] = "Añadir ID / Llave API";
$a->strings["Application secret"] = "Secreto de la aplicación";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Sincronizar comentarios (no se perderán comentarios de Facebook, pero se incrementará la carga del sistema)";
$a->strings["Save"] = "Guardar";
$a->strings["Real-Time Updates"] = "Actualizaciones en tiempo real";
$a->strings["Real-Time Updates are activated."] = "Actualizaciones en tiempo real activada.";
$a->strings["Deactivate Real-Time Updates"] = "Desactivar actualizaciones en tiempo real";
$a->strings["Real-Time Updates not activated."] = "Actualizaciones en tiempo real desactivada.";
$a->strings["Activate Real-Time Updates"] = "Activar actualizaciones en tiempo real";
$a->strings["The new values have been saved."] = "Los nuevos valores se han guardado.";
$a->strings["Post to Facebook"] = "Publicar en Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Publicación en Facebook cancelada debido a un conflicto con los permisos de acceso a la multi-red.";
$a->strings["View on Friendica"] = "Ver en Friendica";
$a->strings["Facebook post failed. Queued for retry."] = "Publicación en Facebook errónea. Reintentando...";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Tu conexión con Facebook ha sido invalidada. Por favor vuelve a identificarte.";
$a->strings["Facebook connection became invalid"] = "La conexión con Facebook ha sido invalidada";
$a->strings["status"] = "estado";

View file

@ -0,0 +1,49 @@
<?php
$a->strings["Settings updated."] = "Réglages mis à jour.";
$a->strings["Permission denied."] = "Permission refusée.";
$a->strings["Facebook disabled"] = "Connecteur Facebook désactivé";
$a->strings["Updating contacts"] = "Mise-à-jour des contacts";
$a->strings["Facebook API key is missing."] = "Clé d'API Facebook manquante.";
$a->strings["Facebook Connect"] = "Connecteur Facebook";
$a->strings["Install Facebook connector for this account."] = "Installer le connecteur Facebook sur ce compte.";
$a->strings["Remove Facebook connector"] = "Désinstaller le connecteur Facebook";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Se ré-authentifier [nécessaire chaque fois que vous changez votre mot de passe Facebook.]";
$a->strings["Post to Facebook by default"] = "Poster sur Facebook par défaut";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "L'ajout d'amis Facebook a été désactivé sur ce site. Les réglages suivants seront sans effet.";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "L'ajout d'amis Facebook a été désactivé sur ce site. Si vous désactivez ce réglage, vous ne pourrez le ré-activer.";
$a->strings["Link all your Facebook friends and conversations on this website"] = "Lier tous vos amis et conversations Facebook sur ce site";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Les conversations Facebook se composent du <em>mur du profil</em> et des <em>flux</em> de vos amis.";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Sur ce site, les flux de vos amis Facebook ne sont visibles que par vous.";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Les réglages suivants déterminent le niveau de vie privée de votre mur Facebook depuis ce site.";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Sur ce site, les conversations de votre mur Facebook ne sont visibles que par vous.";
$a->strings["Do not import your Facebook profile wall conversations"] = "Ne pas importer les conversations de votre mur Facebook.";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Si vous choisissez de lier les conversations et de laisser ces deux cases non-cochées, votre mur Facebook sera fusionné avec votre mur de profil (sur ce site). Vos réglages (locaux) de vie privée serviront à en déterminer la visibilité.";
$a->strings["Comma separated applications to ignore"] = "Liste (séparée par des virgules) des applications à ignorer";
$a->strings["Submit"] = "Envoyer";
$a->strings["Problems with Facebook Real-Time Updates"] = "Problème avec les mises-à-jour en temps réel de Facebook";
$a->strings["Administrator"] = "Administrateur";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Réglages du connecteur Facebook";
$a->strings["Facebook API Key"] = "Clé d'API Facebook";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Erreur: il semble que vous ayez spécifié un App-ID et un Secret dans votre fichier .htconfig.php. Tant qu'ils y seront, vous ne pourrez les configurer avec ce formulaire.<br /><br />";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Erreur: la clé d'API semble incorrecte (le jeton d'accès d'application n'a pu être recupéré)";
$a->strings["The given API Key seems to work correctly."] = "La clé d'API semble fonctionner correctement.";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "La validité de la clé d'API ne peut être vérifiée. Quelque-chose d'étrange se passe.";
$a->strings["App-ID / API-Key"] = "App-ID / Clé d'API";
$a->strings["Application secret"] = "Secret de l'application";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Synchroniser les commentaires (aucun commentaire de Facebook ne devrait être oublié, au prix d'une charge système accrue)";
$a->strings["Save"] = "Sauver";
$a->strings["Real-Time Updates"] = "Mises-à-jour en temps réel";
$a->strings["Real-Time Updates are activated."] = "Mises-à-jour en temps réel activées.";
$a->strings["Deactivate Real-Time Updates"] = "Désactiver les mises-à-jour en temps réel";
$a->strings["Real-Time Updates not activated."] = "Mises-à-jour en temps réel désactivées.";
$a->strings["Activate Real-Time Updates"] = "Activer les mises-à-jour en temps réel";
$a->strings["The new values have been saved."] = "Les nouvelles valeurs ont été sauvées.";
$a->strings["Post to Facebook"] = "Poster sur Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Publication sur Facebook annulée pour cause de conflit de permissions inter-réseaux.";
$a->strings["View on Friendica"] = "Voir sur Friendica";
$a->strings["Facebook post failed. Queued for retry."] = "Publication sur Facebook échouée. En attente pour re-tentative.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Votre connexion à Facebook est devenue invalide. Merci de vous ré-authentifier.";
$a->strings["Facebook connection became invalid"] = "La connexion Facebook est devenue invalide";
$a->strings["status"] = "le statut";

View file

@ -0,0 +1,49 @@
<?php
$a->strings["Settings updated."] = "Stillingar uppfærðar";
$a->strings["Permission denied."] = "Heimild ekki veitt.";
$a->strings["Facebook disabled"] = "Ekki er kveikt á Facebook ";
$a->strings["Updating contacts"] = "Uppfæra tengiliði";
$a->strings["Facebook API key is missing."] = "Facebook API lykill er ekki til staðar.";
$a->strings["Facebook Connect"] = "Facebook tenging";
$a->strings["Install Facebook connector for this account."] = "Setja þarf upp Facebook tengil fyrir þennan notanda";
$a->strings["Remove Facebook connector"] = "Fjarlæga Facebook tengil";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Þörf er á endurauðkenningu [Þetta þarf að gera í hvert skipti sem Facebook aðgangsorði er breytt.]";
$a->strings["Post to Facebook by default"] = "Senda sjálfgefið færslur á Facebook ";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
$a->strings["Link all your Facebook friends and conversations on this website"] = "Tengjast öllum vinum og samtölum á Facebook af þessum vef";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Facebook samtöl saman standa af færslum af <em>forsíðuvegg</em> og <em>vinastraum</em> þínum.";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Aðeins Facebook vinastraumurinn þinn er sjáanlegur á þessum þessum vef.";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Eftirfarandi stillingar stjórna friðhelgi Facebook forsíðu vegg á þessum vef. ";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Samtöl á Facebook forsíðu vegg verða einungis sýnileg þér";
$a->strings["Do not import your Facebook profile wall conversations"] = "Ekki sækja samtöl af Facebook forsíðu vegg";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Ef þú ákveður að hlekkja samtöl saman og hefur bæði þessi hök slökkt, þá mun Facebook forsíðan sameinast forsíðunni á þessum vef þannig að friðhelgisstillingar hér munu stjórna hvernig mega sjá hvað.";
$a->strings["Comma separated applications to ignore"] = "Forrit sem á að hunsa (komma á milli)";
$a->strings["Submit"] = "Senda inn";
$a->strings["Problems with Facebook Real-Time Updates"] = "";
$a->strings["Administrator"] = "Kerfisstjóri";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Facebook tengils stillingar";
$a->strings["Facebook API Key"] = "";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
$a->strings["The given API Key seems to work correctly."] = "";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
$a->strings["App-ID / API-Key"] = "";
$a->strings["Application secret"] = "";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
$a->strings["Save"] = "Vista";
$a->strings["Real-Time Updates"] = "";
$a->strings["Real-Time Updates are activated."] = "";
$a->strings["Deactivate Real-Time Updates"] = "";
$a->strings["Real-Time Updates not activated."] = "";
$a->strings["Activate Real-Time Updates"] = "";
$a->strings["The new values have been saved."] = "";
$a->strings["Post to Facebook"] = "Senda á Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Hætt við færslu á Facebook vegna marg nets aðgangs átaka.";
$a->strings["View on Friendica"] = "Skoða á Friendica";
$a->strings["Facebook post failed. Queued for retry."] = "Færsla sem átti að flæða yfir á Facebook mistókst. Sett í biðröð til endurtekningar.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
$a->strings["Facebook connection became invalid"] = "";
$a->strings["status"] = "staða";

View file

@ -0,0 +1,49 @@
<?php
$a->strings["Settings updated."] = "Impostazioni aggiornate.";
$a->strings["Permission denied."] = "Permesso negato.";
$a->strings["Facebook disabled"] = "Facebook disabilitato";
$a->strings["Updating contacts"] = "Aggiornamento contatti";
$a->strings["Facebook API key is missing."] = "Chiave API Facebook mancante.";
$a->strings["Facebook Connect"] = "Facebook Connect";
$a->strings["Install Facebook connector for this account."] = "Installa Facebook connector per questo account";
$a->strings["Remove Facebook connector"] = "Rimuovi Facebook connector";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Ri-autentica [Questo è necessario ogni volta che cambia la password di Facebook.]";
$a->strings["Post to Facebook by default"] = "Invia sempre a Facebook";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
$a->strings["Link all your Facebook friends and conversations on this website"] = "Collega tutti i tuoi amici di Facebook e le conversazioni su questo sito";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Le conversazione su Facebook sono composte dai i tuoi messsaggi in bacheca e dai messaggi dei tuoi amici";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Su questo sito, i messaggi dai vostri amici su Facebook è visibile solo a te.";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Le seguenti impostazioni determinano la privacy della vostra bacheca di Facebook su questo sito.";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Su questo sito, le conversazioni sulla tua bacheca di Facebook saranno visibili solo a te";
$a->strings["Do not import your Facebook profile wall conversations"] = "Non importare le conversazione sulla tua bacheca di Facebook";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Se scegli di collegare le conversazioni e lasci entrambi questi box non segnati, la tua bacheca di Facebook sarà fusa con la tua bacheca su questao sito, e le impostazioni di privacy su questo sito saranno usate per decidere chi potrà vedere le conversazioni.";
$a->strings["Comma separated applications to ignore"] = "Elenco separato da virgola di applicazioni da ignorare";
$a->strings["Submit"] = "Invia";
$a->strings["Problems with Facebook Real-Time Updates"] = "Problemi con gli aggiornamenti in tempo reale con Facebook";
$a->strings["Administrator"] = "Amministratore";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Impostazioni del connettore Facebook";
$a->strings["Facebook API Key"] = "Facebook API Key";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Error: the given API Key seems to be incorrect (the application access token could not be retrieved).";
$a->strings["The given API Key seems to work correctly."] = "L' API Key fornita sembra funzionare correttamente.";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "L' API Key non puo' essere verificata. Sta succedendo qualcosa di strano.";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "Application secret";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Sincronizza i commenti (non vengono persi commenti su Facebook, al prezzo di un maggior carico di sistema)";
$a->strings["Save"] = "Salva";
$a->strings["Real-Time Updates"] = "Aggiornamenti Real-Time";
$a->strings["Real-Time Updates are activated."] = "Gli aggiornamenti in tempo reale sono attivi";
$a->strings["Deactivate Real-Time Updates"] = "Disattiva gli aggiornamenti in tempo reale";
$a->strings["Real-Time Updates not activated."] = "Gli aggiornamenti in tempo reale non sono attivi";
$a->strings["Activate Real-Time Updates"] = "Attiva gli aggiornamenti in tempo reale";
$a->strings["The new values have been saved."] = "I nuovi valori sono stati salvati.";
$a->strings["Post to Facebook"] = "Invia a Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Invio su Facebook annullato per un conflitto nei permessi di accesso.";
$a->strings["View on Friendica"] = "Vedi su Friendica";
$a->strings["Facebook post failed. Queued for retry."] = "Invio a Facebook fallito. In attesa di riprovare.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "La tua connessione con Facebook è diventata invalida. Per favore ri-autenticati.";
$a->strings["Facebook connection became invalid"] = "La connessione Facebook è diventata invalida.";
$a->strings["status"] = "stato";

View file

@ -0,0 +1,49 @@
<?php
$a->strings["Settings updated."] = "Innstillinger oppdatert.";
$a->strings["Permission denied."] = "Ingen tilgang.";
$a->strings["Facebook disabled"] = "Facebook avskrudd";
$a->strings["Updating contacts"] = "Oppdaterer kontakter";
$a->strings["Facebook API key is missing."] = "Facebook API-nøkkel mangler.";
$a->strings["Facebook Connect"] = "Facebook-kobling";
$a->strings["Install Facebook connector for this account."] = "Legg til Facebook-kobling for denne kontoen.";
$a->strings["Remove Facebook connector"] = "Fjern Facebook-kobling";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "";
$a->strings["Post to Facebook by default"] = "Post til Facebook som standard";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
$a->strings["Link all your Facebook friends and conversations on this website"] = "";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "";
$a->strings["Do not import your Facebook profile wall conversations"] = "";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "";
$a->strings["Comma separated applications to ignore"] = "";
$a->strings["Submit"] = "Lagre";
$a->strings["Problems with Facebook Real-Time Updates"] = "";
$a->strings["Administrator"] = "Administrator";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Innstillinger for Facebook-kobling";
$a->strings["Facebook API Key"] = "";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
$a->strings["The given API Key seems to work correctly."] = "";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
$a->strings["App-ID / API-Key"] = "";
$a->strings["Application secret"] = "";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
$a->strings["Save"] = "Lagre";
$a->strings["Real-Time Updates"] = "";
$a->strings["Real-Time Updates are activated."] = "";
$a->strings["Deactivate Real-Time Updates"] = "";
$a->strings["Real-Time Updates not activated."] = "";
$a->strings["Activate Real-Time Updates"] = "";
$a->strings["The new values have been saved."] = "";
$a->strings["Post to Facebook"] = "Post til Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Posting til Facebook avbrutt på grunn av konflikt med tilgangsrettigheter i multi-nettverk.";
$a->strings["View on Friendica"] = "";
$a->strings["Facebook post failed. Queued for retry."] = "Facebook-innlegg mislyktes. Innlegget er lagt i kø for å prøve igjen.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
$a->strings["Facebook connection became invalid"] = "";
$a->strings["status"] = "status";

View file

@ -0,0 +1,49 @@
<?php
$a->strings["Settings updated."] = "Zaktualizowano ustawienia.";
$a->strings["Permission denied."] = "Brak uprawnień.";
$a->strings["Facebook disabled"] = "Facebook wyłączony";
$a->strings["Updating contacts"] = "Aktualizacja kontaktów";
$a->strings["Facebook API key is missing."] = "Brakuje klucza API z facebooka.";
$a->strings["Facebook Connect"] = "Połącz konto z kontem Facebook";
$a->strings["Install Facebook connector for this account."] = "Zainstaluj wtyczkę Facebook ";
$a->strings["Remove Facebook connector"] = "Usuń wtyczkę Facebook";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Ponowna autoryzacja [Jest wymagana jeśli twoje hasło do Facebooka jest zmienione]";
$a->strings["Post to Facebook by default"] = "Domyślnie opublikuj na stronie Facebook";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
$a->strings["Link all your Facebook friends and conversations on this website"] = "Połącz wszystkie twoje kontakty i konwersacje na tej stronie z serwisem Facebook";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "";
$a->strings["Do not import your Facebook profile wall conversations"] = "";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "";
$a->strings["Comma separated applications to ignore"] = "";
$a->strings["Submit"] = "Potwierdź";
$a->strings["Problems with Facebook Real-Time Updates"] = "Problemy z aktualizacjami w czasie rzeczywistym Facebook'a";
$a->strings["Administrator"] = "Administrator";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Ustawienia połączenia z Facebook";
$a->strings["Facebook API Key"] = "Facebook API Key";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
$a->strings["The given API Key seems to work correctly."] = "";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
$a->strings["Save"] = "Zapisz";
$a->strings["Real-Time Updates"] = "Aktualizacje w czasie rzeczywistym";
$a->strings["Real-Time Updates are activated."] = "Aktualizacje w czasie rzeczywistym zostały aktywowane.";
$a->strings["Deactivate Real-Time Updates"] = "Zdezaktywuj aktualizacje w czasie rzeczywistym";
$a->strings["Real-Time Updates not activated."] = "Aktualizacje w czasie rzeczywistym nie zostały aktywowane.";
$a->strings["Activate Real-Time Updates"] = "Aktywuj aktualizacje w czasie rzeczywistym";
$a->strings["The new values have been saved."] = "";
$a->strings["Post to Facebook"] = "Post na Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Publikacja na stronie Facebook nie powiodła się z powodu braku dostępu do sieci";
$a->strings["View on Friendica"] = "Zobacz na Friendice";
$a->strings["Facebook post failed. Queued for retry."] = "";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
$a->strings["Facebook connection became invalid"] = "Błędne połączenie z Facebookiem";
$a->strings["status"] = "status";

View file

@ -0,0 +1,49 @@
<?php
$a->strings["Settings updated."] = "As configurações foram atualizadas.";
$a->strings["Permission denied."] = "Permissão negada.";
$a->strings["Facebook disabled"] = "O Facebook está desabilitado";
$a->strings["Updating contacts"] = "Atualizando os contatos";
$a->strings["Facebook API key is missing."] = "A chave de API do Facebook não foi encontrada.";
$a->strings["Facebook Connect"] = "Conexão com o Facebook";
$a->strings["Install Facebook connector for this account."] = "Instalar o conector do Facebook nesta conta.";
$a->strings["Remove Facebook connector"] = "Remover o conector do Facebook";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Reautenticar [Isso é necessário sempre que sua senha do Facebook é modificada.]";
$a->strings["Post to Facebook by default"] = "Publicar no Facebook por padrão";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
$a->strings["Link all your Facebook friends and conversations on this website"] = "Ligar todos os seus amigos e conversas do Facebook neste site";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "As conversas do Facebook consistem do seu <em>perfil/mural</em> e da <em>linha do tempo</em> dos seus amigos.";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Neste site, a linha do tempo dos seus amigos do Facebook está visível somente para você.";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "As seguintes configurações determinam a privacidade do mural do seu perfil do Facebook neste site.";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Nesse site as conversas do mural do seu perfil do Facebook estão visíveis somente para você";
$a->strings["Do not import your Facebook profile wall conversations"] = "Não importar as conversas do seu perfil/mural do Facebook";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Se você escolher ligar as conversas e deixar ambas opções desmarcadas, seu perfil/mural do Facebook será mesclado com seu perfil/mural nesse website e suas configurações de privacidade nesse website serão usadas para determinar quem pode ver as conversas.";
$a->strings["Comma separated applications to ignore"] = "Ignorar aplicações separadas por vírgula";
$a->strings["Submit"] = "Enviar";
$a->strings["Problems with Facebook Real-Time Updates"] = "Problemas com as atualizações em tempo real do Facebook";
$a->strings["Administrator"] = "Administrador";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Configurações do conector do Facebook";
$a->strings["Facebook API Key"] = "Chave da API do Facebook";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Erro: parece que você especificou o App-ID e o -Secret no arquivo .htconfig.php. Uma vez estão especificado lá, eles não podem ser definidos neste formulário.<br><br>";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Erro: a chave de API fornecida parece estar incorreta (não foi possível recuperar o token de acesso à aplicação).";
$a->strings["The given API Key seems to work correctly."] = "A chave de API fornecida aparentemente está funcionando corretamente.";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "Segredo da aplicação";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
$a->strings["Save"] = "Salvar";
$a->strings["Real-Time Updates"] = "Atualizações em tempo real";
$a->strings["Real-Time Updates are activated."] = "As atualizações em tempo real estão ativadas.";
$a->strings["Deactivate Real-Time Updates"] = "Desativar as atualizações em tempo real.";
$a->strings["Real-Time Updates not activated."] = "As atualizações em tempo real não estão ativadas.";
$a->strings["Activate Real-Time Updates"] = "Ativar atualizações em tempo real";
$a->strings["The new values have been saved."] = "Os novos valores foram salvos.";
$a->strings["Post to Facebook"] = "Publicar no Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "A publicação no Facebook foi cancelada devido a um conflito de permissão de acesso multi-rede.";
$a->strings["View on Friendica"] = "Ver no Friendica";
$a->strings["Facebook post failed. Queued for retry."] = "Não foi possível publicar no Facebook. Armazenado na fila para nova tentativa.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "A sua conexão com o Facebook tornou-se invalida. Por favor autentique-se novamente.";
$a->strings["Facebook connection became invalid"] = "A conexão com o Facebook tornou-se inválida";
$a->strings["status"] = "status";

View file

@ -0,0 +1,49 @@
<?php
$a->strings["Settings updated."] = "Настройки обновлены.";
$a->strings["Permission denied."] = "Нет разрешения.";
$a->strings["Facebook disabled"] = "Facebook отключен";
$a->strings["Updating contacts"] = "Обновление контактов";
$a->strings["Facebook API key is missing."] = "Отсутствует ключ Facebook API.";
$a->strings["Facebook Connect"] = "Facebook подключение";
$a->strings["Install Facebook connector for this account."] = "Установить Facebook Connector для этого аккаунта.";
$a->strings["Remove Facebook connector"] = "Удалить Facebook Connector";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Переаутентификация [Это необходимо, если вы изменили пароль на Facebook.]";
$a->strings["Post to Facebook by default"] = "Отправлять на Facebook по умолчанию";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
$a->strings["Link all your Facebook friends and conversations on this website"] = "Прикрепите своих друзей и общение с Facebook на этот сайт";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Facebook-лента друзей видна только вам.";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Следующие настройки определяют параметры приватности вашей стены с Facebook на этом сайте.";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Ваша лента профиля Facebook будет видна только вам";
$a->strings["Do not import your Facebook profile wall conversations"] = "Не импортировать Facebook разговоров с Вашей страницы";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "";
$a->strings["Comma separated applications to ignore"] = "Игнорировать приложения (список через запятую)";
$a->strings["Submit"] = "Подтвердить";
$a->strings["Problems with Facebook Real-Time Updates"] = "";
$a->strings["Administrator"] = "Администратор";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Настройки подключения Facebook";
$a->strings["Facebook API Key"] = "Facebook API Key";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
$a->strings["The given API Key seems to work correctly."] = "";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "Секрет приложения";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
$a->strings["Save"] = "Сохранить";
$a->strings["Real-Time Updates"] = "";
$a->strings["Real-Time Updates are activated."] = "";
$a->strings["Deactivate Real-Time Updates"] = "Отключить Real-Time обновления";
$a->strings["Real-Time Updates not activated."] = "";
$a->strings["Activate Real-Time Updates"] = "Активировать Real-Time обновления";
$a->strings["The new values have been saved."] = "";
$a->strings["Post to Facebook"] = "Отправить на Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Отправка на Facebook отменена из-за конфликта разрешений доступа разных сетей.";
$a->strings["View on Friendica"] = "";
$a->strings["Facebook post failed. Queued for retry."] = "Ошибка отправки сообщения на Facebook. В очереди на еще одну попытку.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
$a->strings["Facebook connection became invalid"] = "Facebook подключение не удалось";
$a->strings["status"] = "статус";

View file

@ -0,0 +1,14 @@
<?php
$a->strings["Settings updated."] = "Inst&auml;llningarna har uppdaterats.";
$a->strings["Permission denied."] = "&Aring;tkomst nekad.";
$a->strings["Facebook disabled"] = "Facebook inaktiverat";
$a->strings["Facebook API key is missing."] = "Facebook API key is missing.";
$a->strings["Facebook Connect"] = "Facebook Connect";
$a->strings["Post to Facebook by default"] = "L&auml;gg alltid in inl&auml;ggen p&aring; Facebook";
$a->strings["Submit"] = "Spara";
$a->strings["Administrator"] = "Admin";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Facebook Connector Settings";
$a->strings["Post to Facebook"] = "L&auml;gg in p&aring; Facebook";
$a->strings["status"] = "status";

View file

@ -0,0 +1,49 @@
<?php
$a->strings["Settings updated."] = "设置跟新了";
$a->strings["Permission denied."] = "权限不够。";
$a->strings["Facebook disabled"] = "Facebook废";
$a->strings["Updating contacts"] = "正才更新熟人";
$a->strings["Facebook API key is missing."] = "Facebook API钥匙失踪的。";
$a->strings["Facebook Connect"] = "Facebook联络";
$a->strings["Install Facebook connector for this account."] = "安装Facebook连接器为这个账户。";
$a->strings["Remove Facebook connector"] = "删除Facebook连接器";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "复认证[这是必要的每当您Facebook密码变化了]";
$a->strings["Post to Facebook by default"] = "默认地放在Facebook";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "这个网站使Facebook朋友环节不能用。这下的设置没有印象。";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "这个网站使Facebook朋友环节不能用。假如那样的话您不会再使可用的。";
$a->strings["Link all your Facebook friends and conversations on this website"] = "连接您所有的Facebook朋友们和交流在这个网站";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Facebook交流由您的<em>简介墙</em>和您朋友的<em>溪流</em>组成。 ";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "在这个网站您Facebook朋友溪流是只您可见的。";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "下面的设置决定您在这个网站Facebook简介墙的隐私。";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "在这个网站您Facebook简介墙交流是只您可见的。";
$a->strings["Do not import your Facebook profile wall conversations"] = "别进口您Facebook简介墙交流";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "如果您选择连接交流和留这两个复选框空则您Facebook简介墙被在您这网站的简介墙融合和您的这网站隐私设置决定谁能看那些交流。";
$a->strings["Comma separated applications to ignore"] = "逗号分开的应用要不理";
$a->strings["Submit"] = "提交";
$a->strings["Problems with Facebook Real-Time Updates"] = "Facebook实时更新有问题";
$a->strings["Administrator"] = "管理员";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Facebook连接器设置";
$a->strings["Facebook API Key"] = "Facebook API密码";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "错误看上去您输入App-ID和-Secret在您的.htconfig.php文件。它们那里输入的时候您不能把他们在这个表格输入。<br><br>";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "错误输入的API密码显得不对取回不了应用代金券";
$a->strings["The given API Key seems to work correctly."] = "输入的API密码显得对地运行。";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "API钥匙的正确性发现不了。什么奇怪的进行";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "应用密码";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "同步评论无Facebook评论错过了代价增添系统工作量";
$a->strings["Save"] = "保存";
$a->strings["Real-Time Updates"] = "实时更新";
$a->strings["Real-Time Updates are activated."] = "实时更新使活动";
$a->strings["Deactivate Real-Time Updates"] = "使实时更新不活动";
$a->strings["Real-Time Updates not activated."] = "实时更新使不活动";
$a->strings["Activate Real-Time Updates"] = "使实时更新活动";
$a->strings["The new values have been saved."] = "新的设置保存了。";
$a->strings["Post to Facebook"] = "放在Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "发送到Facebook取消由于多网络准许矛盾。";
$a->strings["View on Friendica"] = "看在Friendica";
$a->strings["Facebook post failed. Queued for retry."] = "Facebook发送失败了。排队着待再试。";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "您Facebook联系成无效的。请再认证。";
$a->strings["Facebook connection became invalid"] = "Facebook联系成无效的";
$a->strings["status"] = "现状";

0
facebook/unsupported Normal file
View file

View file

@ -0,0 +1,19 @@
<?php
/**
* Name: Facebook Restrict
* Description: Install this addon and Facebook users will not be able to link friends. Existing users that are linking friends will not be affected.
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
* Status: Unsupported
*/
function facebook_restrict_install() {
set_config('facebook','restrict',1);
}
function facebook_restrict_uninstall() {
set_config('facebook','restrict',0);
}

View file

5
fbsync/README.md Normal file
View file

@ -0,0 +1,5 @@
> # Note
> **Facebook Connector, Facebook Post Connector and Facebook Sync plugins are deprecated.**
> As of the moment you cannot bridge from or to Facebook with Friendica.

15
fbsync/fbsync.css Executable file
View file

@ -0,0 +1,15 @@
#fbsync-enable-label, #fbsync-create_user-label {
float: left;
width: 200px;
margin-top: 10px;
}
#fbsync-checkbox, #fbsync-create_user {
float: left;
margin-top: 10px;
}
#fbsync-submit {
margin-top: 15px;
}

1146
fbsync/fbsync.php Normal file
View file

@ -0,0 +1,1146 @@
<?php
/**
* Name: Facebook Sync
* Description: Synchronizes the Facebook Newsfeed
* Version: 1.0
* Author: Michael Vogel <https://pirati.ca/profile/heluecht>
* Status: Unsupported
*/
/* To-Do
FBSync:
- B: Threading for incoming comments
- C: Receiving likes for comments
FBPost:
- A: Posts to pages currently have the page as sender - not the user
- B: Sending likes for comments
- C: Threading for sent comments
*/
require_once("addon/fbpost/fbpost.php");
define('FBSYNC_DEFAULT_POLL_INTERVAL', 5); // given in minutes
function fbsync_install() {
register_hook('connector_settings', 'addon/fbsync/fbsync.php', 'fbsync_settings');
register_hook('connector_settings_post', 'addon/fbsync/fbsync.php', 'fbsync_settings_post');
register_hook('cron', 'addon/fbsync/fbsync.php', 'fbsync_cron');
register_hook('follow', 'addon/fbsync/fbsync.php', 'fbsync_follow');
register_hook('expire', 'addon/fbsync/fbsync.php', 'fbsync_expire');
}
function fbsync_uninstall() {
unregister_hook('connector_settings', 'addon/fbsync/fbsync.php', 'fbsync_settings');
unregister_hook('connector_settings_post', 'addon/fbsync/fbsync.php', 'fbsync_settings_post');
unregister_hook('cron', 'addon/fbsync/fbsync.php', 'fbsync_cron');
unregister_hook('follow', 'addon/fbsync/fbsync.php', 'fbsync_follow');
unregister_hook('expire', 'addon/fbsync/fbsync.php', 'fbsync_expire');
}
function fbsync_follow($a, &$contact) {
logger("fbsync_follow: Check if contact is facebook contact. ".$contact["url"], LOGGER_DEBUG);
if (!strstr($contact["url"], "://www.facebook.com") && !strstr($contact["url"], "://facebook.com") && !strstr($contact["url"], "@facebook.com"))
return;
// contact seems to be a facebook contact, so continue
$nickname = preg_replace("=https?://.*facebook.com/([\w.]*).*=ism", "$1", $contact["url"]);
$nickname = str_replace("@facebook.com", "", $nickname);
$uid = $a->user["uid"];
$access_token = get_pconfig($uid,'facebook','access_token');
$fql = array(
"profile" => "SELECT id, pic_square, url, username, name FROM profile WHERE username = '$nickname'",
"avatar" => "SELECT url FROM square_profile_pic WHERE id IN (SELECT id FROM #profile) AND size = 256");
$url = "https://graph.facebook.com/fql?q=".urlencode(json_encode($fql))."&access_token=".$access_token;
$feed = fetch_url($url);
$data = json_decode($feed);
$id = 0;
logger("fbsync_follow: Query id for nickname ".$nickname, LOGGER_DEBUG);
if (!is_array($data->data))
return;
$contactdata = new stdClass;
foreach($data->data AS $query) {
switch ($query->name) {
case "profile":
$contactdata->id = number_format($query->fql_result_set[0]->id, 0, '', '');
$contactdata->pic_square = $query->fql_result_set[0]->pic_square;
$contactdata->url = $query->fql_result_set[0]->url;
$contactdata->username = $query->fql_result_set[0]->username;
$contactdata->name = $query->fql_result_set[0]->name;
break;
case "avatar":
$contactdata->pic_square = $query->fql_result_set[0]->url;
break;
}
}
logger("fbsync_follow: Got contact for nickname ".$nickname." ".print_r($contactdata, true), LOGGER_DEBUG);
// Create contact
fbsync_fetch_contact($uid, $contactdata, true);
$r = q("SELECT name,nick,url,addr,batch,notify,poll,request,confirm,poco,photo,priority,network,alias,pubkey
FROM `contact` WHERE `uid` = %d AND `alias` = '%s'",
intval($uid),
dbesc("facebook::".$contactdata->id));
if (count($r))
$contact["contact"] = $r[0];
}
function fbsync_settings(&$a,&$s) {
// Settings are done inside the fbpost addon
return;
if(! local_user())
return;
/* Add our stylesheet to the page so we can make our settings look nice */
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/fbsync/fbsync.css' . '" media="all" />' . "\r\n";
/* Get the current state of our config variables */
$enabled = get_pconfig(local_user(),'fbsync','sync');
$checked = (($enabled) ? ' checked="checked" ' : '');
$def_enabled = get_pconfig(local_user(),'fbsync','create_user');
$def_checked = (($def_enabled) ? ' checked="checked" ' : '');
/* Add some HTML to the existing form */
$s .= '<span id="settings_fbsync_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_fbsync_expanded\'); openClose(\'settings_fbsync_inflated\');">';
$s .= '<img class="connector" src="images/facebook.png" /><h3 class="connector">'. t('Facebook Import').'</h3>';
$s .= '</span>';
$s .= '<div id="settings_fbsync_expanded" class="settings-block" style="display: none;">';
$s .= '<span class="fakelink" onclick="openClose(\'settings_fbsync_expanded\'); openClose(\'settings_fbsync_inflated\');">';
$s .= '<img class="connector" src="images/facebook.png" /><h3 class="connector">'. t('Facebook Import').'</h3>';
$s .= '</span>';
$s .= '<div id="fbsync-enable-wrapper">';
$s .= '<label id="fbsync-enable-label" for="fbsync-checkbox">' . t('Import Facebook newsfeed') . '</label>';
$s .= '<input id="fbsync-checkbox" type="checkbox" name="fbsync" value="1" ' . $checked . '/>';
$s .= '</div><div class="clear"></div>';
$s .= '<div id="fbsync-create_user-wrapper">';
$s .= '<label id="fbsync-create_user-label" for="fbsync-create_user">' . t('Automatically create contacts') . '</label>';
$s .= '<input id="fbsync-create_user" type="checkbox" name="create_user" value="1" ' . $def_checked . '/>';
$s .= '</div><div class="clear"></div>';
/* provide a submit button */
$s .= '<div class="settings-submit-wrapper" ><input type="submit" id="fbsync-submit" name="fbsync-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
}
function fbsync_settings_post(&$a,&$b) {
if(x($_POST,'fbsync-submit')) {
set_pconfig(local_user(),'fbsync','sync',intval($_POST['fbsync']));
set_pconfig(local_user(),'fbsync','create_user',intval($_POST['create_user']));
}
}
function fbsync_cron($a,$b) {
$last = get_config('fbsync','last_poll');
$poll_interval = intval(get_config('fbsync','poll_interval'));
if(! $poll_interval)
$poll_interval = FBSYNC_DEFAULT_POLL_INTERVAL;
if($last) {
$next = $last + ($poll_interval * 60);
if($next > time()) {
logger('fbsync_cron: poll intervall not reached');
return;
}
}
logger('fbsync_cron: cron_start');
$abandon_days = intval(get_config('system','account_abandon_days'));
if ($abandon_days < 1)
$abandon_days = 0;
$abandon_limit = date("Y-m-d H:i:s", time() - $abandon_days * 86400);
$r = q("SELECT * FROM `pconfig` WHERE `cat` = 'fbsync' AND `k` = 'sync' AND `v` = '1' ORDER BY RAND()");
if(count($r)) {
foreach($r as $rr) {
if ($abandon_days != 0) {
$user = q("SELECT `login_date` FROM `user` WHERE uid=%d AND `login_date` >= '%s'", $rr['uid'], $abandon_limit);
if (!count($user)) {
logger('abandoned account: timeline from user '.$rr['uid'].' will not be imported');
continue;
}
}
fbsync_get_self($rr['uid']);
logger('fbsync_cron: importing timeline from user '.$rr['uid']);
fbsync_fetchfeed($a, $rr['uid']);
}
}
logger('fbsync_cron: cron_end');
set_config('fbsync','last_poll', time());
}
function fbsync_expire($a,$b) {
$days = get_config('fbsync', 'expire');
if ($days == 0)
return;
$r = q("DELETE FROM `item` WHERE `deleted` AND `network` = '%s'", dbesc(NETWORK_FACEBOOK));
require_once("include/items.php");
logger('fbsync_expire: expire_start');
$r = q("SELECT * FROM `pconfig` WHERE `cat` = 'fbsync' AND `k` = 'sync' AND `v` = '1' ORDER BY RAND()");
if(count($r)) {
foreach($r as $rr) {
logger('fbsync_expire: user '.$rr['uid']);
item_expire($rr['uid'], $days, NETWORK_FACEBOOK, true);
}
}
logger('fbsync_expire: expire_end');
}
function fbsync_createpost($a, $uid, $self, $contacts, $applications, $post, $create_user) {
$access_token = get_pconfig($uid,'facebook','access_token');
require_once("include/oembed.php");
require_once("include/network.php");
require_once("include/items.php");
// check if it was already imported
$r = q("SELECT * FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
intval($uid),
dbesc('fb::'.$post->post_id)
);
if(count($r))
return;
$postarray = array();
$postarray['gravity'] = 0;
$postarray['uid'] = $uid;
$postarray['wall'] = 0;
$postarray['verb'] = ACTIVITY_POST;
$postarray['object-type'] = ACTIVITY_OBJ_NOTE; // default value - is maybe changed later when media is attached
$postarray['network'] = dbesc(NETWORK_FACEBOOK);
$postarray['uri'] = "fb::".$post->post_id;
$postarray['thr-parent'] = $postarray['uri'];
$postarray['parent-uri'] = $postarray['uri'];
$postarray['plink'] = $post->permalink;
$postarray['author-name'] = $contacts[$post->actor_id]->name;
$postarray['author-link'] = $contacts[$post->actor_id]->url;
$postarray['author-avatar'] = $contacts[$post->actor_id]->pic_square;
$postarray['owner-name'] = $contacts[$post->source_id]->name;
$postarray['owner-link'] = $contacts[$post->source_id]->url;
$postarray['owner-avatar'] = $contacts[$post->source_id]->pic_square;
$contact_id = 0;
if (($post->parent_post_id != "") && ($post->actor_id == $post->source_id)) {
$pos = strpos($post->parent_post_id, "_");
if ($pos != 0) {
$user_id = substr($post->parent_post_id, 0, $pos);
$userdata = fbsync_fetchuser($a, $uid, $user_id);
$contact_id = $userdata["contact-id"];
$postarray['contact-id'] = $contact_id;
if (array_key_exists("name", $userdata) && ($userdata["name"] != "") && !link_compare($userdata["link"], $postarray['author-link'])) {
$postarray['owner-name'] = $userdata["name"];
$postarray['owner-link'] = $userdata["link"];
$postarray['owner-avatar'] = $userdata["avatar"];
if (!intval(get_config('system','wall-to-wall_share'))) {
$prebody = "[share author='".$postarray['author-name'].
"' profile='".$postarray['author-link'].
"' avatar='".$postarray['author-avatar']."']";
$postarray['author-name'] = $postarray['owner-name'];
$postarray['author-link'] = $postarray['owner-link'];
$postarray['author-avatar'] = $postarray['owner-avatar'];
}
}
}
}
if ($contact_id <= 0) {
if ($post->actor_id != $post->source_id) {
// Testing if we know the source or the actor
$contact_id = fbsync_fetch_contact($uid, $contacts[$post->source_id], false);
if (($contact_id == 0) && array_key_exists($post->actor_id, $contacts))
$contact_id = fbsync_fetch_contact($uid, $contacts[$post->actor_id], false);
// If we don't know anyone, we guess we should know the source. Could be the wrong decision
if ($contact_id == 0)
$contact_id = fbsync_fetch_contact($uid, $contacts[$post->source_id], $create_user);
} else
$contact_id = fbsync_fetch_contact($uid, $contacts[$post->source_id], $create_user);
if ($contact_id == -1) {
logger('fbsync_createpost: Contact is blocked. Post not imported '.print_r($post, true), LOGGER_DEBUG);
return;
} elseif (($contact_id <= 0) && !$create_user) {
logger('fbsync_createpost: No matching contact found. Post not imported '.print_r($post, true), LOGGER_DEBUG);
return;
} elseif ($contact_id == 0) {
// This case should never happen
logger('fbsync_createpost: No matching contact found. Using own id. (Should never happen) '.print_r($post, true), LOGGER_DEBUG);
$contact_id = $self[0]["id"];
}
$postarray['contact-id'] = $contact_id;
}
$postarray["body"] = (isset($post->message) ? escape_tags($post->message) : '');
$msgdata = fbsync_convertmsg($a, $postarray["body"]);
$postarray["body"] = $msgdata["body"];
$postarray["tag"] = $msgdata["tags"];
// Change the object type when an attachment is present
if (isset($post->attachment->fb_object_type))
logger('fb_object_type: '.$post->attachment->fb_object_type." ".print_r($post->attachment, true), LOGGER_DEBUG);
switch ($post->attachment->fb_object_type) {
case 'photo':
$postarray['object-type'] = ACTIVITY_OBJ_IMAGE; // photo is deprecated: http://activitystrea.ms/head/activity-schema.html#image
break;
case 'video':
$postarray['object-type'] = ACTIVITY_OBJ_VIDEO;
break;
case '':
//$postarray['object-type'] = ACTIVITY_OBJ_BOOKMARK;
break;
default:
logger('Unknown object type '.$post->attachment->fb_object_type, LOGGER_DEBUG);
break;
}
$pagedata = array();
$content = "";
$pagedata["type"] = "";
if (isset($post->attachment->name) && isset($post->attachment->href)) {
$post->attachment->href = original_url($post->attachment->href);
$oembed_data = oembed_fetch_url($post->attachment->href);
$pagedata["type"] = $oembed_data->type;
if ($pagedata["type"] == "rich")
$pagedata["type"] = "link";
$pagedata["url"] = $post->attachment->href;
$pagedata["title"] = $post->attachment->name;
$content = "[bookmark=".$post->attachment->href."]".$post->attachment->name."[/bookmark]";
// If a link is not only attached but also added in the body, look if it can be removed in the body.
$removedlink = trim(str_replace($post->attachment->href, "", $postarray["body"]));
if (($removedlink == "") || strstr($postarray["body"], $removedlink))
$postarray["body"] = $removedlink;
} elseif (isset($post->attachment->name) && ($post->attachment->name != ""))
$content = "[b]" . $post->attachment->name."[/b]";
$pagedata["text"] = "";
if (isset($post->attachment->description) && ($post->attachment->fb_object_type != "photo"))
$pagedata["text"] = $post->attachment->description;
if (isset($post->attachment->caption) && ($post->attachment->fb_object_type == "photo"))
$pagedata["text"] = $post->attachment->caption;
if ($pagedata["text"].$post->attachment->href.$content.$postarray["body"] == "")
return;
if (isset($post->attachment->media) && (($pagedata["type"] == "") || ($pagedata["type"] == "link"))) {
foreach ($post->attachment->media AS $media) {
if (isset($media->type))
$pagedata["type"] = $media->type;
if (isset($media->src))
$pagedata["images"][0]["src"] = $media->src;
if (isset($media->photo)) {
if (isset($media->photo->images) && (count($media->photo->images) > 1))
$pagedata["images"][0]["src"] = $media->photo->images[1]->src;
if (isset($media->photo->fbid)) {
logger('fbsync_createpost: fetching fbid '.$media->photo->fbid, LOGGER_DEBUG);
$url = "https://graph.facebook.com/".$media->photo->fbid."?access_token=".$access_token;
$feed = fetch_url($url);
$data = json_decode($feed);
if (isset($data->images)) {
$pagedata["images"][0]["src"] = $data->images[0]->source;
logger('fbsync_createpost: got fbid '.$media->photo->fbid.' image '.$pagedata["images"][0]["src"], LOGGER_DEBUG);
} else
logger('fbsync_createpost: error fetching fbid '.$media->photo->fbid.' '.print_r($data, true), LOGGER_DEBUG);
}
}
$pagedata["images"][0]["src"] = fbpost_cleanpicture($pagedata["images"][0]["src"]);
if (isset($media->href) && ($pagedata["images"][0]["src"] != "") && ($media->href != "")) {
$media->href = original_url($media->href);
$pagedata["url"] = $media->href;
$content .= "\n".'[url='.$media->href.'][img]'.$pagedata["images"][0]["src"].'[/img][/url]';
} else {
if ($pagedata["images"][0]["src"] != "")
$content .= "\n".'[img]'.$pagedata["images"][0]["src"].'[/img]';
// if just a link, it may be a wall photo - check
if (isset($post->link))
$content .= fbpost_get_photo($media->href);
}
}
}
if ($pagedata["type"] != "") {
if ($pagedata["type"] == "link")
$postarray["object-type"] = ACTIVITY_OBJ_BOOKMARK;
$postarray["body"] .= add_page_info_data($pagedata);
} else {
if ($content)
$postarray["body"] .= "\n".trim($content);
if ($pagedata["text"])
$postarray["body"] .= "\n[quote]".trim($pagedata["text"])."[/quote]";
$postarray["body"] = trim($postarray["body"]);
}
if (trim($postarray["body"]) == "")
return;
if ($prebody != "")
$postarray["body"] = $prebody.$postarray["body"]."[/share]";
$postarray['created'] = datetime_convert('UTC','UTC',date("c", $post->created_time));
$postarray['edited'] = datetime_convert('UTC','UTC',date("c", $post->updated_time));
$postarray['app'] = $applications[$post->app_id]->display_name;
if ($postarray['app'] == "")
$postarray['app'] = "Facebook";
if(isset($post->privacy) && $post->privacy->value !== '') {
$postarray['private'] = 1;
$postarray['allow_cid'] = '<' . $self[0]['id'] . '>';
}
/*
$postarray["location"] = $post->place->name;
postarray["coord"] = $post->geo->coordinates[0]." ".$post->geo->coordinates[1];
*/
//$types = array(46, 80, 237, 247, 308);
//if (!in_array($post->type, $types))
// $postarray["body"] = "Type: ".$post->type."\n".$postarray["body"];
//print_r($post);
//print_r($postarray);
$item = item_store($postarray);
logger('fbsync_createpost: User '.$self[0]["nick"].' posted feed item '.$item, LOGGER_DEBUG);
}
function fbsync_createcomment($a, $uid, $self_id, $self, $user, $contacts, $applications, $comment) {
// check if it was already imported
$r = q("SELECT `uri` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
intval($uid),
dbesc('fb::'.$comment->id)
);
if(count($r))
return;
// check if it was an own post (separate posting for performance reasons)
$r = q("SELECT `uri` FROM `item` WHERE `uid` = %d AND `extid` = '%s' LIMIT 1",
intval($uid),
dbesc('fb::'.$comment->id)
);
if(count($r))
return;
$parent_uri = "";
$parent_contact = 0;
$parent_nick = "";
// Fetch the parent uri (Checking if the parent exists)
$r = q("SELECT `uri`, `contact-id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
intval($uid),
dbesc('fb::'.$comment->post_id)
);
if(count($r)) {
$parent_uri = $r[0]["uri"];
$parent_contact = $r[0]["contact-id"];
}
// check if it is a reply to an own post (separate posting for performance reasons)
$r = q("SELECT `uri`, `contact-id` FROM `item` WHERE `uid` = %d AND `extid` = '%s' LIMIT 1",
intval($uid),
dbesc('fb::'.$comment->post_id)
);
if(count($r)) {
$parent_uri = $r[0]["uri"];
$parent_contact = $r[0]["contact-id"];
}
// No parent? Then quit
if ($parent_uri == "")
return;
//logger("fbsync_createcomment: Checking if parent contact is blocked: ".$parent_contact." - ".$parent_uri, LOGGER_DEBUG);
// Check if the contact id was blocked
if ($parent_contact > 0) {
$r = q("SELECT `blocked`, `readonly`, `nick` FROM `contact` WHERE `uid` = %d AND `id` = %d LIMIT 1",
intval($uid), intval($parent_contact));
// Should only happen if someone deleted the contact manually
if(!count($r)) {
logger("fbsync_createcomment: UID ".$uid." - Contact ".$parent_contact." doesn't seem to exist.", LOGGER_DEBUG);
return;
}
// Is blocked? Then return
if ($r[0]["readonly"] || $r[0]["blocked"]) {
logger("fbsync_createcomment: UID ".$uid." - Contact '".$r[0]["nick"]."' is blocked or readonly.", LOGGER_DEBUG);
return;
}
$parent_nick = $r[0]["nick"];
logger("fbsync_createcomment: UID ".$uid." - Contact '".$r[0]["nick"]."' isn't blocked. ".print_r($r, true), LOGGER_DEBUG);
}
$postarray = array();
$postarray['gravity'] = 0;
$postarray['uid'] = $uid;
$postarray['wall'] = 0;
$postarray['verb'] = ACTIVITY_POST;
$postarray['object-type'] = ACTIVITY_OBJ_COMMENT;
$postarray['network'] = dbesc(NETWORK_FACEBOOK);
$postarray['uri'] = "fb::".$comment->id;
$postarray['thr-parent'] = $parent_uri;
$postarray['parent-uri'] = $parent_uri;
//$postarray['plink'] = $comment->permalink;
$contact_id = fbsync_fetch_contact($uid, $contacts[$comment->fromid], array(), false);
$contact_nick = $contacts[$comment->fromid]->name;
if ($contact_id == -1) {
logger('fbsync_createcomment: Contact was blocked. Comment not imported '.print_r($comment, true), LOGGER_DEBUG);
return;
}
// If no contact was found, take it from the thread owner
if ($contact_id <= 0) {
$contact_id = $parent_contact;
$contact_nick = $parent_nick;
}
// This case here should never happen
if ($contact_id <= 0) {
$contact_id = $self[0]["id"];
$contact_nick = $self[0]["nick"];
}
if ($comment->fromid != $self_id) {
$postarray['contact-id'] = $contact_id;
$postarray['owner-name'] = $contacts[$comment->fromid]->name;
$postarray['owner-link'] = $contacts[$comment->fromid]->url;
$postarray['owner-avatar'] = $contacts[$comment->fromid]->pic_square;
} else {
$postarray['contact-id'] = $self[0]["id"];
$postarray['owner-name'] = $self[0]["name"];
$postarray['owner-link'] = $self[0]["url"];
$postarray['owner-avatar'] = $self[0]["photo"];
$contact_nick = $self[0]["nick"];
}
$postarray['author-name'] = $postarray['owner-name'];
$postarray['author-link'] = $postarray['owner-link'];
$postarray['author-avatar'] = $postarray['owner-avatar'];
$msgdata = fbsync_convertmsg($a, $comment->text);
$postarray["body"] = $msgdata["body"];
$postarray["tag"] = $msgdata["tags"];
$postarray['created'] = datetime_convert('UTC','UTC',date("c", $comment->time));
$postarray['edited'] = datetime_convert('UTC','UTC',date("c", $comment->time));
$postarray['app'] = $applications[$comment->app_id]->display_name;
if ($postarray['app'] == "")
$postarray['app'] = "Facebook";
if (trim($postarray["body"]) == "")
return;
$item = item_store($postarray);
$postarray["id"] = $item;
logger('fbsync_createcomment: UID '.$uid.' - CID '.$postarray['contact-id'].' - Nick '.$contact_nick.' posted comment '.$item, LOGGER_DEBUG);
if ($item == 0)
return;
$myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 AND `deleted` = 0",
dbesc($postarray['parent-uri']),
intval($uid)
);
if(count($myconv)) {
$importer_url = $a->get_baseurl() . '/profile/' . $user[0]['nickname'];
$own_contact = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
intval($uid), dbesc("facebook::".$self_id));
if (!count($own_contact))
return;
foreach($myconv as $conv) {
// now if we find a match, it means we're in this conversation
if(!link_compare($conv['author-link'],$importer_url) && !link_compare($conv['author-link'],$own_contact[0]["url"]))
continue;
require_once('include/enotify.php');
$conv_parent = $conv['parent'];
$notifyarr = array(
'type' => NOTIFY_COMMENT,
'notify_flags' => $user[0]['notify-flags'],
'language' => $user[0]['language'],
'to_name' => $user[0]['username'],
'to_email' => $user[0]['email'],
'uid' => $user[0]['uid'],
'item' => $postarray,
'link' => $a->get_baseurl().'/display/'.urlencode(get_item_guid($item)),
'source_name' => $postarray['author-name'],
'source_link' => $postarray['author-link'],
'source_photo' => $postarray['author-avatar'],
'verb' => ACTIVITY_POST,
'otype' => 'item',
'parent' => $conv_parent,
);
notification($notifyarr);
// only send one notification
break;
}
}
}
function fbsync_createlike($a, $uid, $self_id, $self, $contacts, $like) {
$r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
dbesc("fb::".$like->post_id),
intval($uid)
);
if (count($r))
$orig_post = $r[0];
else
return;
// If we posted the like locally, it will be found with our url, not the FB url.
$second_url = (($like->user_id == $self_id) ? $self[0]["url"] : $contacts[$like->user_id]->url);
$r = q("SELECT * FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `verb` = '%s'
AND (`author-link` = '%s' OR `author-link` = '%s') LIMIT 1",
dbesc($orig_post["uri"]),
intval($uid),
dbesc(ACTIVITY_LIKE),
dbesc($contacts[$like->user_id]->url),
dbesc($second_url)
);
if (count($r))
return;
$contact_id = fbsync_fetch_contact($uid, $contacts[$like->user_id], array(), false);
if ($contact_id <= 0)
$contact_id = $self[0]["id"];
$likedata = array();
$likedata['parent'] = $orig_post['id'];
$likedata['verb'] = ACTIVITY_LIKE;
$likedata['object-type'] = ACTIVITY_OBJ_NOTE;
$likedate['network'] = dbesc(NETWORK_FACEBOOK);
$likedata['gravity'] = 3;
$likedata['uid'] = $uid;
$likedata['wall'] = 0;
$likedata['uri'] = item_new_uri($a->get_baseurl(), $uid);
$likedata['parent-uri'] = $orig_post["uri"];
$likedata['app'] = "Facebook";
if ($like->user_id != $self_id) {
$likedata['contact-id'] = $contact_id;
$likedata['author-name'] = $contacts[$like->user_id]->name;
$likedata['author-link'] = $contacts[$like->user_id]->url;
$likedata['author-avatar'] = $contacts[$like->user_id]->pic_square;
} else {
$likedata['contact-id'] = $self[0]["id"];
$likedata['author-name'] = $self[0]["name"];
$likedata['author-link'] = $self[0]["url"];
$likedata['author-avatar'] = $self[0]["photo"];
}
$author = '[url=' . $likedata['author-link'] . ']' . $likedata['author-name'] . '[/url]';
$objauthor = '[url=' . $orig_post['author-link'] . ']' . $orig_post['author-name'] . '[/url]';
$post_type = t('status');
$plink = '[url=' . $orig_post['plink'] . ']' . $post_type . '[/url]';
$likedata['object-type'] = ACTIVITY_OBJ_NOTE;
$likedata['body'] = sprintf( t('%1$s likes %2$s\'s %3$s'), $author, $objauthor, $plink);
$likedata['object'] = '<object><type>' . ACTIVITY_OBJ_NOTE . '</type><local>1</local>' .
'<id>' . $orig_post['uri'] . '</id><link>' . xmlify('<link rel="alternate" type="text/html" href="' . xmlify($orig_post['plink']) . '" />') . '</link><title>' . $orig_post['title'] . '</title><content>' . $orig_post['body'] . '</content></object>';
$r = q("SELECT * FROM `item` WHERE `parent-uri` = '%s' AND `author-link` = '%s' AND `verb` = '%s' AND `uid` = %d LIMIT 1",
dbesc($likedata['parent-uri']),
dbesc($likedata['author-link']),
dbesc(ACTIVITY_LIKE),
intval($uid)
);
if (count($r))
return;
$item = item_store($likedata);
logger('fbsync_createlike: liked item '.$item.'. User '.$self[0]["nick"], LOGGER_DEBUG);
}
function fbsync_fetch_contact($uid, $contact, $create_user) {
if($contact->url == "")
return(0);
// Check if the unique contact is existing
// To-Do: only update once a while
$r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
dbesc(normalise_link($contact->url)));
if (count($r) == 0)
q("INSERT INTO unique_contacts (url, name, nick, avatar) VALUES ('%s', '%s', '%s', '%s')",
dbesc(normalise_link($contact->url)),
dbesc($contact->name),
dbesc($contact->username),
dbesc($contact->pic_square));
else
q("UPDATE unique_contacts SET name = '%s', nick = '%s', avatar = '%s' WHERE url = '%s'",
dbesc($contact->name),
dbesc($contact->username),
dbesc($contact->pic_square),
dbesc(normalise_link($contact->url)));
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
intval($uid), dbesc("facebook::".$contact->id));
if(!count($r) && !$create_user)
return(0);
if (count($r) && ($r[0]["readonly"] || $r[0]["blocked"])) {
logger("fbsync_fetch_contact: Contact '".$r[0]["nick"]."' is blocked or readonly.", LOGGER_DEBUG);
return(-1);
}
$avatarpicture = $contact->pic_square;
if(!count($r)) {
// create contact record
q("INSERT INTO `contact` (`uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
`name`, `nick`, `photo`, `network`, `rel`, `priority`,
`writable`, `blocked`, `readonly`, `pending`)
VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, 0, 0, 0)",
intval($uid),
dbesc(datetime_convert()),
dbesc($contact->url),
dbesc(normalise_link($contact->url)),
dbesc($contact->username."@facebook.com"),
dbesc("facebook::".$contact->id),
dbesc($contact->id),
dbesc("facebook::".$contact->id),
dbesc($contact->name),
dbesc($contact->username),
dbesc($avatarpicture),
dbesc(NETWORK_FACEBOOK),
intval(CONTACT_IS_FRIEND),
intval(1),
intval(1)
);
$r = q("SELECT * FROM `contact` WHERE `alias` = '%s' AND `uid` = %d LIMIT 1",
dbesc("facebook::".$contact->id),
intval($uid)
);
if(! count($r))
return(false);
$contact_id = $r[0]['id'];
$g = q("SELECT def_gid FROM user WHERE uid = %d LIMIT 1",
intval($uid)
);
if($g && intval($g[0]['def_gid'])) {
require_once('include/group.php');
group_add_member($uid,'',$contact_id,$g[0]['def_gid']);
}
require_once("Photo.php");
$photos = import_profile_photo($avatarpicture,$uid,$contact_id);
q("UPDATE `contact` SET `photo` = '%s',
`thumb` = '%s',
`micro` = '%s',
`name-date` = '%s',
`uri-date` = '%s',
`avatar-date` = '%s'
WHERE `id` = %d",
dbesc($photos[0]),
dbesc($photos[1]),
dbesc($photos[2]),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
intval($contact_id)
);
} else {
// update profile photos once every 12 hours as we have no notification of when they change.
$update_photo = ($r[0]['avatar-date'] < datetime_convert('','','now -12 hours'));
// check that we have all the photos, this has been known to fail on occasion
if((! $r[0]['photo']) || (! $r[0]['thumb']) || (! $r[0]['micro']) || ($update_photo)) {
logger("fbsync_fetch_contact: Updating contact ".$contact->username, LOGGER_DEBUG);
require_once("Photo.php");
$photos = import_profile_photo($avatarpicture, $uid, $r[0]['id']);
q("UPDATE `contact` SET `photo` = '%s',
`thumb` = '%s',
`micro` = '%s',
`name-date` = '%s',
`uri-date` = '%s',
`avatar-date` = '%s',
`url` = '%s',
`nurl` = '%s',
`addr` = '%s',
`name` = '%s',
`nick` = '%s',
`notify` = '%s'
WHERE `id` = %d",
dbesc($photos[0]),
dbesc($photos[1]),
dbesc($photos[2]),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc($contact->url),
dbesc(normalise_link($contact->url)),
dbesc($contact->username."@facebook.com"),
dbesc($contact->name),
dbesc($contact->username),
dbesc($contact->id),
intval($r[0]['id'])
);
}
}
return($r[0]["id"]);
}
function fbsync_get_self($uid) {
$access_token = get_pconfig($uid,'facebook','access_token');
if(! $access_token)
return;
$s = fetch_url('https://graph.facebook.com/me/?access_token=' . $access_token);
if($s) {
$j = json_decode($s);
set_pconfig($uid,'fbsync','self_id',(string) $j->id);
}
}
function fbsync_convertmsg($a, $body) {
$str_tags = '';
$tags = get_tags($body);
if(count($tags)) {
foreach($tags as $tag) {
if (strstr(trim($tag), " "))
continue;
if(strpos($tag,'#') === 0) {
if(strpos($tag,'[url='))
continue;
// don't link tags that are already embedded in links
if(preg_match('/\[(.*?)' . preg_quote($tag,'/') . '(.*?)\]/',$body))
continue;
if(preg_match('/\[(.*?)\]\((.*?)' . preg_quote($tag,'/') . '(.*?)\)/',$body))
continue;
$basetag = str_replace('_',' ',substr($tag,1));
$body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
if(strlen($str_tags))
$str_tags .= ',';
$str_tags .= '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
continue;
} elseif(strpos($tag,'@') === 0) {
$basetag = substr($tag,1);
$body = str_replace($tag,'@[url=https://twitter.com/' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
}
}
}
$cnt = preg_match_all('/@\[url=(.*?)\[\/url\]/ism',$body,$matches,PREG_SET_ORDER);
if($cnt) {
foreach($matches as $mtch) {
if(strlen($str_tags))
$str_tags .= ',';
$str_tags .= '@[url=' . $mtch[1] . '[/url]';
}
}
return(array("body"=>$body, "tags"=>$str_tags));
}
function fbsync_fetchuser($a, $uid, $id) {
$access_token = get_pconfig($uid,'facebook','access_token');
$self_id = get_pconfig($uid,'fbsync','self_id');
$user = array();
$contact = q("SELECT `id`, `name`, `url`, `photo` FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
intval($uid), dbesc("facebook::".$id));
if (count($contact)) {
if (($contact[0]["readonly"] || $contact[0]["blocked"])) {
logger("fbsync_fetchuser: Contact '".$contact[0]["nick"]."' is blocked or readonly.", LOGGER_DEBUG);
$user["contact-id"] = -1;
} else
$user["contact-id"] = $contact[0]["id"];
$user["name"] = $contact[0]["name"];
$user["link"] = $contact[0]["url"];
$user["avatar"] = $contact[0]["photo"];
return($user);
}
$own_contact = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
intval($uid), dbesc("facebook::".$self_id));
if (!count($own_contact))
return($user);
$fql = "SELECT name, url, pic_square FROM profile WHERE id = ".$id;
$url = "https://graph.facebook.com/fql?q=".urlencode($fql)."&access_token=".$access_token;
$feed = fetch_url($url);
$data = json_decode($feed);
if (is_array($data->data)) {
$user["contact-id"] = $own_contact[0]["id"];
$user["name"] = $data->data[0]->name;
$user["link"] = $data->data[0]->url;
$user["avatar"] = $data->data[0]->pic_square;
}
return($user);
}
function fbsync_fetchfeed($a, $uid) {
$access_token = get_pconfig($uid,'facebook','access_token');
$last_updated = get_pconfig($uid,'fbsync','last_updated');
$self_id = get_pconfig($uid,'fbsync','self_id');
$create_user = get_pconfig($uid, 'fbsync', 'create_user');
$do_likes = get_config('fbsync', 'do_likes');
$self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
intval($uid)
);
$user = q("SELECT * FROM `user` WHERE `uid` = %d AND `account_expired` = 0 LIMIT 1",
intval($uid)
);
if(! count($user))
return;
require_once('include/items.php');
if ($last_updated == "")
$last_updated = 0;
logger("fbsync_fetchfeed: fetching content for user ".$self_id);
$fql = array(
"posts" => "SELECT action_links, actor_id, app_data, app_id, attachment, attribution, comment_info, created_time, filter_key, like_info, message, message_tags, parent_post_id, permalink, place, post_id, privacy, share_count, share_info, source_id, subscribed, tagged_ids, type, updated_time, with_tags FROM stream where filter_key in (SELECT filter_key FROM stream_filter WHERE uid=me() AND type='newsfeed') AND updated_time > $last_updated ORDER BY updated_time DESC LIMIT 500",
"comments" => "SELECT app_id, attachment, post_id, id, likes, fromid, time, text, text_tags, user_likes, likes FROM comment WHERE post_id IN (SELECT post_id FROM #posts) ORDER BY time DESC LIMIT 500",
"profiles" => "SELECT id, name, username, url, pic_square FROM profile WHERE id IN (SELECT actor_id FROM #posts) OR id IN (SELECT fromid FROM #comments) OR id IN (SELECT source_id FROM #posts) LIMIT 500",
"applications" => "SELECT app_id, display_name FROM application WHERE app_id IN (SELECT app_id FROM #posts) OR app_id IN (SELECT app_id FROM #comments) LIMIT 500",
"avatars" => "SELECT id, real_size, size, url FROM square_profile_pic WHERE id IN (SELECT id FROM #profiles) AND size = 256 LIMIT 500");
if ($do_likes) {
$fql["likes"] = "SELECT post_id, user_id FROM like WHERE post_id IN (SELECT post_id FROM #posts)";
$fql["profiles"] .= " OR id IN (SELECT user_id FROM #likes)";
}
$url = "https://graph.facebook.com/fql?q=".urlencode(json_encode($fql))."&access_token=".$access_token;
$feed = fetch_url($url);
$data = json_decode($feed);
if (!is_array($data->data)) {
logger("fbsync_fetchfeed: Error fetching data for user ".$uid.": ".print_r($data, true));
return;
}
$posts = array();
$comments = array();
$likes = array();
$profiles = array();
$applications = array();
$avatars = array();
foreach($data->data AS $query) {
switch ($query->name) {
case "posts":
$posts = array_reverse($query->fql_result_set);
break;
case "comments":
$comments = $query->fql_result_set;
break;
case "likes":
$likes = $query->fql_result_set;
break;
case "profiles":
$profiles = $query->fql_result_set;
break;
case "applications":
$applications = $query->fql_result_set;
break;
case "avatars":
$avatars = $query->fql_result_set;
break;
}
}
$square_avatars = array();
$contacts = array();
$application_data = array();
$post_data = array();
$comment_data = array();
foreach ($avatars AS $avatar) {
$avatar->id = number_format($avatar->id, 0, '', '');
$square_avatars[$avatar->id] = $avatar;
}
unset($avatars);
foreach ($profiles AS $profile) {
$profile->id = number_format($profile->id, 0, '', '');
if ($square_avatars[$profile->id]->url != "")
$profile->pic_square = $square_avatars[$profile->id]->url;
$contacts[$profile->id] = $profile;
}
unset($profiles);
unset($square_avatars);
foreach ($applications AS $application) {
$application->app_id = number_format($application->app_id, 0, '', '');
$application_data[$application->app_id] = $application;
}
unset($applications);
foreach ($posts AS $post) {
$post->actor_id = number_format($post->actor_id, 0, '', '');
$post->source_id = number_format($post->source_id, 0, '', '');
$post->app_id = number_format($post->app_id, 0, '', '');
$post_data[$post->post_id] = $post;
}
unset($posts);
foreach($comments AS $comment) {
$comment->fromid = number_format($comment->fromid, 0, '', '');
$comment_data[$comment->id] = $comment;
}
unset($comments);
foreach ($post_data AS $post) {
if ($post->updated_time > $last_updated)
$last_updated = $post->updated_time;
fbsync_createpost($a, $uid, $self, $contacts, $application_data, $post, $create_user);
}
foreach ($comment_data AS $comment) {
fbsync_createcomment($a, $uid, $self_id, $self, $user, $contacts, $application_data, $comment);
}
foreach($likes AS $like) {
$like->user_id = number_format($like->user_id, 0, '', '');
fbsync_createlike($a, $uid, $self_id, $self, $contacts, $like);
}
set_pconfig($uid,'fbsync','last_updated', $last_updated);
}
?>

43
fbsync/lang/C/messages.po Normal file
View file

@ -0,0 +1,43 @@
# ADDON fbsync
# Copyright (C)
# This file is distributed under the same license as the Friendica fbsync addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-23 14:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: fbsync.php:128 fbsync.php:132
msgid "Facebook Import"
msgstr ""
#: fbsync.php:136
msgid "Import Facebook newsfeed"
msgstr ""
#: fbsync.php:141
msgid "Automatically create contacts"
msgstr ""
#: fbsync.php:147
msgid "Save Settings"
msgstr ""
#: fbsync.php:656
msgid "status"
msgstr ""
#: fbsync.php:661
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr ""

24
fbsync/test.php Normal file
View file

@ -0,0 +1,24 @@
<?php
require_once("boot.php");
if(@is_null($a)) {
$a = new App;
}
@include(".htconfig.php");
require_once("dba.php");
dba::connect($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
$a->set_baseurl(get_config('system','url'));
require_once("addon/fbsync/fbsync.php");
$uid = 90;
fbsync_get_self($uid);
fbsync_fetchfeed($a, $uid);
?>

72
fbsync/test1.php Normal file
View file

@ -0,0 +1,72 @@
<?php
require_once("boot.php");
if(@is_null($a)) {
$a = new App;
}
@include(".htconfig.php");
require_once("dba.php");
dba::connect($db_host, $db_user, $db_pass, $db_data);
unset($db_host, $db_user, $db_pass, $db_data);
$a->set_baseurl(get_config('system','url'));
require_once("addon/fbsync/fbsync.php");
$feed = file_get_contents("/home/ike/friendica-data/fb.1");
$json = json_decode($feed);
//print_r($json);
$uid = 1;
$access_token = get_pconfig($uid,'facebook','access_token');
foreach ($json->data[0]->fql_result_set AS $post) {
//print_r($post);
$type = "";
$content = "";
if (isset($post->attachment->media) AND (($type == "") OR ($type == "link"))) {
foreach ($post->attachment->media AS $media) {
$image = "";
if (isset($media->type))
$type = $media->type;
if (isset($media->src))
$image = $media->src;
if (isset($media->photo)) {
if (isset($media->photo->images) AND (count($media->photo->images) > 1))
$image = $media->photo->images[1]->src;
echo "\n-------------------------------------------------\n";
//print_r($media->photo);
$url = "https://graph.facebook.com/v2.0/".$media->photo->fbid."/?access_token=".$access_token;
$feed = fetch_url($url);
$data = json_decode($feed);
if (isset($data->images))
$image = $data->images[0]->source;
echo "\n-------------------------------------------------\n";
}
if(isset($media->href) AND ($image != "") AND ($media->href != ""))
$content .= "\n".'[url='.$media->href.'][img]'.$image.'[/img][/url]';
else {
if ($image != "")
$content .= "\n".'[img]'.$image.'[/img]';
// if just a link, it may be a wall photo - check
if (isset($post->link))
$content .= fbpost_get_photo($media->href);
}
die($content."\n");
}
}
}
?>

22
forumlist/forumlist.css Normal file
View file

@ -0,0 +1,22 @@
#hide-forum-list {
opacity: 0.3;
filter:alpha(opacity=30);
}
#hide-forum-list:hover {
opacity: 1.0;
filter:alpha(opacity=100);
}
#forumlist-settings-label, #forumlist-random-label, #forumlist-profile-label, #forumlist-network-label {
float: left;
width: 200px;
margin-bottom: 25px;
}
#forumlist-max-forumlists, #forumlist-random, #forumlist-profile, #forumlist-network {
float: left;
}

188
forumlist/forumlist.php Normal file
View file

@ -0,0 +1,188 @@
<?php
/**
* Name: ForumList
* Description: Shows list of subscribed community forums on network sidebar
* Version: 1.1
* Author: Mike Macgirvin <mike@macgirvin.com>
* based on pages plugin by
* Author: Michael Vogel <ike@piratenpartei.de>
* Status: Unsupported
*
*/
function forumlist_install() {
register_hook('network_mod_init', 'addon/forumlist/forumlist.php', 'forumlist_network_mod_init');
register_hook('plugin_settings', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings');
register_hook('plugin_settings_post', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings_post');
register_hook('profile_advanced', 'addon/forumlist/forumlist.php', 'forumlist_profile_advanced');
}
function forumlist_uninstall() {
unregister_hook('network_mod_init', 'addon/forumlist/forumlist.php', 'forumlist_network_mod_init');
unregister_hook('plugin_settings', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings');
unregister_hook('plugin_settings_post', 'addon/forumlist/forumlist.php', 'forumlist_plugin_settings_post');
unregister_hook('profile_advanced', 'addon/forumlist/forumlist.php', 'forumlist_profile_advanced');
}
function forumlist_getpage($uid,$showhidden = true,$randomise = false, $showprivate = false) {
$forumlist = array();
$order = (($showhidden) ? '' : " and hidden = 0 ");
$order .= (($randomise) ? ' order by rand() ' : ' order by name asc ');
$select = "`forum` = 1";
if ($showprivate) {
$select = "( `forum` = 1 OR `prv` = 1 )";
}
$contacts = q("SELECT `contact`.`id`, `contact`.`url`, `contact`.`name`, `contact`.`micro` from contact
WHERE `network`= 'dfrn' AND $select AND `uid` = %d
and blocked = 0 and hidden = 0 and pending = 0 and archive = 0
$order ",
intval($uid)
);
// Look if the profile is a community page
foreach($contacts as $contact) {
$forumlist[] = array("url"=>$contact["url"], "name"=>$contact["name"], "id"=>$contact["id"], "micro"=>$contact['micro']);
}
return($forumlist);
}
function forumlist_network_mod_init($a,$b) {
if(! intval(get_pconfig(local_user(),'forumlist','show_on_network')))
return;
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/forumlist/forumlist.css' . '" media="all" />' . "\r\n";
$forumlist = '<div id="forumlist-sidebar" class="widget">
<div class="title tool">
<h3>'.t("Forums").'</h3></div>';
$forumlist .= '<div id="hide-forum-list" class="fakelink" onclick="openClose(\'forum-list\');" >'
. t('show/hide') . '</div>'
. '<div role="menu" id="forum-list" style="display: none;">';
$randomise = intval(get_pconfig(local_user(),'forumlist','randomise'));
$contacts = forumlist_getpage($a->user['uid'],true,$randomise, true);
if(count($contacts)) {
foreach($contacts as $contact) {
$forumlist .= '<div role="menuitem"><a href="' . $a->get_baseurl() . '/redir/' . $contact["id"] . '" title="'.t('External link to forum').'" class="label sparkle" target="_blank"><img class="forumlist-img" height="20" width="20" src="' . $contact['micro'] .'" alt="'.t('External link to forum').'" /></a> <a href="' . $a->get_baseurl() . '/network?f=&cid=' . $contact['id'] . '" >' . $contact["name"]."</a></div>";
}
}
else {
$forumlist .= t('No forum subscriptions');
}
$forumlist .= "</div></div>";
if (sizeof($contacts) > 0)
$a->page['aside'] = $forumlist . $a->page['aside'];
}
function forumlist_profile_advanced($a,&$b) {
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/forumlist/forumlist.css' . '" media="all" />' . "\r\n";
$profile = intval(get_pconfig($a->profile['profile_uid'],'forumlist','show_on_profile'));
if(! $profile)
return;
$forumlist = '<div id="forumlist-profile">
<div class="title">'.t("Forums:").'</div>
<div id="profile-forumlist-list">';
// place holder in case somebody wants configurability
$show_total = 9999;
$randomise = true;
$contacts = forumlist_getpage($a->user['uid'],false,$randomise,false);
$total_shown = 0;
$more = false;
foreach($contacts as $contact) {
$forumlist .= micropro($contact,false,'forumlist-profile-advanced');
$total_shown ++;
if($total_shown == $show_total)
break;
}
$forumlist .= '</div></div><div class="clear"></div>';
if(count($contacts) > 0)
$b .= $forumlist;
}
function forumlist_plugin_settings_post($a,$post) {
if(! local_user() || (! x($_POST,'forumlist-settings-submit')))
return;
// set_pconfig(local_user(),'forumlist','max_forumlists',intval($_POST['forumlist_max_forumlists']));
set_pconfig(local_user(),'forumlist','randomise',intval($_POST['forumlist_random']));
set_pconfig(local_user(),'forumlist','show_on_profile',intval($_POST['forumlist_profile']));
set_pconfig(local_user(),'forumlist','show_on_network',intval($_POST['forumlist_network']));
info( t('Forumlist settings updated.') . EOL);
}
function forumlist_plugin_settings(&$a,&$s) {
if(! local_user())
return;
/* Add our stylesheet to the forumlist so we can make our settings look nice */
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/forumlist/forumlist.css' . '" media="all" />' . "\r\n";
/* Get the current state of our config variable */
$randomise = intval(get_pconfig(local_user(),'forumlist','randomise'));
$randomise_checked = (($randomise) ? ' checked="checked" ' : '');
$profile = intval(get_pconfig(local_user(),'forumlist','show_on_profile'));
$profile_checked = (($profile) ? ' checked="checked" ' : '');
$network = intval(get_pconfig(local_user(),'forumlist','show_on_network'));
$network_checked = (($network) ? ' checked="checked" ' : '');
/* Add some HTML to the existing form */
$s .= '<span id="settings_forumlist_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_forumlist_expanded\'); openClose(\'settings_forumlist_inflated\');">';
$s .= '<h3>' . t('Forumlist') . '</h3>';
$s .= '</span>';
$s .= '<div id="settings_forumlist_expanded" class="settings-block" style="display: none;">';
$s .= '<span class="fakelink" onclick="openClose(\'settings_forumlist_expanded\'); openClose(\'settings_forumlist_inflated\');">';
$s .= '<h3>' . t('Forumlist') . '</h3>';
$s .= '</span>';
$s .= '<div id="forumlist-settings-wrapper">';
$s .= '<label id="forumlist-random-label" for="forumlist-random">' . t('Randomise forum list') . '</label>';
$s .= '<input id="forumlist-random" type="checkbox" name="forumlist_random" value="1" ' . $randomise_checked . '/>';
$s .= '<div class="clear"></div>';
$s .= '<label id="forumlist-profile-label" for="forumlist-profile">' . t('Show forums on profile page') . '</label>';
$s .= '<input id="forumlist-profile" type="checkbox" name="forumlist_profile" value="1" ' . $profile_checked . '/>';
$s .= '<div class="clear"></div>';
$s .= '<label id="forumlist-network-label" for="forumlist-network">' . t('Show forums on network page') . '</label>';
$s .= '<input id="forumlist-network" type="checkbox" name="forumlist_network" value="1" ' . $network_checked . '/>';
$s .= '<div class="clear"></div>';
$s .= '</div>';
/* provide a submit button */
$s .= '<div class="settings-submit-wrapper" ><input type="submit" name="forumlist-settings-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
}

View file

@ -0,0 +1,58 @@
# ADDON forumlist
# Copyright (C)
# This file is distributed under the same license as the Friendica forumlist addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: forumlist.php:64
msgid "Forums"
msgstr ""
#: forumlist.php:67
msgid "show/hide"
msgstr ""
#: forumlist.php:81
msgid "No forum subscriptions"
msgstr ""
#: forumlist.php:98
msgid "Forums:"
msgstr ""
#: forumlist.php:134
msgid "Forumlist settings updated."
msgstr ""
#: forumlist.php:162
msgid "Forumlist Settings"
msgstr ""
#: forumlist.php:164
msgid "Randomise forum list"
msgstr ""
#: forumlist.php:167
msgid "Show forums on profile page"
msgstr ""
#: forumlist.php:170
msgid "Show forums on network page"
msgstr ""
#: forumlist.php:178
msgid "Submit"
msgstr ""

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Forums"] = "Forums";
$a->strings["show/hide"] = "mostra/amaga";
$a->strings["No forum subscriptions"] = "No hi ha subscripcions al fòrum";
$a->strings["Forums:"] = "Fòrums:";
$a->strings["Forumlist settings updated."] = "Ajustos de Forumlist actualitzats.";
$a->strings["Forumlist Settings"] = "Ajustos de Forumlist";
$a->strings["Randomise forum list"] = "";
$a->strings["Show forums on profile page"] = "";
$a->strings["Show forums on network page"] = "";
$a->strings["Submit"] = "Enviar";

View file

@ -0,0 +1,60 @@
# ADDON forumlist
# Copyright (C)
# This file is distributed under the same license as the Friendica forumlist addon package.
#
#
# Translators:
# Michal Šupler <msupler@gmail.com>, 2014-2015
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2015-02-11 19:40+0000\n"
"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: forumlist.php:64
msgid "Forums"
msgstr "Fóra"
#: forumlist.php:67
msgid "show/hide"
msgstr "zobrazit/skrýt"
#: forumlist.php:81
msgid "No forum subscriptions"
msgstr "Žádné registrace k fórům"
#: forumlist.php:98
msgid "Forums:"
msgstr "Fóra:"
#: forumlist.php:134
msgid "Forumlist settings updated."
msgstr "Nastavení Forumlist aktualizováno."
#: forumlist.php:162
msgid "Forumlist Settings"
msgstr "Nastavení Forumlist"
#: forumlist.php:164
msgid "Randomise forum list"
msgstr "Zamíchat lis fór"
#: forumlist.php:167
msgid "Show forums on profile page"
msgstr "Zobrazit fóra na profilové stránce"
#: forumlist.php:170
msgid "Show forums on network page"
msgstr "Zobrazit fóra na stránce Síť"
#: forumlist.php:178
msgid "Submit"
msgstr "Odeslat"

View file

@ -0,0 +1,17 @@
<?php
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
}}
;
$a->strings["Forums"] = "Fóra";
$a->strings["show/hide"] = "zobrazit/skrýt";
$a->strings["No forum subscriptions"] = "Žádné registrace k fórům";
$a->strings["Forums:"] = "Fóra:";
$a->strings["Forumlist settings updated."] = "Nastavení Forumlist aktualizováno.";
$a->strings["Forumlist Settings"] = "Nastavení Forumlist";
$a->strings["Randomise forum list"] = "Zamíchat lis fór";
$a->strings["Show forums on profile page"] = "Zobrazit fóra na profilové stránce";
$a->strings["Show forums on network page"] = "Zobrazit fóra na stránce Síť";
$a->strings["Submit"] = "Odeslat";

View file

@ -0,0 +1,61 @@
# ADDON forumlist
# Copyright (C)
# This file is distributed under the same license as the Friendica forumlist addon package.
#
#
# Translators:
# Abrax <webmaster@a-zwenkau.de>, 2014
# bavatar <tobias.diekershoff@gmx.net>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2014-10-15 12:28+0000\n"
"Last-Translator: Abrax <webmaster@a-zwenkau.de>\n"
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forumlist.php:64
msgid "Forums"
msgstr "Foren"
#: forumlist.php:67
msgid "show/hide"
msgstr "anzeigen/verbergen"
#: forumlist.php:81
msgid "No forum subscriptions"
msgstr "Keine Foren-Mitgliedschaften."
#: forumlist.php:98
msgid "Forums:"
msgstr "Foren:"
#: forumlist.php:134
msgid "Forumlist settings updated."
msgstr "Einstellungen zur Foren-Liste aktualisiert."
#: forumlist.php:162
msgid "Forumlist Settings"
msgstr "Foren-Liste Einstellungen"
#: forumlist.php:164
msgid "Randomise forum list"
msgstr "Zufällige Zusammenstellung der Foren-Liste"
#: forumlist.php:167
msgid "Show forums on profile page"
msgstr "Zeige die Liste der Foren auf der Profilseite"
#: forumlist.php:170
msgid "Show forums on network page"
msgstr "Zeige Foren auf der Netzwerk-Seite"
#: forumlist.php:178
msgid "Submit"
msgstr "Senden"

View file

@ -0,0 +1,17 @@
<?php
if(! function_exists("string_plural_select_de")) {
function string_plural_select_de($n){
return ($n != 1);;
}}
;
$a->strings["Forums"] = "Foren";
$a->strings["show/hide"] = "anzeigen/verbergen";
$a->strings["No forum subscriptions"] = "Keine Foren-Mitgliedschaften.";
$a->strings["Forums:"] = "Foren:";
$a->strings["Forumlist settings updated."] = "Einstellungen zur Foren-Liste aktualisiert.";
$a->strings["Forumlist Settings"] = "Foren-Liste Einstellungen";
$a->strings["Randomise forum list"] = "Zufällige Zusammenstellung der Foren-Liste";
$a->strings["Show forums on profile page"] = "Zeige die Liste der Foren auf der Profilseite";
$a->strings["Show forums on network page"] = "Zeige Foren auf der Netzwerk-Seite";
$a->strings["Submit"] = "Senden";

View file

@ -0,0 +1,9 @@
<?php
$a->strings["Forums"] = "Forumoj";
$a->strings["show/hide"] = "";
$a->strings["No forum subscriptions"] = "";
$a->strings["Forums:"] = "Forumoj:";
$a->strings["Forumlist settings updated."] = "";
$a->strings["Forumlist Settings"] = "";
$a->strings["Submit"] = "Sendi";

View file

@ -0,0 +1,60 @@
# ADDON forumlist
# Copyright (C)
# This file is distributed under the same license as the Friendica forumlist addon package.
#
#
# Translators:
# Alberto Díaz Tormo <albertodiaztormo@gmail.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2016-10-23 11:41+0000\n"
"Last-Translator: Alberto Díaz Tormo <albertodiaztormo@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forumlist.php:64
msgid "Forums"
msgstr "Foros"
#: forumlist.php:67
msgid "show/hide"
msgstr "mostrar/ocultar"
#: forumlist.php:81
msgid "No forum subscriptions"
msgstr "Sin subscripciones de foro"
#: forumlist.php:98
msgid "Forums:"
msgstr "Foros:"
#: forumlist.php:134
msgid "Forumlist settings updated."
msgstr "Ajustes de la lista de foros actualizados."
#: forumlist.php:162
msgid "Forumlist Settings"
msgstr "Ajustes de la lista de foros"
#: forumlist.php:164
msgid "Randomise forum list"
msgstr "Aleatorizar la lista de foros"
#: forumlist.php:167
msgid "Show forums on profile page"
msgstr "Mostrar foros en la página de perfil"
#: forumlist.php:170
msgid "Show forums on network page"
msgstr "Mostrar foros en la página de red"
#: forumlist.php:178
msgid "Submit"
msgstr "Enviar"

View file

@ -0,0 +1,17 @@
<?php
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
return ($n != 1);;
}}
;
$a->strings["Forums"] = "Foros";
$a->strings["show/hide"] = "mostrar/ocultar";
$a->strings["No forum subscriptions"] = "Sin subscripciones de foro";
$a->strings["Forums:"] = "Foros:";
$a->strings["Forumlist settings updated."] = "Ajustes de la lista de foros actualizados.";
$a->strings["Forumlist Settings"] = "Ajustes de la lista de foros";
$a->strings["Randomise forum list"] = "Aleatorizar la lista de foros";
$a->strings["Show forums on profile page"] = "Mostrar foros en la página de perfil";
$a->strings["Show forums on network page"] = "Mostrar foros en la página de red";
$a->strings["Submit"] = "Enviar";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Forums"] = "Forums";
$a->strings["show/hide"] = "Montrer/cacher";
$a->strings["No forum subscriptions"] = "Pas d'abonnement au forum";
$a->strings["Forums:"] = "Forums:";
$a->strings["Forumlist settings updated."] = "Paramètres de la liste des forums mis à jour.";
$a->strings["Forumlist Settings"] = "Paramètres de la liste des forums";
$a->strings["Randomise forum list"] = "Mélanger la liste de forums";
$a->strings["Show forums on profile page"] = "Montrer les forums sur le profil";
$a->strings["Show forums on network page"] = "";
$a->strings["Submit"] = "Envoyer";

View file

@ -0,0 +1,9 @@
<?php
$a->strings["Forums"] = "";
$a->strings["show/hide"] = "";
$a->strings["No forum subscriptions"] = "";
$a->strings["Forums:"] = "";
$a->strings["Forumlist settings updated."] = "";
$a->strings["Forumlist Settings"] = "";
$a->strings["Submit"] = "Senda inn";

View file

@ -0,0 +1,60 @@
# ADDON forumlist
# Copyright (C)
# This file is distributed under the same license as the Friendica forumlist addon package.
#
#
# Translators:
# fabrixxm <fabrix.xm@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2015-12-14 11:14+0000\n"
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forumlist.php:64
msgid "Forums"
msgstr "Forum"
#: forumlist.php:67
msgid "show/hide"
msgstr "mostra/nascondi"
#: forumlist.php:81
msgid "No forum subscriptions"
msgstr "Nessun forum collegato"
#: forumlist.php:98
msgid "Forums:"
msgstr "Forum:"
#: forumlist.php:134
msgid "Forumlist settings updated."
msgstr "Impostazioni Elenco Forum aggiornate."
#: forumlist.php:162
msgid "Forumlist Settings"
msgstr "Impostazioni Elenco Forum"
#: forumlist.php:164
msgid "Randomise forum list"
msgstr "Ordina casualmente l'elenco"
#: forumlist.php:167
msgid "Show forums on profile page"
msgstr "Mostra i forum sulla pagina profilo"
#: forumlist.php:170
msgid "Show forums on network page"
msgstr "Mostra i forum sulla pagina Rete"
#: forumlist.php:178
msgid "Submit"
msgstr "Invia"

View file

@ -0,0 +1,17 @@
<?php
if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
return ($n != 1);;
}}
;
$a->strings["Forums"] = "Forum";
$a->strings["show/hide"] = "mostra/nascondi";
$a->strings["No forum subscriptions"] = "Nessun forum collegato";
$a->strings["Forums:"] = "Forum:";
$a->strings["Forumlist settings updated."] = "Impostazioni Elenco Forum aggiornate.";
$a->strings["Forumlist Settings"] = "Impostazioni Elenco Forum";
$a->strings["Randomise forum list"] = "Ordina casualmente l'elenco";
$a->strings["Show forums on profile page"] = "Mostra i forum sulla pagina profilo";
$a->strings["Show forums on network page"] = "Mostra i forum sulla pagina Rete";
$a->strings["Submit"] = "Invia";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Forums"] = "";
$a->strings["show/hide"] = "";
$a->strings["No forum subscriptions"] = "";
$a->strings["Forums:"] = "";
$a->strings["Forumlist settings updated."] = "";
$a->strings["Forumlist Settings"] = "";
$a->strings["Randomise forum list"] = "";
$a->strings["Show forums on profile page"] = "";
$a->strings["Show forums on network page"] = "";
$a->strings["Submit"] = "Lagre";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Forums"] = "Fora";
$a->strings["show/hide"] = "pokaż/ukryj";
$a->strings["No forum subscriptions"] = "";
$a->strings["Forums:"] = "";
$a->strings["Forumlist settings updated."] = "";
$a->strings["Forumlist Settings"] = "";
$a->strings["Randomise forum list"] = "";
$a->strings["Show forums on profile page"] = "";
$a->strings["Show forums on network page"] = "";
$a->strings["Submit"] = "Potwierdź";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Forums"] = "Fóruns";
$a->strings["show/hide"] = "";
$a->strings["No forum subscriptions"] = "";
$a->strings["Forums:"] = "Fóruns:";
$a->strings["Forumlist settings updated."] = "";
$a->strings["Forumlist Settings"] = "";
$a->strings["Randomise forum list"] = "";
$a->strings["Show forums on profile page"] = "";
$a->strings["Show forums on network page"] = "";
$a->strings["Submit"] = "Enviar";

View file

@ -0,0 +1,60 @@
# ADDON forumlist
# Copyright (C)
# This file is distributed under the same license as the Friendica forumlist addon package.
#
#
# Translators:
# Doru DEACONU <dumitrudeaconu@yahoo.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2014-11-27 14:19+0000\n"
"Last-Translator: Doru DEACONU <dumitrudeaconu@yahoo.com>\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/friendica/language/ro_RO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ro_RO\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#: forumlist.php:64
msgid "Forums"
msgstr "Forumuri"
#: forumlist.php:67
msgid "show/hide"
msgstr "afișare/ascundere"
#: forumlist.php:81
msgid "No forum subscriptions"
msgstr "Nu există subscrieri pe forum"
#: forumlist.php:98
msgid "Forums:"
msgstr "Forumuri:"
#: forumlist.php:134
msgid "Forumlist settings updated."
msgstr "Configurările Forumlist au fost actualizate."
#: forumlist.php:162
msgid "Forumlist Settings"
msgstr "Configurări Forumlist "
#: forumlist.php:164
msgid "Randomise forum list"
msgstr "Randomizare listă forum"
#: forumlist.php:167
msgid "Show forums on profile page"
msgstr "Afișare forumuri pe pagina de profil"
#: forumlist.php:170
msgid "Show forums on network page"
msgstr "Afișare forumuri pe pagina de rețea"
#: forumlist.php:178
msgid "Submit"
msgstr "Trimite"

View file

@ -0,0 +1,17 @@
<?php
if(! function_exists("string_plural_select_ro")) {
function string_plural_select_ro($n){
return ($n==1?0:((($n%100>19)||(($n%100==0)&&($n!=0)))?2:1));;
}}
;
$a->strings["Forums"] = "Forumuri";
$a->strings["show/hide"] = "afișare/ascundere";
$a->strings["No forum subscriptions"] = "Nu există subscrieri pe forum";
$a->strings["Forums:"] = "Forumuri:";
$a->strings["Forumlist settings updated."] = "Configurările Forumlist au fost actualizate.";
$a->strings["Forumlist Settings"] = "Configurări Forumlist ";
$a->strings["Randomise forum list"] = "Randomizare listă forum";
$a->strings["Show forums on profile page"] = "Afișare forumuri pe pagina de profil";
$a->strings["Show forums on network page"] = "Afișare forumuri pe pagina de rețea";
$a->strings["Submit"] = "Trimite";

View file

@ -0,0 +1,60 @@
# ADDON forumlist
# Copyright (C)
# This file is distributed under the same license as the Friendica forumlist addon package.
#
#
# Translators:
# Stanislav N. <pztrn@pztrn.name>, 2017
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2017-04-08 17:11+0000\n"
"Last-Translator: Stanislav N. <pztrn@pztrn.name>\n"
"Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: forumlist.php:64
msgid "Forums"
msgstr "Форумы"
#: forumlist.php:67
msgid "show/hide"
msgstr "показать/скрыть"
#: forumlist.php:81
msgid "No forum subscriptions"
msgstr "Нет подписок на форумы"
#: forumlist.php:98
msgid "Forums:"
msgstr "Форумы:"
#: forumlist.php:134
msgid "Forumlist settings updated."
msgstr "Настройки Forumlist обновлены."
#: forumlist.php:162
msgid "Forumlist Settings"
msgstr "Настройки Forumlist"
#: forumlist.php:164
msgid "Randomise forum list"
msgstr "Случайный список форумов"
#: forumlist.php:167
msgid "Show forums on profile page"
msgstr "Показывать форумы на странице профиля"
#: forumlist.php:170
msgid "Show forums on network page"
msgstr "Показывать форумы на странице сети"
#: forumlist.php:178
msgid "Submit"
msgstr "Добавить"

View file

@ -0,0 +1,17 @@
<?php
if(! function_exists("string_plural_select_ru")) {
function string_plural_select_ru($n){
return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);;
}}
;
$a->strings["Forums"] = "Форумы";
$a->strings["show/hide"] = "показать/скрыть";
$a->strings["No forum subscriptions"] = "Нет подписок на форумы";
$a->strings["Forums:"] = "Форумы:";
$a->strings["Forumlist settings updated."] = "Настройки Forumlist обновлены.";
$a->strings["Forumlist Settings"] = "Настройки Forumlist";
$a->strings["Randomise forum list"] = "Случайный список форумов";
$a->strings["Show forums on profile page"] = "Показывать форумы на странице профиля";
$a->strings["Show forums on network page"] = "Показывать форумы на странице сети";
$a->strings["Submit"] = "Добавить";

View file

@ -0,0 +1,60 @@
# ADDON forumlist
# Copyright (C)
# This file is distributed under the same license as the Friendica forumlist addon package.
#
#
# Translators:
# Jonatan Nyberg <jonatan@autistici.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2017-02-13 20:15+0000\n"
"Last-Translator: Jonatan Nyberg <jonatan@autistici.org>\n"
"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forumlist.php:64
msgid "Forums"
msgstr "Forum"
#: forumlist.php:67
msgid "show/hide"
msgstr ""
#: forumlist.php:81
msgid "No forum subscriptions"
msgstr ""
#: forumlist.php:98
msgid "Forums:"
msgstr ""
#: forumlist.php:134
msgid "Forumlist settings updated."
msgstr ""
#: forumlist.php:162
msgid "Forumlist Settings"
msgstr ""
#: forumlist.php:164
msgid "Randomise forum list"
msgstr ""
#: forumlist.php:167
msgid "Show forums on profile page"
msgstr ""
#: forumlist.php:170
msgid "Show forums on network page"
msgstr ""
#: forumlist.php:178
msgid "Submit"
msgstr "Spara"

View file

@ -0,0 +1,17 @@
<?php
if(! function_exists("string_plural_select_sv")) {
function string_plural_select_sv($n){
return ($n != 1);;
}}
;
$a->strings["Forums"] = "Forum";
$a->strings["show/hide"] = "";
$a->strings["No forum subscriptions"] = "";
$a->strings["Forums:"] = "";
$a->strings["Forumlist settings updated."] = "";
$a->strings["Forumlist Settings"] = "";
$a->strings["Randomise forum list"] = "";
$a->strings["Show forums on profile page"] = "";
$a->strings["Show forums on network page"] = "";
$a->strings["Submit"] = "Spara";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Forums"] = "论坛";
$a->strings["show/hide"] = "表示/隐藏";
$a->strings["No forum subscriptions"] = "没有评坛订阅";
$a->strings["Forums:"] = "评坛:";
$a->strings["Forumlist settings updated."] = "评坛单设置更新了。";
$a->strings["Forumlist Settings"] = "评坛单设置";
$a->strings["Randomise forum list"] = "洗牌评坛单";
$a->strings["Show forums on profile page"] = "表示评坛在简介页";
$a->strings["Show forums on network page"] = "表示评坛在网络页";
$a->strings["Submit"] = "提交";

2
gpluspost/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
postToGooglePlus.php
nxs-http.php

19
gpluspost/gpluspost.css Executable file
View file

@ -0,0 +1,19 @@
#gpluspost-enable-label, #gpluspost-bydefault-label, #gpluspost-noloopprevention-label,
#gpluspost-skipwithoutlink-label, #gpluspost-mirror-label, #gpluspost-account-label,
#gpluspost-username-label, #gpluspost-password-label, #gpluspost-page-label {
float: left;
width: 200px;
margin-top: 10px;
}
#gpluspost-checkbox, #gpluspost-bydefault, #gpluspost-noloopprevention,
#gpluspost-skipwithoutlink, #gpluspost-mirror, #gpluspost-account,
#gpluspost-username, #gpluspost-password, #gpluspost-page {
float: left;
margin-top: 10px;
}
#gpluspost-submit {
margin-top: 15px;
}

576
gpluspost/gpluspost.php Normal file
View file

@ -0,0 +1,576 @@
<?php
/**
* Name: G+ Post
* Description: Posts to a Google+ page with the help of Hootsuite
* Version: 0.1
* Author: Michael Vogel <https://pirati.ca/profile/heluecht>
* Status: Unsupported
*/
function gpluspost_install() {
register_hook('post_local', 'addon/gpluspost/gpluspost.php', 'gpluspost_post_local');
register_hook('notifier_normal', 'addon/gpluspost/gpluspost.php', 'gpluspost_send');
register_hook('jot_networks', 'addon/gpluspost/gpluspost.php', 'gpluspost_jot_nets');
register_hook('connector_settings', 'addon/gpluspost/gpluspost.php', 'gpluspost_settings');
register_hook('connector_settings_post', 'addon/gpluspost/gpluspost.php', 'gpluspost_settings_post');
register_hook('queue_predeliver', 'addon/gpluspost/gpluspost.php', 'gpluspost_queue_hook');
}
function gpluspost_uninstall() {
unregister_hook('post_local', 'addon/gpluspost/gpluspost.php', 'gpluspost_post_local');
unregister_hook('notifier_normal', 'addon/gpluspost/gpluspost.php', 'gpluspost_send');
unregister_hook('jot_networks', 'addon/gpluspost/gpluspost.php', 'gpluspost_jot_nets');
unregister_hook('connector_settings', 'addon/gpluspost/gpluspost.php', 'gpluspost_settings');
unregister_hook('connector_settings_post', 'addon/gpluspost/gpluspost.php', 'gpluspost_settings_post');
unregister_hook('queue_predeliver', 'addon/gpluspost/gpluspost.php', 'gpluspost_queue_hook');
}
function gpluspost_jot_nets(&$a,&$b) {
if(! local_user())
return;
$post = get_pconfig(local_user(),'gpluspost','post');
if(intval($post) == 1) {
$defpost = get_pconfig(local_user(),'gpluspost','post_by_default');
$selected = ((intval($defpost) == 1) ? ' checked="checked" ' : '');
$b .= '<div class="profile-jot-net"><input type="checkbox" name="gpluspost_enable"' . $selected . ' value="1" /> '
. t('Post to Google+') . '</div>';
}
}
function gpluspost_nextscripts() {
$a = get_app();
return file_exists($a->get_basepath()."/addon/gpluspost/postToGooglePlus.php");
}
function gpluspost_settings(&$a,&$s) {
if(! local_user())
return;
$result = q("SELECT `installed` FROM `addon` WHERE `name` = 'fromgplus' AND `installed`");
$fromgplus_enabled = count($result) > 0;
/* Add our stylesheet to the page so we can make our settings look nice */
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/gpluspost/gpluspost.css' . '" media="all" />' . "\r\n";
$enabled = get_pconfig(local_user(),'gpluspost','post');
$checked = (($enabled) ? ' checked="checked" ' : '');
$css = (($enabled) ? '' : '-disabled');
$def_enabled = get_pconfig(local_user(),'gpluspost','post_by_default');
$def_checked = (($def_enabled) ? ' checked="checked" ' : '');
$noloop_enabled = get_pconfig(local_user(),'gpluspost','no_loop_prevention');
$noloop_checked = (($noloop_enabled) ? ' checked="checked" ' : '');
$skip_enabled = get_pconfig(local_user(),'gpluspost','skip_without_link');
$skip_checked = (($skip_enabled) ? ' checked="checked" ' : '');
$mirror_enable_checked = (intval(get_pconfig(local_user(),'fromgplus','enable')) ? ' checked="checked"' : '');
$mirror_account = get_pconfig(local_user(),'fromgplus','account');
$username = get_pconfig(local_user(), 'gpluspost', 'username');
$password = get_pconfig(local_user(), 'gpluspost', 'password');
$page = get_pconfig(local_user(), 'gpluspost', 'page');
if ($fromgplus_enabled)
$title = "Google+ Export/Mirror";
else
$title = "Google+ Export";
$s .= '<span id="settings_gpluspost_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_gpluspost_expanded\'); openClose(\'settings_gpluspost_inflated\');">';
$s .= '<img class="connector'.$css.'" src="images/googleplus.png" /><h3 class="connector">'. t($title).'</h3>';
$s .= '</span>';
$s .= '<div id="settings_gpluspost_expanded" class="settings-block" style="display: none;">';
$s .= '<span class="fakelink" onclick="openClose(\'settings_gpluspost_expanded\'); openClose(\'settings_gpluspost_inflated\');">';
$s .= '<img class="connector'.$css.'" src="images/googleplus.png" /><h3 class="connector">'. t($title).'</h3>';
$s .= '</span>';
$s .= '<div id="gpluspost-enable-wrapper">';
$s .= '<label id="gpluspost-enable-label" for="gpluspost-checkbox">' . t('Enable Google+ Post Plugin') . '</label>';
$s .= '<input id="gpluspost-checkbox" type="checkbox" name="gpluspost" value="1" ' . $checked . '/>';
$s .= '</div><div class="clear"></div>';
if (gpluspost_nextscripts()) {
/*
// To-Do: Option to check the credentials if requested
if (($username != "") && ($password != "")) {
require_once("addon/gpluspost/postToGooglePlus.php");
$loginError = doConnectToGooglePlus2($username, $password);
if ($loginError)
$s .= '<p>Login Error. Please enter the correct credentials.</p>';
}*/
$s .= '<div id="gpluspost-username-wrapper">';
$s .= '<label id="gpluspost-username-label" for="gpluspost-username">' . t('Google+ username') . '</label>';
$s .= '<input id="gpluspost-username" type="text" name="username" value="' . $username . '" />';
$s .= '</div><div class="clear"></div>';
$s .= '<div id="gpluspost-password-wrapper">';
$s .= '<label id="gpluspost-password-label" for="gpluspost-password">' . t('Google+ password') . '</label>';
$s .= '<input id="gpluspost-password" type="password" name="password" value="' . $password . '" />';
$s .= '</div><div class="clear"></div>';
$s .= '<div id="gpluspost-page-wrapper">';
$s .= '<label id="gpluspost-page-label" for="gpluspost-page">' . t('Google+ page number') . '</label>';
$s .= '<input id="gpluspost-page" type="text" name="page" value="' . $page . '" />';
$s .= '</div><div class="clear"></div>';
}
$s .= '<div id="gpluspost-bydefault-wrapper">';
$s .= '<label id="gpluspost-bydefault-label" for="gpluspost-bydefault">' . t('Post to Google+ by default') . '</label>';
$s .= '<input id="gpluspost-bydefault" type="checkbox" name="gpluspost_bydefault" value="1" ' . $def_checked . '/>';
$s .= '</div><div class="clear"></div>';
$s .= '<div id="gpluspost-noloopprevention-wrapper">';
$s .= '<label id="gpluspost-noloopprevention-label" for="gpluspost-noloopprevention">' . t('Do not prevent posting loops') . '</label>';
$s .= '<input id="gpluspost-noloopprevention" type="checkbox" name="gpluspost_noloopprevention" value="1" ' . $noloop_checked . '/>';
$s .= '</div><div class="clear"></div>';
if (!gpluspost_nextscripts()) {
$s .= '<div id="gpluspost-skipwithoutlink-wrapper">';
$s .= '<label id="gpluspost-skipwithoutlink-label" for="gpluspost-skipwithoutlink">' . t('Skip messages without links') . '</label>';
$s .= '<input id="gpluspost-skipwithoutlink" type="checkbox" name="gpluspost_skipwithoutlink" value="1" ' . $skip_checked . '/>';
$s .= '</div><div class="clear"></div>';
}
if ($fromgplus_enabled) {
$s .= '<div id="gpluspost-mirror-wrapper">';
$s .= '<label id="gpluspost-mirror-label" for="gpluspost-mirror">'.t('Mirror all public posts').'</label>';
$s .= '<input id="gpluspost-mirror" type="checkbox" name="fromgplus-enable" value="1"'.$mirror_enable_checked.' />';
$s .= '</div><div class="clear"></div>';
$s .= '<div id="gpluspost-mirroraccount-wrapper">';
$s .= '<label id="gpluspost-account-label" for="gpluspost-account">'.t('Mirror Google Account ID').' </label>';
$s .= '<input id="gpluspost-account" type="text" name="fromgplus-account" value="'.$mirror_account.'" />';
$s .= '</div><div class="clear"></div>';
}
/* provide a submit button */
$s .= '<div class="settings-submit-wrapper" ><input type="submit" id="gpluspost-submit" name="gpluspost-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div>';
if (gpluspost_nextscripts()) {
$s .= "<p>If the plugin doesn't work or if it stopped, please login to Google+, then unlock your account by following this <a href='https://www.google.com/accounts/UnlockCaptcha'>link</a>. ";
$s .= 'At this page please click on "Continue". Then your posts should arrive in several minutes.</p>';
} else {
$s .= '<p>Register an account at <a href="https://hootsuite.com">Hootsuite</a>, add your G+ page and add the feed-url there.<br />';
$s .= 'Feed-url: '.$a->get_baseurl().'/gpluspost/'.urlencode($a->user["nickname"]).'</p>';
}
$s .= '</div>';
}
function gpluspost_settings_post(&$a,&$b) {
if(x($_POST,'gpluspost-submit')) {
set_pconfig(local_user(),'gpluspost','post',intval($_POST['gpluspost']));
set_pconfig(local_user(),'gpluspost','post_by_default',intval($_POST['gpluspost_bydefault']));
set_pconfig(local_user(),'gpluspost','no_loop_prevention',intval($_POST['gpluspost_noloopprevention']));
if (!gpluspost_nextscripts()) {
set_pconfig(local_user(),'gpluspost','skip_without_link',intval($_POST['gpluspost_skipwithoutlink']));
} else {
set_pconfig(local_user(),'gpluspost','username',trim($_POST['username']));
set_pconfig(local_user(),'gpluspost','password',trim($_POST['password']));
set_pconfig(local_user(),'gpluspost','page',trim($_POST['page']));
}
$result = q("SELECT `installed` FROM `addon` WHERE `name` = 'fromgplus' AND `installed`");
if (count($result) > 0) {
set_pconfig(local_user(),'fromgplus','account',trim($_POST['fromgplus-account']));
$enable = ((x($_POST,'fromgplus-enable')) ? intval($_POST['fromgplus-enable']) : 0);
set_pconfig(local_user(),'fromgplus','enable', $enable);
if (!$enable)
del_pconfig(local_user(),'fromgplus','lastdate');
}
}
}
function gpluspost_post_local(&$a,&$b) {
if($b['edit'])
return;
if((! local_user()) || (local_user() != $b['uid']))
return;
if($b['private'] || $b['parent'])
return;
$post = intval(get_pconfig(local_user(),'gpluspost','post'));
$enable = (($post && x($_REQUEST,'gpluspost_enable')) ? intval($_REQUEST['gpluspost_enable']) : 0);
if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'gpluspost','post_by_default')))
$enable = 1;
if(!$enable)
return;
if(strlen($b['postopts']))
$b['postopts'] .= ',';
$b['postopts'] .= 'gplus';
}
function gpluspost_send(&$a,&$b) {
logger('gpluspost_send: invoked for post '.$b['id']." ".$b['app']);
if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
return;
if(! strstr($b['postopts'],'gplus'))
return;
if($b['parent'] != $b['id'])
return;
// if post comes from Google+ don't send it back
if (!get_pconfig($b["uid"],'gpluspost','no_loop_prevention') && (($b['app'] == "Google+") || ($b["extid"] == NETWORK_GPLUS)))
return;
if (!gpluspost_nextscripts()) {
// Posting via RSS-Feed and Hootsuite
$itemlist = get_pconfig($b["uid"],'gpluspost','itemlist');
$items = explode(",", $itemlist);
$i = 0;
$newitems = array($b['id']);
foreach ($items AS $item)
if ($i++ < 9)
$newitems[] = $item;
$itemlist = implode(",", $newitems);
logger('gpluspost_send: new itemlist: '.$itemlist." for uid ".$b["uid"]);
set_pconfig($b["uid"],'gpluspost','itemlist', $itemlist);
} else {
// Posting via NextScripts
$username = get_pconfig($b['uid'],'gpluspost','username');
$password = get_pconfig($b['uid'],'gpluspost','password');
$page = get_pconfig($b['uid'],'gpluspost','page');
$success = false;
if($username && $password) {
require_once("addon/gpluspost/postToGooglePlus.php");
require_once("include/plaintext.php");
$item = $b;
// Markup for Google+
if ($item["title"] != "")
$item["title"] = "*".$item["title"]."*";
$item["body"] = preg_replace("(\[b\](.*?)\[\/b\])ism",'*$1*',$item["body"]);
$item["body"] = preg_replace("(\[i\](.*?)\[\/i\])ism",'_$1_',$item["body"]);
$item["body"] = preg_replace("(\[s\](.*?)\[\/s\])ism",'-$1-',$item["body"]);
$data = plaintext($a, $item, 0, false, 9);
logger('gpluspost_send: data: '.print_r($data, true), LOGGER_DEBUG);
$loginError = doConnectToGooglePlus2($username, $password);
if (!$loginError) {
if ($data["url"] != "")
$lnk = doGetGoogleUrlInfo2($data["url"]);
elseif ($data["image"] != "")
$lnk = array('img'=>$data["image"]);
else
$lnk = "";
// Send a special blank to identify the post through the "fromgplus" addon
$blank = html_entity_decode("&#x00A0;", ENT_QUOTES, 'UTF-8');
doPostToGooglePlus2($data["text"].$blank, $lnk, $page);
$success = true;
logger('gpluspost_send: '.$b['uid'].' success', LOGGER_DEBUG);
} else
logger('gpluspost_send: '.$b['uid'].' failed '.$loginError, LOGGER_DEBUG);
if (!$success) {
logger('gpluspost_send: requeueing '.$b['uid'], LOGGER_DEBUG);
$r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self`", $b['uid']);
if (count($r))
$a->contact = $r[0]["id"];
$s = serialize(array('url' => $url, 'item' => $b['id'], 'post' => $data));
require_once('include/queue_fn.php');
add_to_queue($a->contact,NETWORK_GPLUS,$s);
notice(t('Google+ post failed. Queued for retry.').EOL);
}
} else
logger('gpluspost_send: '.$b['uid'].' missing username or password', LOGGER_DEBUG);
}
}
function gpluspost_queue_hook(&$a,&$b) {
$qi = q("SELECT * FROM `queue` WHERE `network` = '%s'",
dbesc(NETWORK_GPLUS)
);
if(! count($qi))
return;
require_once('include/queue_fn.php');
foreach($qi as $x) {
if($x['network'] !== NETWORK_GPLUS)
continue;
logger('gpluspost_queue: run');
$r = q("SELECT `user`.* FROM `user` LEFT JOIN `contact` on `contact`.`uid` = `user`.`uid`
WHERE `contact`.`self` = 1 AND `contact`.`id` = %d LIMIT 1",
intval($x['cid'])
);
if(! count($r))
continue;
$userdata = $r[0];
//logger('gpluspost_queue: fetching userdata '.print_r($userdata, true));
$username = get_pconfig($userdata['uid'],'gpluspost','username');
$password = get_pconfig($userdata['uid'],'gpluspost','password');
$page = get_pconfig($userdata['uid'],'gpluspost','page');
$success = false;
if($username && $password) {
require_once("addon/gpluspost/postToGooglePlus.php");
logger('gpluspost_queue: able to post for user '.$username);
$z = unserialize($x['content']);
$data = $z['post'];
// $z['url']
logger('gpluspost_send: data: '.print_r($data, true), LOGGER_DATA);
$loginError = doConnectToGooglePlus2($username, $password);
if (!$loginError) {
if ($data["url"] != "")
$lnk = doGetGoogleUrlInfo2($data["url"]);
elseif ($data["image"] != "")
$lnk = array('img'=>$data["image"]);
else
$lnk = "";
// Send a special blank to identify the post through the "fromgplus" addon
$blank = html_entity_decode("&#x00A0;", ENT_QUOTES, 'UTF-8');
doPostToGooglePlus2($data["text"].$blank, $lnk, $page);
logger('gpluspost_queue: send '.$userdata['uid'].' success', LOGGER_DEBUG);
$success = true;
remove_queue_item($x['id']);
} else
logger('gpluspost_queue: send '.$userdata['uid'].' failed '.$loginError, LOGGER_DEBUG);
} else
logger('gpluspost_queue: send '.$userdata['uid'].' missing username or password', LOGGER_DEBUG);
if (!$success) {
logger('gpluspost_queue: delayed');
update_queue_time($x['id']);
}
}
}
function gpluspost_module() {}
function gpluspost_init() {
global $a, $_SERVER;
$uid = 0;
if (isset($a->argv[1])) {
$uid = (int)$a->argv[1];
if ($uid == 0) {
$contacts = q("SELECT `username`, `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1", dbesc($a->argv[1]));
if ($contacts) {
$uid = $contacts[0]["uid"];
$nick = $a->argv[1];
}
} else {
$contacts = q("SELECT `username` FROM `user` WHERE `uid`=%d LIMIT 1", intval($uid));
$nick = $uid;
}
}
header("content-type: application/atom+xml");
echo '<?xml version="1.0" encoding="UTF-8"?>'."\n";
echo '<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">'."\n";
echo "\t".'<title type="html"><![CDATA['.$a->config['sitename'].']]></title>'."\n";
if ($uid != 0) {
echo "\t".'<subtitle type="html"><![CDATA['.$contacts[0]["username"]."]]></subtitle>\n";
echo "\t".'<link rel="self" href="'.$a->get_baseurl().'/gpluspost/'.$nick.'"/>'."\n";
} else
echo "\t".'<link rel="self" href="'.$a->get_baseurl().'/gpluspost"/>'."\n";
echo "\t<id>".$a->get_baseurl()."/</id>\n";
echo "\t".'<link rel="alternate" type="text/html" href="'.$a->get_baseurl().'"/>'."\n";
echo "\t<updated>".date("c")."</updated>\n"; // To-Do
// <rights>Copyright ... </rights>
echo "\t".'<generator uri="'.$a->get_baseurl().'">'.$a->config['sitename'].'</generator>'."\n";
if ($uid != 0) {
$itemlist = get_pconfig($uid,'gpluspost','itemlist');
$items = explode(",", $itemlist);
foreach ($items AS $item)
gpluspost_feeditem($item, $uid);
} else {
$items = q("SELECT `id` FROM `item` WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0 AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' AND `item`.`private` = 0 AND `item`.`wall` = 1 AND `item`.`id` = `item`.`parent` ORDER BY `received` DESC LIMIT 10");
foreach ($items AS $item)
gpluspost_feeditem($item["id"], $uid);
}
echo "</feed>\n";
killme();
}
function gpluspost_feeditem($pid, $uid) {
global $a;
require_once('include/api.php');
require_once('include/bbcode.php');
require_once("include/html2plain.php");
require_once("include/network.php");
$skipwithoutlink = get_pconfig($uid,'gpluspost','skip_without_link');
$items = q("SELECT `uri`, `plink`, `author-link`, `author-name`, `created`, `edited`, `id`, `title`, `body` from `item` WHERE id=%d", intval($pid));
foreach ($items AS $item) {
$item['body'] = bb_CleanPictureLinks($item['body']);
$item['body'] = bb_remove_share_information($item['body'], true);
if ($item["title"] != "")
$item['body'] = "*".$item["title"]."*\n\n".$item['body'];
// Looking for the first image
$image = '';
if(preg_match("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/is",$item['body'],$matches))
$image = $matches[3];
if ($image == '')
if(preg_match("/\[img\](.*?)\[\/img\]/is",$item['body'],$matches))
$image = $matches[1];
$multipleimages = (strpos($item['body'], "[img") != strrpos($item['body'], "[img"));
// When saved into the database the content is sent through htmlspecialchars
// That means that we have to decode all image-urls
$image = htmlspecialchars_decode($image);
$link = '';
// look for bookmark-bbcode and handle it with priority
if(preg_match("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/is",$item['body'],$matches))
$link = $matches[1];
$multiplelinks = (strpos($item['body'], "[bookmark") != strrpos($item['body'], "[bookmark"));
$body = $item['body'];
$body = preg_replace("(\[b\](.*?)\[\/b\])ism",'*$1*',$body);
$body = preg_replace("(\[i\](.*?)\[\/i\])ism",'_$1_',$body);
$body = preg_replace("(\[s\](.*?)\[\/s\])ism",'-$1-',$body);
// At first convert the text to html
$html = bbcode(api_clean_plain_items($body), false, false, 2);
// Then convert it to plain text
$msg = trim(html2plain($html, 0, true));
$msg = html_entity_decode($msg,ENT_QUOTES,'UTF-8');
// If there is no bookmark element then take the first link
if ($link == '') {
$links = collecturls($html);
if (sizeof($links) > 0) {
reset($links);
$link = current($links);
}
$multiplelinks = (sizeof($links) > 1);
if ($multiplelinks) {
$html2 = bbcode($msg, false, false);
$links2 = collecturls($html2);
if (sizeof($links2) > 0) {
reset($links2);
$link = current($links2);
$multiplelinks = (sizeof($links2) > 1);
}
}
}
$msglink = "";
if ($multiplelinks)
$msglink = $item["plink"];
else if ($link != "")
$msglink = $link;
else if ($multipleimages)
$msglink = $item["plink"];
else if ($image != "")
$msglink = $image;
if (($msglink == "") && $skipwithoutlink)
continue;
else if ($msglink == "")
$msglink = $item["plink"];
// Fetching the title - or the first line
if ($item["title"] != "")
$title = $item["title"];
else {
$lines = explode("\n", $msg);
$title = $lines[0];
}
//if ($image != $msglink)
// $html = trim(str_replace($msglink, "", $html));
$title = trim(str_replace($msglink, "", $title));
$msglink = original_url($msglink);
if ($uid == 0)
$title = $item["author-name"].": ".$title;
$msglink = htmlspecialchars(html_entity_decode($msglink));
if (strpos($msg, $msglink) == 0)
$msg .= "\n".$msglink;
$msg = nl2br($msg);
$title = str_replace("&", "&amp;", $title);
//$html = str_replace("&", "&amp;", $html);
echo "\t".'<entry xmlns="http://www.w3.org/2005/Atom">'."\n";
echo "\t\t".'<title type="html" xml:space="preserve"><![CDATA['.$title."]]></title>\n";
echo "\t\t".'<link rel="alternate" type="text/html" href="'.$msglink.'" />'."\n";
// <link rel="enclosure" type="audio/mpeg" length="1337" href="http://example.org/audio/ph34r_my_podcast.mp3"/>
echo "\t\t<id>".$item["uri"]."</id>\n";
echo "\t\t<updated>".date("c", strtotime($item["edited"]))."</updated>\n";
echo "\t\t<published>".date("c", strtotime($item["created"]))."</published>\n";
echo "\t\t<author>\n\t\t\t<name><![CDATA[".$item["author-name"]."]]></name>\n";
echo "\t\t\t<uri>".$item["author-link"]."</uri>\n\t\t</author>\n";
//echo '<content type="image/png" src="http://media.example.org/the_beach.png"/>';
echo "\t\t".'<content type="html" xml:space="preserve" xml:base="'.$item["plink"].'"><![CDATA['.$msg."]]></content>\n";
echo "\t</entry>\n";
}
}

View file

@ -0,0 +1,66 @@
# ADDON gpluspost
# Copyright (C)
# This file is distributed under the same license as the Friendica gpluspost addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-12 16:50+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gpluspost.php:39
msgid "Post to Google+"
msgstr ""
#: gpluspost.php:94
msgid "Enable Google+ Post Plugin"
msgstr ""
#: gpluspost.php:109
msgid "Google+ username"
msgstr ""
#: gpluspost.php:114
msgid "Google+ password"
msgstr ""
#: gpluspost.php:119
msgid "Google+ page number"
msgstr ""
#: gpluspost.php:125
msgid "Post to Google+ by default"
msgstr ""
#: gpluspost.php:130
msgid "Do not prevent posting loops"
msgstr ""
#: gpluspost.php:136
msgid "Skip messages without links"
msgstr ""
#: gpluspost.php:143
msgid "Mirror all public posts"
msgstr ""
#: gpluspost.php:147
msgid "Mirror Google Account ID"
msgstr ""
#: gpluspost.php:154
msgid "Save Settings"
msgstr ""
#: gpluspost.php:310
msgid "Google+ post failed. Queued for retry."
msgstr ""

View file

@ -0,0 +1,68 @@
# ADDON gpluspost
# Copyright (C)
# This file is distributed under the same license as the Friendica gpluspost addon package.
#
#
# Translators:
# Michal Šupler <msupler@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-23 14:44+0200\n"
"PO-Revision-Date: 2014-07-07 19:09+0000\n"
"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: gpluspost.php:38
msgid "Post to Google+"
msgstr "Příspěvek na Google+"
#: gpluspost.php:93
msgid "Enable Google+ Post Plugin"
msgstr "Povolit Google+ Plugin"
#: gpluspost.php:108
msgid "Google+ username"
msgstr "Google+ uživatelské jméno"
#: gpluspost.php:113
msgid "Google+ password"
msgstr "Google+ heslo"
#: gpluspost.php:118
msgid "Google+ page number"
msgstr "Google+ číslo stránky"
#: gpluspost.php:124
msgid "Post to Google+ by default"
msgstr "Defaultně zaslat na Google+"
#: gpluspost.php:129
msgid "Do not prevent posting loops"
msgstr "Nezabraňovat cyklení příspěvků "
#: gpluspost.php:135
msgid "Skip messages without links"
msgstr "Přeskakovat zprávy bez odkazů"
#: gpluspost.php:142
msgid "Mirror all public posts"
msgstr "Zrcadlit všechny veřejné příspěvky"
#: gpluspost.php:146
msgid "Mirror Google Account ID"
msgstr "ID účtu Google pro zrcadlení"
#: gpluspost.php:153
msgid "Save Settings"
msgstr "Uložit Nastavení"
#: gpluspost.php:308
msgid "Google+ post failed. Queued for retry."
msgstr "Zaslání příspěvku na Google+ selhalo. Příspěvek byl zařazen do fronty pro opakované odeslání."

View file

@ -0,0 +1,19 @@
<?php
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
}}
;
$a->strings["Post to Google+"] = "Příspěvek na Google+";
$a->strings["Enable Google+ Post Plugin"] = "Povolit Google+ Plugin";
$a->strings["Google+ username"] = "Google+ uživatelské jméno";
$a->strings["Google+ password"] = "Google+ heslo";
$a->strings["Google+ page number"] = "Google+ číslo stránky";
$a->strings["Post to Google+ by default"] = "Defaultně zaslat na Google+";
$a->strings["Do not prevent posting loops"] = "Nezabraňovat cyklení příspěvků ";
$a->strings["Skip messages without links"] = "Přeskakovat zprávy bez odkazů";
$a->strings["Mirror all public posts"] = "Zrcadlit všechny veřejné příspěvky";
$a->strings["Mirror Google Account ID"] = "ID účtu Google pro zrcadlení";
$a->strings["Save Settings"] = "Uložit Nastavení";
$a->strings["Google+ post failed. Queued for retry."] = "Zaslání příspěvku na Google+ selhalo. Příspěvek byl zařazen do fronty pro opakované odeslání.";

View file

@ -0,0 +1,68 @@
# ADDON gpluspost
# Copyright (C)
# This file is distributed under the same license as the Friendica gpluspost addon package.
#
#
# Translators:
# Abrax <webmaster@a-zwenkau.de>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-23 14:44+0200\n"
"PO-Revision-Date: 2014-10-14 09:17+0000\n"
"Last-Translator: Abrax <webmaster@a-zwenkau.de>\n"
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: gpluspost.php:38
msgid "Post to Google+"
msgstr "An Google+ senden"
#: gpluspost.php:93
msgid "Enable Google+ Post Plugin"
msgstr "Google+ Plugin aktivieren"
#: gpluspost.php:108
msgid "Google+ username"
msgstr "Google+ Benutzername"
#: gpluspost.php:113
msgid "Google+ password"
msgstr "Google+ Passwort"
#: gpluspost.php:118
msgid "Google+ page number"
msgstr "Google+ Seitennummer"
#: gpluspost.php:124
msgid "Post to Google+ by default"
msgstr "Sende standardmäßig an Google+"
#: gpluspost.php:129
msgid "Do not prevent posting loops"
msgstr "Posten von Schleifen nicht verhindern"
#: gpluspost.php:135
msgid "Skip messages without links"
msgstr "Überspringe Nachrichten ohne Links"
#: gpluspost.php:142
msgid "Mirror all public posts"
msgstr "Spiegle alle öffentlichen Nachrichten"
#: gpluspost.php:146
msgid "Mirror Google Account ID"
msgstr "Spiegle Google Account ID"
#: gpluspost.php:153
msgid "Save Settings"
msgstr "Einstellungen speichern"
#: gpluspost.php:308
msgid "Google+ post failed. Queued for retry."
msgstr "Veröffentlichung bei Google+ gescheitert. Wir versuchen es später erneut."

View file

@ -0,0 +1,19 @@
<?php
if(! function_exists("string_plural_select_de")) {
function string_plural_select_de($n){
return ($n != 1);;
}}
;
$a->strings["Post to Google+"] = "An Google+ senden";
$a->strings["Enable Google+ Post Plugin"] = "Google+ Plugin aktivieren";
$a->strings["Google+ username"] = "Google+ Benutzername";
$a->strings["Google+ password"] = "Google+ Passwort";
$a->strings["Google+ page number"] = "Google+ Seitennummer";
$a->strings["Post to Google+ by default"] = "Sende standardmäßig an Google+";
$a->strings["Do not prevent posting loops"] = "Posten von Schleifen nicht verhindern";
$a->strings["Skip messages without links"] = "Überspringe Nachrichten ohne Links";
$a->strings["Mirror all public posts"] = "Spiegle alle öffentlichen Nachrichten";
$a->strings["Mirror Google Account ID"] = "Spiegle Google Account ID";
$a->strings["Save Settings"] = "Einstellungen speichern";
$a->strings["Google+ post failed. Queued for retry."] = "Veröffentlichung bei Google+ gescheitert. Wir versuchen es später erneut.";

View file

@ -0,0 +1,68 @@
# ADDON gpluspost
# Copyright (C)
# This file is distributed under the same license as the Friendica gpluspost addon package.
#
#
# Translators:
# Albert, 2016
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-12 16:50+0000\n"
"PO-Revision-Date: 2016-11-16 16:43+0000\n"
"Last-Translator: Albert\n"
"Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: gpluspost.php:39
msgid "Post to Google+"
msgstr "Publicar en Google+"
#: gpluspost.php:94
msgid "Enable Google+ Post Plugin"
msgstr "Habilitar el plugin de publicación de Google+"
#: gpluspost.php:109
msgid "Google+ username"
msgstr "Nombre de usuario de Google+"
#: gpluspost.php:114
msgid "Google+ password"
msgstr "Contraseña de Google+"
#: gpluspost.php:119
msgid "Google+ page number"
msgstr "Número de página de Google+"
#: gpluspost.php:125
msgid "Post to Google+ by default"
msgstr "Publicar en Google+ por defecto"
#: gpluspost.php:130
msgid "Do not prevent posting loops"
msgstr "No impedir los bucles de publicación"
#: gpluspost.php:136
msgid "Skip messages without links"
msgstr "Saltar los mensajes sin enlaces"
#: gpluspost.php:143
msgid "Mirror all public posts"
msgstr "Reflejar todas las entradas públicas"
#: gpluspost.php:147
msgid "Mirror Google Account ID"
msgstr "Reflecar la ID de Cuenta de Google"
#: gpluspost.php:154
msgid "Save Settings"
msgstr "Guardar ajustes"
#: gpluspost.php:310
msgid "Google+ post failed. Queued for retry."
msgstr "La publicación en Google+ falló. En cola para reintentarlo."

View file

@ -0,0 +1,19 @@
<?php
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
return ($n != 1);;
}}
;
$a->strings["Post to Google+"] = "Publicar en Google+";
$a->strings["Enable Google+ Post Plugin"] = "Habilitar el plugin de publicación de Google+";
$a->strings["Google+ username"] = "Nombre de usuario de Google+";
$a->strings["Google+ password"] = "Contraseña de Google+";
$a->strings["Google+ page number"] = "Número de página de Google+";
$a->strings["Post to Google+ by default"] = "Publicar en Google+ por defecto";
$a->strings["Do not prevent posting loops"] = "No impedir los bucles de publicación";
$a->strings["Skip messages without links"] = "Saltar los mensajes sin enlaces";
$a->strings["Mirror all public posts"] = "Reflejar todas las entradas públicas";
$a->strings["Mirror Google Account ID"] = "Reflecar la ID de Cuenta de Google";
$a->strings["Save Settings"] = "Guardar ajustes";
$a->strings["Google+ post failed. Queued for retry."] = "La publicación en Google+ falló. En cola para reintentarlo.";

View file

@ -0,0 +1,68 @@
# ADDON gpluspost
# Copyright (C)
# This file is distributed under the same license as the Friendica gpluspost addon package.
#
#
# Translators:
# fabrixxm <fabrix.xm@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-12 16:50+0000\n"
"PO-Revision-Date: 2014-09-10 12:14+0000\n"
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: gpluspost.php:39
msgid "Post to Google+"
msgstr "Invia a Google+"
#: gpluspost.php:94
msgid "Enable Google+ Post Plugin"
msgstr "Abilita il plugin di invio a Google+"
#: gpluspost.php:109
msgid "Google+ username"
msgstr "Nome utente Google+"
#: gpluspost.php:114
msgid "Google+ password"
msgstr "Password Google+"
#: gpluspost.php:119
msgid "Google+ page number"
msgstr "Numero pagina Google+"
#: gpluspost.php:125
msgid "Post to Google+ by default"
msgstr "Invia sempre a Google+"
#: gpluspost.php:130
msgid "Do not prevent posting loops"
msgstr "Non prevenire i loop di invio"
#: gpluspost.php:136
msgid "Skip messages without links"
msgstr "Salta i messaggi senza collegamenti"
#: gpluspost.php:143
msgid "Mirror all public posts"
msgstr "Ricopia tutti i post pubblici"
#: gpluspost.php:147
msgid "Mirror Google Account ID"
msgstr "Ricopia l'ID Google Account"
#: gpluspost.php:154
msgid "Save Settings"
msgstr "Salva Impostazioni"
#: gpluspost.php:310
msgid "Google+ post failed. Queued for retry."
msgstr "Invio a Google+ fallito. In attesa di riprovare."

View file

@ -0,0 +1,19 @@
<?php
if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
return ($n != 1);;
}}
;
$a->strings["Post to Google+"] = "Invia a Google+";
$a->strings["Enable Google+ Post Plugin"] = "Abilita il plugin di invio a Google+";
$a->strings["Google+ username"] = "Nome utente Google+";
$a->strings["Google+ password"] = "Password Google+";
$a->strings["Google+ page number"] = "Numero pagina Google+";
$a->strings["Post to Google+ by default"] = "Invia sempre a Google+";
$a->strings["Do not prevent posting loops"] = "Non prevenire i loop di invio";
$a->strings["Skip messages without links"] = "Salta i messaggi senza collegamenti";
$a->strings["Mirror all public posts"] = "Ricopia tutti i post pubblici";
$a->strings["Mirror Google Account ID"] = "Ricopia l'ID Google Account";
$a->strings["Save Settings"] = "Salva Impostazioni";
$a->strings["Google+ post failed. Queued for retry."] = "Invio a Google+ fallito. In attesa di riprovare.";

View file

@ -0,0 +1,68 @@
# ADDON gpluspost
# Copyright (C)
# This file is distributed under the same license as the Friendica gpluspost addon package.
#
#
# Translators:
# Beatriz Vital <vitalb@riseup.net>, 2016
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-23 14:44+0200\n"
"PO-Revision-Date: 2016-08-19 20:36+0000\n"
"Last-Translator: Beatriz Vital <vitalb@riseup.net>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/Friendica/friendica/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: gpluspost.php:38
msgid "Post to Google+"
msgstr "Publicar no Google+"
#: gpluspost.php:93
msgid "Enable Google+ Post Plugin"
msgstr "Habilitar plug-in para publicar no Google+"
#: gpluspost.php:108
msgid "Google+ username"
msgstr ""
#: gpluspost.php:113
msgid "Google+ password"
msgstr "Senha do Google+"
#: gpluspost.php:118
msgid "Google+ page number"
msgstr ""
#: gpluspost.php:124
msgid "Post to Google+ by default"
msgstr "Publicar no Google+ por padrão"
#: gpluspost.php:129
msgid "Do not prevent posting loops"
msgstr ""
#: gpluspost.php:135
msgid "Skip messages without links"
msgstr ""
#: gpluspost.php:142
msgid "Mirror all public posts"
msgstr ""
#: gpluspost.php:146
msgid "Mirror Google Account ID"
msgstr ""
#: gpluspost.php:153
msgid "Save Settings"
msgstr "Salvar Configurações"
#: gpluspost.php:308
msgid "Google+ post failed. Queued for retry."
msgstr "Falha ao publicar no Google+. Na fila para tentar novamente."

View file

@ -0,0 +1,19 @@
<?php
if(! function_exists("string_plural_select_pt_br")) {
function string_plural_select_pt_br($n){
return ($n > 1);;
}}
;
$a->strings["Post to Google+"] = "Publicar no Google+";
$a->strings["Enable Google+ Post Plugin"] = "Habilitar plug-in para publicar no Google+";
$a->strings["Google+ username"] = "";
$a->strings["Google+ password"] = "Senha do Google+";
$a->strings["Google+ page number"] = "";
$a->strings["Post to Google+ by default"] = "Publicar no Google+ por padrão";
$a->strings["Do not prevent posting loops"] = "";
$a->strings["Skip messages without links"] = "";
$a->strings["Mirror all public posts"] = "";
$a->strings["Mirror Google Account ID"] = "";
$a->strings["Save Settings"] = "Salvar Configurações";
$a->strings["Google+ post failed. Queued for retry."] = "Falha ao publicar no Google+. Na fila para tentar novamente.";

View file

@ -0,0 +1,67 @@
# ADDON gpluspost
# Copyright (C)
# This file is distributed under the same license as the Friendica gpluspost addon package.
#
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-23 14:44+0200\n"
"PO-Revision-Date: 2014-07-08 11:52+0000\n"
"Last-Translator: Arian - Cazare Muncitori <arianserv@gmail.com>\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/friendica/language/ro_RO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ro_RO\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#: gpluspost.php:38
msgid "Post to Google+"
msgstr "Postați pe Google+"
#: gpluspost.php:93
msgid "Enable Google+ Post Plugin"
msgstr "Activare Modul Postare Google+"
#: gpluspost.php:108
msgid "Google+ username"
msgstr "Utilizator Google+ "
#: gpluspost.php:113
msgid "Google+ password"
msgstr "Parola Google+"
#: gpluspost.php:118
msgid "Google+ page number"
msgstr "Numărul paginii Google+ "
#: gpluspost.php:124
msgid "Post to Google+ by default"
msgstr "Postați implicit pe Google+"
#: gpluspost.php:129
msgid "Do not prevent posting loops"
msgstr "Nu se previn înlănțuirile postării"
#: gpluspost.php:135
msgid "Skip messages without links"
msgstr "Se omit mesajele fără legături"
#: gpluspost.php:142
msgid "Mirror all public posts"
msgstr "Reproducere pentru toate postările publice"
#: gpluspost.php:146
msgid "Mirror Google Account ID"
msgstr "Reproducere ID Cont Google"
#: gpluspost.php:153
msgid "Save Settings"
msgstr "Salvare Configurări"
#: gpluspost.php:308
msgid "Google+ post failed. Queued for retry."
msgstr "Postarea pe Google+ a eșuat. S-a pus în așteptare pentru reîncercare."

View file

@ -0,0 +1,19 @@
<?php
if(! function_exists("string_plural_select_ro")) {
function string_plural_select_ro($n){
return ($n==1?0:((($n%100>19)||(($n%100==0)&&($n!=0)))?2:1));;
}}
;
$a->strings["Post to Google+"] = "Postați pe Google+";
$a->strings["Enable Google+ Post Plugin"] = "Activare Modul Postare Google+";
$a->strings["Google+ username"] = "Utilizator Google+ ";
$a->strings["Google+ password"] = "Parola Google+";
$a->strings["Google+ page number"] = "Numărul paginii Google+ ";
$a->strings["Post to Google+ by default"] = "Postați implicit pe Google+";
$a->strings["Do not prevent posting loops"] = "Nu se previn înlănțuirile postării";
$a->strings["Skip messages without links"] = "Se omit mesajele fără legături";
$a->strings["Mirror all public posts"] = "Reproducere pentru toate postările publice";
$a->strings["Mirror Google Account ID"] = "Reproducere ID Cont Google";
$a->strings["Save Settings"] = "Salvare Configurări";
$a->strings["Google+ post failed. Queued for retry."] = "Postarea pe Google+ a eșuat. S-a pus în așteptare pentru reîncercare.";

View file

@ -0,0 +1,68 @@
# ADDON gpluspost
# Copyright (C)
# This file is distributed under the same license as the Friendica gpluspost addon package.
#
#
# Translators:
# Stanislav N. <pztrn@pztrn.name>, 2017
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-12 16:50+0000\n"
"PO-Revision-Date: 2017-04-08 17:19+0000\n"
"Last-Translator: Stanislav N. <pztrn@pztrn.name>\n"
"Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: gpluspost.php:39
msgid "Post to Google+"
msgstr "Написать в Google+"
#: gpluspost.php:94
msgid "Enable Google+ Post Plugin"
msgstr "Включить плагин Google+ Post"
#: gpluspost.php:109
msgid "Google+ username"
msgstr "Имя пользователя Google+"
#: gpluspost.php:114
msgid "Google+ password"
msgstr "Пароль Google+"
#: gpluspost.php:119
msgid "Google+ page number"
msgstr "Номер страницы Google+"
#: gpluspost.php:125
msgid "Post to Google+ by default"
msgstr "Отправлять в Google+ по умолчанию"
#: gpluspost.php:130
msgid "Do not prevent posting loops"
msgstr "Не предотвращать петли отправки"
#: gpluspost.php:136
msgid "Skip messages without links"
msgstr "Пропускать сообщения без ссылок"
#: gpluspost.php:143
msgid "Mirror all public posts"
msgstr "Зеркалировать все публичные сообщения"
#: gpluspost.php:147
msgid "Mirror Google Account ID"
msgstr "Зеркалировать Google Account ID"
#: gpluspost.php:154
msgid "Save Settings"
msgstr "Сохранить настройки"
#: gpluspost.php:310
msgid "Google+ post failed. Queued for retry."
msgstr "Ошибка отправки сообщения в Google+. В очереди на еще одну попытку."

View file

@ -0,0 +1,19 @@
<?php
if(! function_exists("string_plural_select_ru")) {
function string_plural_select_ru($n){
return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);;
}}
;
$a->strings["Post to Google+"] = "Написать в Google+";
$a->strings["Enable Google+ Post Plugin"] = "Включить плагин Google+ Post";
$a->strings["Google+ username"] = "Имя пользователя Google+";
$a->strings["Google+ password"] = "Пароль Google+";
$a->strings["Google+ page number"] = "Номер страницы Google+";
$a->strings["Post to Google+ by default"] = "Отправлять в Google+ по умолчанию";
$a->strings["Do not prevent posting loops"] = "Не предотвращать петли отправки";
$a->strings["Skip messages without links"] = "Пропускать сообщения без ссылок";
$a->strings["Mirror all public posts"] = "Зеркалировать все публичные сообщения";
$a->strings["Mirror Google Account ID"] = "Зеркалировать Google Account ID";
$a->strings["Save Settings"] = "Сохранить настройки";
$a->strings["Google+ post failed. Queued for retry."] = "Ошибка отправки сообщения в Google+. В очереди на еще одну попытку.";

View file

69
poormancron/poormancron.php Executable file
View file

@ -0,0 +1,69 @@
<?php
/**
* Name: Poor Man Cron
* Description: Execute updates on pageviews, without the need of commandline php - only for use in total desperation as page loads will take forever
* Version: 1.2
* Author: Fabio Comuni <http://kirgroup.com/profile/fabrix>
* Status: Unsupported
*/
function poormancron_install() {
// check for command line php
$a = get_app();
$ex = Array();
$ex[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
$ex[1] = dirname(dirname(dirname(__file__)))."/testargs.php";
$ex[2] = "test";
$out = exec(implode(" ", $ex));
if ($out==="test") {
set_config('poormancron','usecli',1);
logger("poormancron will use cli php");
} else {
set_config('poormancron','usecli',0);
logger("poormancron will NOT use cli php");
}
register_hook('page_end', 'addon/poormancron/poormancron.php', 'poormancron_hook');
register_hook('proc_run', 'addon/poormancron/poormancron.php','poormancron_procrun');
logger("installed poormancron");
}
function poormancron_uninstall() {
unregister_hook('page_end', 'addon/poormancron/poormancron.php', 'poormancron_hook');
unregister_hook('proc_run', 'addon/poormancron/poormancron.php','poormancron_procrun');
logger("removed poormancron");
}
function poormancron_hook(&$a,&$b) {
return; // deactivated
//$now = time();
//$lastupdate = get_config('poormancron', 'lastupdate');
// 300 secs, 5 mins
//if (!$lastupdate || ($now-$lastupdate)>300) {
// set_config('poormancron','lastupdate', $now);
// proc_run('php',"include/poller.php");
//}
}
function poormancron_procrun(&$a, &$arr) {
return; // deactivated
if (get_config('poormancron','usecli')==1) return;
$argv = $arr['args'];
$arr['run_cmd'] = false;
logger("poormancron procrun ".implode(", ",$argv));
array_shift($argv);
$argc = count($argv);
logger("poormancron procrun require_once ".basename($argv[0]));
require_once(basename($argv[0]));
$funcname=str_replace(".php", "", basename($argv[0]))."_run";
$funcname($argv, $argc);
}
?>

View file

@ -0,0 +1,58 @@
# ADDON posterous
# Copyright (C)
# This file is distributed under the same license as the Friendica posterous addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: posterous.php:37
msgid "Post to Posterous"
msgstr ""
#: posterous.php:70
msgid "Posterous Post Settings"
msgstr ""
#: posterous.php:72
msgid "Enable Posterous Post Plugin"
msgstr ""
#: posterous.php:77
msgid "Posterous login"
msgstr ""
#: posterous.php:82
msgid "Posterous password"
msgstr ""
#: posterous.php:87
msgid "Posterous site ID"
msgstr ""
#: posterous.php:92
msgid "Posterous API token"
msgstr ""
#: posterous.php:97
msgid "Post to Posterous by default"
msgstr ""
#: posterous.php:103
msgid "Submit"
msgstr ""
#: posterous.php:189
msgid "Post from Friendica"
msgstr ""

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Post to Posterous"] = "enviament a Posterous";
$a->strings["Posterous Post Settings"] = "Configuració d'Enviaments a Posterous";
$a->strings["Enable Posterous Post Plugin"] = "Habilitar plugin d'Enviament de Posterous";
$a->strings["Posterous login"] = "Inici de sessió a Posterous";
$a->strings["Posterous password"] = "Contrasenya a Posterous";
$a->strings["Posterous site ID"] = "ID al lloc Posterous";
$a->strings["Posterous API token"] = "Posterous API token";
$a->strings["Post to Posterous by default"] = "Enviar a Posterous per defecte";
$a->strings["Submit"] = "Enviar";
$a->strings["Post from Friendica"] = "Enviament des de Friendica";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Post to Posterous"] = "Poslat na Posterous";
$a->strings["Posterous Post Settings"] = "Posterous nastavení příspěvků";
$a->strings["Enable Posterous Post Plugin"] = "Umožnit Posterous Plugin";
$a->strings["Posterous login"] = "Posterous login";
$a->strings["Posterous password"] = "Posterous heslo";
$a->strings["Posterous site ID"] = "Posterous site ID";
$a->strings["Posterous API token"] = "Posterous API token";
$a->strings["Post to Posterous by default"] = "Příspěvky standardně posílat na Posterous";
$a->strings["Submit"] = "Odeslat";
$a->strings["Post from Friendica"] = "Příspěvek z Friendica";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Post to Posterous"] = "Nach Posterous senden";
$a->strings["Posterous Post Settings"] = "Posterous Beitrags-Einstellungen";
$a->strings["Enable Posterous Post Plugin"] = "Posterous-Plugin aktivieren";
$a->strings["Posterous login"] = "Posterous-Anmeldename";
$a->strings["Posterous password"] = "Posterous-Passwort";
$a->strings["Posterous site ID"] = "Posterous site ID";
$a->strings["Posterous API token"] = "Posterous API token";
$a->strings["Post to Posterous by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous";
$a->strings["Submit"] = "Senden";
$a->strings["Post from Friendica"] = "Beitrag via Friendica";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Post to Posterous"] = "Afiŝi al Posterous";
$a->strings["Posterous Post Settings"] = "Agordoj pri afiŝoj ĉe Posterous";
$a->strings["Enable Posterous Post Plugin"] = "Ŝalti la Poserous-afiŝo kromprogramon";
$a->strings["Posterous login"] = "Posterous salutnomo";
$a->strings["Posterous password"] = "Posterous pasvorto";
$a->strings["Posterous site ID"] = "Idento de Posterous retejo";
$a->strings["Posterous API token"] = "API ĵetono de Posterous retejo";
$a->strings["Post to Posterous by default"] = "Defaŭlte afiŝi al Posterous";
$a->strings["Submit"] = "Sendi";
$a->strings["Post from Friendica"] = "Afiŝo de Friendica";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Post to Posterous"] = "Publicar en Posterous";
$a->strings["Posterous Post Settings"] = "Configuración de las publicaciones en Posterous";
$a->strings["Enable Posterous Post Plugin"] = "Activar el módulo de publicación en Posterous";
$a->strings["Posterous login"] = "Entrar en Posterous";
$a->strings["Posterous password"] = "Contraseña de Posterous";
$a->strings["Posterous site ID"] = "ID de Posterous";
$a->strings["Posterous API token"] = "API de Posterous";
$a->strings["Post to Posterous by default"] = "Publicar en Posterous por defecto";
$a->strings["Submit"] = "Envíar";
$a->strings["Post from Friendica"] = "Publicado desde Friendica";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Post to Posterous"] = "Envoyer à Posterous";
$a->strings["Posterous Post Settings"] = "Réglages de l'envoi à Posterous";
$a->strings["Enable Posterous Post Plugin"] = "Activer l'envoi à Posterous";
$a->strings["Posterous login"] = "Login Posterous";
$a->strings["Posterous password"] = "Mot de passe";
$a->strings["Posterous site ID"] = "ID du site Posterous";
$a->strings["Posterous API token"] = "Clé d'API Posterous";
$a->strings["Post to Posterous by default"] = "Envoyer à Posterous par défaut";
$a->strings["Submit"] = "Envoyer";
$a->strings["Post from Friendica"] = "Publier depuis Friendica";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Post to Posterous"] = "Senda færslu á Posterous";
$a->strings["Posterous Post Settings"] = "Stilla Posterous Post";
$a->strings["Enable Posterous Post Plugin"] = "Kveðja á Posterous Post viðbót ";
$a->strings["Posterous login"] = "Posterous notendanafn";
$a->strings["Posterous password"] = "Posterous aðgangsorð";
$a->strings["Posterous site ID"] = "";
$a->strings["Posterous API token"] = "";
$a->strings["Post to Posterous by default"] = "Sjálfgefið láta færslur flæða á Posterous";
$a->strings["Submit"] = "Senda inn";
$a->strings["Post from Friendica"] = "Færslur frá Friendica";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Post to Posterous"] = "Invia a Posterous";
$a->strings["Posterous Post Settings"] = "Impostazioni di invio a Posterous";
$a->strings["Enable Posterous Post Plugin"] = "Abilita il plugin di invio a Posterous";
$a->strings["Posterous login"] = "Posterous login";
$a->strings["Posterous password"] = "Posterous password";
$a->strings["Posterous site ID"] = "";
$a->strings["Posterous API token"] = "";
$a->strings["Post to Posterous by default"] = "Invia sempre a Posterous";
$a->strings["Submit"] = "Invia";
$a->strings["Post from Friendica"] = "Messaggio da Friendica";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Post to Posterous"] = "";
$a->strings["Posterous Post Settings"] = "";
$a->strings["Enable Posterous Post Plugin"] = "";
$a->strings["Posterous login"] = "";
$a->strings["Posterous password"] = "";
$a->strings["Posterous site ID"] = "";
$a->strings["Posterous API token"] = "";
$a->strings["Post to Posterous by default"] = "";
$a->strings["Submit"] = "Lagre";
$a->strings["Post from Friendica"] = "";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Post to Posterous"] = "";
$a->strings["Posterous Post Settings"] = "";
$a->strings["Enable Posterous Post Plugin"] = "";
$a->strings["Posterous login"] = "";
$a->strings["Posterous password"] = "";
$a->strings["Posterous site ID"] = "";
$a->strings["Posterous API token"] = "";
$a->strings["Post to Posterous by default"] = "";
$a->strings["Submit"] = "Potwierdź";
$a->strings["Post from Friendica"] = "Post z Friendica";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Post to Posterous"] = "Postar no Posterous";
$a->strings["Posterous Post Settings"] = "Configurações de Postagem do Posterous";
$a->strings["Enable Posterous Post Plugin"] = "Habilitar Plugin de Postagem do Posterous";
$a->strings["Posterous login"] = "Login do Posterous";
$a->strings["Posterous password"] = "Senha do Posterous";
$a->strings["Posterous site ID"] = "";
$a->strings["Posterous API token"] = "";
$a->strings["Post to Posterous by default"] = "Postar para o Posterous como padrão";
$a->strings["Submit"] = "Enviar";
$a->strings["Post from Friendica"] = "Postar do Friendica";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Post to Posterous"] = "";
$a->strings["Posterous Post Settings"] = "";
$a->strings["Enable Posterous Post Plugin"] = "Включить Posterous плагин сообщений";
$a->strings["Posterous login"] = "";
$a->strings["Posterous password"] = "";
$a->strings["Posterous site ID"] = "";
$a->strings["Posterous API token"] = "";
$a->strings["Post to Posterous by default"] = "";
$a->strings["Submit"] = "Подтвердить";
$a->strings["Post from Friendica"] = "Сообщение от Friendica";

View file

@ -0,0 +1,3 @@
<?php
$a->strings["Submit"] = "Spara";

View file

@ -0,0 +1,12 @@
<?php
$a->strings["Post to Posterous"] = "发送往Posterous";
$a->strings["Posterous Post Settings"] = "Posterous发送设置";
$a->strings["Enable Posterous Post Plugin"] = "使Posterous发送插件可用的";
$a->strings["Posterous login"] = "Posterous登记名";
$a->strings["Posterous password"] = "Posterous密码";
$a->strings["Posterous site ID"] = "Posterous网站身份证明";
$a->strings["Posterous API token"] = "Posterous API令牌";
$a->strings["Post to Posterous by default"] = "默认地发送往Posterous";
$a->strings["Submit"] = "提交";
$a->strings["Post from Friendica"] = "文章从Friendica";

16
posterous/posterous.css Executable file
View file

@ -0,0 +1,16 @@
#posterous-enable-label, #posterous-username-label, #posterous-password-label, #posterous-site_id-label, #posterous-api_token-label, #posterous-bydefault-label {
float: left;
width: 200px;
margin-top: 10px;
}
#posterous-checkbox, #posterous-username, #posterous-password, #posterous-site_id, #posterous-api_token, #posterous-bydefault {
float: left;
margin-top: 10px;
}
#posterous-submit {
margin-top: 15px;
}

215
posterous/posterous.php Executable file
View file

@ -0,0 +1,215 @@
<?php
/**
* Name: Posterous Post Connector
* Description: Post to Posterous accounts
* Version: 1.0
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
* Author: Tony Baldwin <https://free-haven.org/u/tony>
* Status: Unsupported
*/
function posterous_install() {
register_hook('post_local', 'addon/posterous/posterous.php', 'posterous_post_local');
register_hook('notifier_normal', 'addon/posterous/posterous.php', 'posterous_send');
register_hook('jot_networks', 'addon/posterous/posterous.php', 'posterous_jot_nets');
register_hook('connector_settings', 'addon/posterous/posterous.php', 'posterous_settings');
register_hook('connector_settings_post', 'addon/posterous/posterous.php', 'posterous_settings_post');
}
function posterous_uninstall() {
unregister_hook('post_local', 'addon/posterous/posterous.php', 'posterous_post_local');
unregister_hook('notifier_normal', 'addon/posterous/posterous.php', 'posterous_send');
unregister_hook('jot_networks', 'addon/posterous/posterous.php', 'posterous_jot_nets');
unregister_hook('connector_settings', 'addon/posterous/posterous.php', 'posterous_settings');
unregister_hook('connector_settings_post', 'addon/posterous/posterous.php', 'posterous_settings_post');
}
function posterous_jot_nets(&$a,&$b) {
if(! local_user())
return;
$pstr_post = get_pconfig(local_user(),'posterous','post');
if(intval($pstr_post) == 1) {
$pstr_defpost = get_pconfig(local_user(),'posterous','post_by_default');
$selected = ((intval($pstr_defpost) == 1) ? ' checked="checked" ' : '');
$b .= '<div class="profile-jot-net"><input type="checkbox" name="posterous_enable"' . $selected . ' value="1" /> '
. t('Post to Posterous') . '</div>';
}
}
function posterous_settings(&$a,&$s) {
if(! local_user())
return;
/* Add our stylesheet to the page so we can make our settings look nice */
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/posterous/posterous.css' . '" media="all" />' . "\r\n";
/* Get the current state of our config variables */
$enabled = get_pconfig(local_user(),'posterous','post');
$checked = (($enabled) ? ' checked="checked" ' : '');
$def_enabled = get_pconfig(local_user(),'posterous','post_by_default');
$def_checked = (($def_enabled) ? ' checked="checked" ' : '');
$pstr_username = get_pconfig(local_user(), 'posterous', 'posterous_username');
$pstr_password = get_pconfig(local_user(), 'posterous', 'posterous_password');
$pstr_site_id = get_pconfig(local_user(), 'posterous', 'posterous_site_id');
$pstr_api_token = get_pconfig(local_user(), 'posterous', 'posterous_api_token');
/* Add some HTML to the existing form */
$s .= '<div class="settings-block">';
$s .= '<h3>' . t('Posterous Post Settings') . '</h3>';
$s .= '<div id="posterous-enable-wrapper">';
$s .= '<label id="posterous-enable-label" for="posterous-checkbox">' . t('Enable Posterous Post Plugin') . '</label>';
$s .= '<input id="posterous-checkbox" type="checkbox" name="posterous" value="1" ' . $checked . '/>';
$s .= '</div><div class="clear"></div>';
$s .= '<div id="posterous-username-wrapper">';
$s .= '<label id="posterous-username-label" for="posterous-username">' . t('Posterous login') . '</label>';
$s .= '<input id="posterous-username" type="text" name="posterous_username" value="' . $pstr_username . '" />';
$s .= '</div><div class="clear"></div>';
$s .= '<div id="posterous-password-wrapper">';
$s .= '<label id="posterous-password-label" for="posterous-password">' . t('Posterous password') . '</label>';
$s .= '<input id="posterous-password" type="password" name="posterous_password" value="' . $pstr_password . '" />';
$s .= '</div><div class="clear"></div>';
$s .= '<div id="posterous-site_id-wrapper">';
$s .= '<label id="posterous-site_id-label" for="posterous-site_id">' . t('Posterous site ID') . '</label>';
$s .= '<input id="posterous-site_id" type="text" name="posterous_site_id" value="' . $pstr_site_id . '" />';
$s .= '</div><div class="clear"></div>';
$s .= '<div id="posterous-api_token-wrapper">';
$s .= '<label id="posterous-api_token-label" for="posterous-api_token">' . t('Posterous API token') . '</label>';
$s .= '<input id="posterous-api_token" type="text" name="posterous_api_token" value="' . $pstr_api_token . '" />';
$s .= '</div><div class="clear"></div>';
$s .= '<div id="posterous-bydefault-wrapper">';
$s .= '<label id="posterous-bydefault-label" for="posterous-bydefault">' . t('Post to Posterous by default') . '</label>';
$s .= '<input id="posterous-bydefault" type="checkbox" name="posterous_bydefault" value="1" ' . $def_checked . '/>';
$s .= '</div><div class="clear"></div>';
/* provide a submit button */
$s .= '<div class="settings-submit-wrapper" ><input type="submit" id="posterous-submit" name="posterous-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
}
function posterous_settings_post(&$a,&$b) {
if(x($_POST,'posterous-submit')) {
set_pconfig(local_user(),'posterous','post',intval($_POST['posterous']));
set_pconfig(local_user(),'posterous','post_by_default',intval($_POST['posterous_bydefault']));
set_pconfig(local_user(),'posterous','posterous_username',trim($_POST['posterous_username']));
set_pconfig(local_user(),'posterous','posterous_password',trim($_POST['posterous_password']));
set_pconfig(local_user(),'posterous','posterous_site_id',trim($_POST['posterous_site_id']));
set_pconfig(local_user(),'posterous','posterous_api_token',trim($_POST['posterous_api_token']));
}
}
function posterous_post_local(&$a,&$b) {
// This can probably be changed to allow editing by pointing to a different API endpoint
if($b['edit'])
return;
if((! local_user()) || (local_user() != $b['uid']))
return;
if($b['private'] || $b['parent'])
return;
$pstr_post = intval(get_pconfig(local_user(),'posterous','post'));
$pstr_enable = (($pstr_post && x($_REQUEST,'posterous_enable')) ? intval($_REQUEST['posterous_enable']) : 0);
if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'posterous','post_by_default')))
$pstr_enable = 1;
if(! $pstr_enable)
return;
if(strlen($b['postopts']))
$b['postopts'] .= ',';
$b['postopts'] .= 'posterous';
}
function posterous_send(&$a,&$b) {
if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
return;
if(! strstr($b['postopts'],'posterous'))
return;
if($b['parent'] != $b['id'])
return;
$pstr_username = get_pconfig($b['uid'],'posterous','posterous_username');
$pstr_password = get_pconfig($b['uid'],'posterous','posterous_password');
$pstr_site_id = get_pconfig($b['uid'],'posterous','posterous_site_id');
$pstr_blog = "http://posterous.com/api/2/sites/$pstr_site_id/posts";
$pstr_api_token = get_pconfig($b['uid'],'posterous','posterous_api_token');
if($pstr_username && $pstr_password && $pstr_blog) {
require_once('include/bbcode.php');
$tag_arr = array();
$tags = '';
$x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER);
if($x) {
foreach($matches as $mtch) {
$tag_arr[] = $mtch[2];
}
}
if(count($tag_arr))
$tags = implode(',',$tag_arr);
$params = array(
'post[title]' => (($b['title']) ? $b['title'] : t('Post from Friendica')),
'post[source]' => 'Friendica',
'post[tags]' => $tags,
'post[body]' => bbcode($b['body']),
'api_token' => $pstr_api_token,
'site_id' => $pstr_site_id
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $pstr_blog);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_USERPWD, $pstr_username . ':' . $pstr_password);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
$data = curl_exec($ch);
$result = curl_multi_getcontent($ch);
curl_close($ch);
logger('posterous_send: ' . $result);
}
}

View file

55
procrunner/procrunner.php Executable file
View file

@ -0,0 +1,55 @@
<?php
/**
* Name: Proc Runner
* Description: Derivative of poormancron when proc_open() and exec() are disabled
* Version: 1.0
* Author: Fabio Comuni <http://kirgroup.com/profile/fabrix>
* Author: Mike Macgirvin
* Status: Unsupported
*/
function procrunner_install() {
$addons = get_config('system','addon');
if(strstr('poormancron',$addons)) {
logger('procrunner incompatible with poormancron. Not installing procrunner.');
return;
}
// check for command line php
$a = get_app();
$ex = Array();
$ex[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
$ex[1] = dirname(dirname(dirname(__file__)))."/testargs.php";
$ex[2] = "test";
$out = exec(implode(" ", $ex));
if ($out==="test") {
logger('procrunner not required on this system. Not installing.');
return;
} else {
register_hook('proc_run', 'addon/procrunner/procrunner.php','procrunner_procrun');
logger("installed procrunner");
}
}
function procrunner_uninstall() {
unregister_hook('proc_run', 'addon/procrunner/procrunner.php','procrunner_procrun');
logger("removed procrunner");
}
function procrunner_procrun(&$a, &$arr) {
return; // deactivated
$argv = $arr['args'];
$arr['run_cmd'] = false;
logger("procrunner procrun ".implode(", ",$argv));
array_shift($argv);
$argc = count($argv);
logger("procrunner procrun require_once ".basename($argv[0]));
require_once(basename($argv[0]));
$funcname=str_replace(".php", "", basename($argv[0]))."_run";
$funcname($argv, $argc);
}

5
retriever/README Normal file
View file

@ -0,0 +1,5 @@
"retriever" is deactivated since it has side effects for all received posts.
It was created in a time when the option 'Fetch further information for feeds' didn't exist.
To activate it, please go to the list of your contacts, edit the contact and then select between the different options.

36
retriever/database.sql Normal file
View file

@ -0,0 +1,36 @@
CREATE TABLE IF NOT EXISTS `retriever_rule` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(11) NOT NULL,
`contact-id` int(11) NOT NULL,
`data` mediumtext NOT NULL,
PRIMARY KEY (`id`),
KEY `uid` (`uid`),
KEY `contact-id` (`contact-id`)
) DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
CREATE TABLE IF NOT EXISTS `retriever_item` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`item-uri` varchar(800) CHARACTER SET ascii COLLATE ascii_bin NOT NULL,
`item-uid` int(10) unsigned NOT NULL DEFAULT '0',
`contact-id` int(10) unsigned NOT NULL DEFAULT '0',
`resource` int(11) NOT NULL,
`finished` tinyint(1) unsigned NOT NULL DEFAULT '0',
KEY `resource` (`resource`),
KEY `all` (`item-uri`, `item-uid`, `contact-id`),
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
CREATE TABLE IF NOT EXISTS `retriever_resource` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`type` char(255) NOT NULL,
`binary` int(1) NOT NULL DEFAULT 0,
`url` varchar(800) CHARACTER SET ascii COLLATE ascii_bin NOT NULL,
`created` timestamp NOT NULL DEFAULT now(),
`completed` timestamp NULL DEFAULT NULL,
`last-try` timestamp NULL DEFAULT NULL,
`num-tries` int(11) NOT NULL DEFAULT 0,
`data` mediumtext NOT NULL,
`http-code` smallint(1) unsigned NULL DEFAULT NULL,
`redirect-url` varchar(800) CHARACTER SET ascii COLLATE ascii_bin NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8 COLLATE=utf8_bin

View file

@ -0,0 +1,102 @@
# ADDON retriever
# Copyright (C)
# This file is distributed under the same license as the Friendica retriever addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-23 14:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: retriever.php:445
msgid "Retrieved"
msgstr ""
#: retriever.php:654
msgid "Enabled"
msgstr ""
#: retriever.php:658
msgid "URL Pattern"
msgstr ""
#: retriever.php:660
msgid "Regular expression matching part of the URL to replace"
msgstr ""
#: retriever.php:663
msgid "URL Replace"
msgstr ""
#: retriever.php:665
msgid "Text to replace matching part of above regular expression"
msgstr ""
#: retriever.php:668
msgid "Download Images"
msgstr ""
#: retriever.php:672
msgid "Retrospectively Apply"
msgstr ""
#: retriever.php:674
msgid "Reapply the rules to this number of posts"
msgstr ""
#: retriever.php:675
msgid "Retrieve Feed Content"
msgstr ""
#: retriever.php:677 retriever.php:721
msgid "Save Settings"
msgstr ""
#: retriever.php:679
msgid "Tag"
msgstr ""
#: retriever.php:680
msgid "Attribute"
msgstr ""
#: retriever.php:681
msgid "Value"
msgstr ""
#: retriever.php:682
msgid "Add"
msgstr ""
#: retriever.php:683
msgid "Remove"
msgstr ""
#: retriever.php:684
msgid "Include"
msgstr ""
#: retriever.php:686
msgid "Exclude"
msgstr ""
#: retriever.php:697
msgid "Retriever"
msgstr ""
#: retriever.php:722
msgid "Retriever Settings"
msgstr ""
#: retriever.php:725
msgid "All Photos"
msgstr ""

839
retriever/retriever.php Normal file
View file

@ -0,0 +1,839 @@
<?php
/**
* Name: Retrieve Feed Content
* Description: Follow the permalink of RSS/Atom feed items and replace the summary with the full content.
* Version: 1.0
* Author: Matthew Exon <http://mat.exon.name>
* Status: Unsupported
*/
require_once('include/html2bbcode.php');
require_once('include/Photo.php');
function retriever_install() {
register_hook('plugin_settings', 'addon/retriever/retriever.php', 'retriever_plugin_settings');
register_hook('plugin_settings_post', 'addon/retriever/retriever.php', 'retriever_plugin_settings_post');
register_hook('post_remote', 'addon/retriever/retriever.php', 'retriever_post_remote_hook');
register_hook('contact_photo_menu', 'addon/retriever/retriever.php', 'retriever_contact_photo_menu');
register_hook('cron', 'addon/retriever/retriever.php', 'retriever_cron');
$r = q("SELECT `id` FROM `pconfig` WHERE `cat` LIKE 'retriever_%%'");
if (count($r) || (get_config('retriever', 'dbversion') == '0.1')) {
$retrievers = array();
$r = q("SELECT SUBSTRING(`cat`, 10) AS `contact`, `k`, `v` FROM `pconfig` WHERE `cat` LIKE 'retriever%%'");
foreach ($r as $rr) {
$retrievers[$rr['contact']][$rr['k']] = $rr['v'];
}
foreach ($retrievers as $k => $v) {
$rr = q("SELECT `uid` FROM `contact` WHERE `id` = %d", intval($k));
$uid = $rr[0]['uid'];
$v['images'] = 'on';
q("INSERT INTO `retriever_rule` (`uid`, `contact-id`, `data`) VALUES (%d, %d, '%s')",
intval($uid), intval($k), dbesc(json_encode($v)));
}
q("DELETE FROM `pconfig` WHERE `cat` LIKE 'retriever_%%'");
set_config('retriever', 'dbversion', '0.2');
}
if (get_config('retriever', 'dbversion') == '0.2') {
q("ALTER TABLE `retriever_resource` DROP COLUMN `retriever`");
set_config('retriever', 'dbversion', '0.3');
}
if (get_config('retriever', 'dbversion') == '0.3') {
q("ALTER TABLE `retriever_item` MODIFY COLUMN `item-uri` varchar(800) CHARACTER SET ascii NOT NULL");
q("ALTER TABLE `retriever_resource` MODIFY COLUMN `url` varchar(800) CHARACTER SET ascii NOT NULL");
set_config('retriever', 'dbversion', '0.4');
}
if (get_config('retriever', 'dbversion') == '0.4') {
q("ALTER TABLE `retriever_item` ADD COLUMN `finished` tinyint(1) unsigned NOT NULL DEFAULT '0'");
set_config('retriever', 'dbversion', '0.5');
}
if (get_config('retriever', 'dbversion') == '0.5') {
q('ALTER TABLE `retriever_resource` CHANGE `created` `created` timestamp NOT NULL DEFAULT now()');
q('ALTER TABLE `retriever_resource` CHANGE `completed` `completed` timestamp NULL DEFAULT NULL');
q('ALTER TABLE `retriever_resource` CHANGE `last-try` `last-try` timestamp NULL DEFAULT NULL');
q('ALTER TABLE `retriever_item` DROP KEY `all`');
q('ALTER TABLE `retriever_item` ADD KEY `all` (`item-uri`, `item-uid`, `contact-id`)');
set_config('retriever', 'dbversion', '0.6');
}
if (get_config('retriever', 'dbversion') == '0.6') {
q('ALTER TABLE `retriever_item` CONVERT TO CHARACTER SET utf8 COLLATE utf8_bin');
q('ALTER TABLE `retriever_item` CHANGE `item-uri` `item-uri` varchar(800) CHARACTER SET ascii COLLATE ascii_bin NOT NULL');
q('ALTER TABLE `retriever_resource` CONVERT TO CHARACTER SET utf8 COLLATE utf8_bin');
q('ALTER TABLE `retriever_resource` CHANGE `url` `url` varchar(800) CHARACTER SET ascii COLLATE ascii_bin NOT NULL');
q('ALTER TABLE `retriever_rule` CONVERT TO CHARACTER SET utf8 COLLATE utf8_bin');
set_config('retriever', 'dbversion', '0.7');
}
if (get_config('retriever', 'dbversion') == '0.7') {
$r = q("SELECT `id`, `data` FROM `retriever_rule`");
foreach ($r as $rr) {
logger('retriever_install: retriever ' . $rr['id'] . ' old config ' . $rr['data'], LOGGER_DATA);
$data = json_decode($rr['data'], true);
if ($data['pattern']) {
$matches = array();
if (preg_match("/\/(.*)\//", $data['pattern'], $matches)) {
$data['pattern'] = $matches[1];
}
}
if ($data['match']) {
$include = array();
foreach (explode('|', $data['match']) as $component) {
$matches = array();
if (preg_match("/([A-Za-z][A-Za-z0-9]*)\[@([A-Za-z][a-z0-9]*)='([^']*)'\]/", $component, $matches)) {
$include[] = array(
'element' => $matches[1],
'attribute' => $matches[2],
'value' => $matches[3]);
}
if (preg_match("/([A-Za-z][A-Za-z0-9]*)\[contains(concat(' ',normalize-space(@class),' '),' ([^ ']+) ')]/", $component, $matches)) {
$include[] = array(
'element' => $matches[1],
'attribute' => $matches[2],
'value' => $matches[3]);
}
}
$data['include'] = $include;
unset($data['match']);
}
if ($data['remove']) {
$exclude = array();
foreach (explode('|', $data['remove']) as $component) {
$matches = array();
if (preg_match("/([A-Za-z][A-Za-z0-9]*)\[@([A-Za-z][a-z0-9]*)='([^']*)'\]/", $component, $matches)) {
$exclude[] = array(
'element' => $matches[1],
'attribute' => $matches[2],
'value' => $matches[3]);
}
if (preg_match("/([A-Za-z][A-Za-z0-9]*)\[contains(concat(' ',normalize-space(@class),' '),' ([^ ']+) ')]/", $component, $matches)) {
$exclude[] = array(
'element' => $matches[1],
'attribute' => $matches[2],
'value' => $matches[3]);
}
}
$data['exclude'] = $exclude;
unset($data['remove']);
}
$r = q('UPDATE `retriever_rule` SET `data` = "%s" WHERE `id` = %d', dbesc(json_encode($data)), $rr['id']);
logger('retriever_install: retriever ' . $rr['id'] . ' new config ' . json_encode($data), LOGGER_DATA);
}
set_config('retriever', 'dbversion', '0.8');
}
if (get_config('retriever', 'dbversion') == '0.8') {
q("ALTER TABLE `retriever_resource` ADD COLUMN `http-code` smallint(1) unsigned NULL DEFAULT NULL");
set_config('retriever', 'dbversion', '0.9');
}
if (get_config('retriever', 'dbversion') == '0.9') {
q("ALTER TABLE `retriever_item` DROP COLUMN `parent`");
q("ALTER TABLE `retriever_resource` ADD COLUMN `redirect-url` varchar(800) CHARACTER SET ascii COLLATE ascii_bin NULL DEFAULT NULL");
set_config('retriever', 'dbversion', '0.10');
}
if (get_config('retriever', 'dbversion') != '0.10') {
$schema = file_get_contents(dirname(__file__).'/database.sql');
$arr = explode(';', $schema);
foreach ($arr as $a) {
$r = q($a);
}
set_config('retriever', 'dbversion', '0.10');
}
}
function retriever_uninstall() {
unregister_hook('plugin_settings', 'addon/retriever/retriever.php', 'retriever_plugin_settings');
unregister_hook('plugin_settings_post', 'addon/retriever/retriever.php', 'retriever_plugin_settings_post');
unregister_hook('post_remote', 'addon/retriever/retriever.php', 'retriever_post_remote_hook');
unregister_hook('plugin_settings', 'addon/retriever/retriever.php', 'retriever_plugin_settings');
unregister_hook('plugin_settings_post', 'addon/retriever/retriever.php', 'retriever_plugin_settings_post');
unregister_hook('contact_photo_menu', 'addon/retriever/retriever.php', 'retriever_contact_photo_menu');
unregister_hook('cron', 'addon/retriever/retriever.php', 'retriever_cron');
}
function retriever_module() {}
function retriever_cron($a, $b) {
// 100 is a nice sane number. Maybe this should be configurable.
retriever_retrieve_items(100);
retriever_tidy();
}
$retriever_item_count = 0;
function retriever_retrieve_items($max_items) {
global $retriever_item_count;
$retriever_schedule = array(array(1,'minute'),
array(10,'minute'),
array(1,'hour'),
array(1,'day'),
array(2,'day'),
array(1,'week'),
array(1,'month'));
$schedule_clauses = array();
for ($i = 0; $i < count($retriever_schedule); $i++) {
$num = $retriever_schedule[$i][0];
$unit = $retriever_schedule[$i][1];
array_push($schedule_clauses,
'(`num-tries` = ' . $i . ' AND TIMESTAMPADD(' . dbesc($unit) .
', ' . intval($num) . ', `last-try`) < now())');
}
$retrieve_items = $max_items - $retriever_item_count;
logger('retriever_retrieve_items: asked for maximum ' . $max_items . ', already retrieved ' . $retriever_item_count . ', retrieve ' . $retrieve_items, LOGGER_DEBUG);
do {
$r = q("SELECT * FROM `retriever_resource` WHERE `completed` IS NULL AND (`last-try` IS NULL OR %s) ORDER BY `last-try` ASC LIMIT %d",
dbesc(implode($schedule_clauses, ' OR ')),
intval($retrieve_items));
if (!is_array($r)) {
break;
}
if (count($r) == 0) {
break;
}
logger('retriever_retrieve_items: found ' . count($r) . ' waiting resources in database', LOGGER_DEBUG);
foreach ($r as $rr) {
retrieve_resource($rr);
$retriever_item_count++;
}
$retrieve_items = $max_items - $retriever_item_count;
}
while ($retrieve_items > 0);
/* Look for items that are waiting even though the resource has
* completed. This usually happens because we've been asked to
* retrospectively apply a config change. It could also happen
* due to a cron job dying or something. */
$r = q("SELECT retriever_resource.`id` as resource, retriever_item.`id` as item FROM retriever_resource, retriever_item, retriever_rule WHERE retriever_item.`finished` = 0 AND retriever_item.`resource` = retriever_resource.`id` AND retriever_resource.`completed` IS NOT NULL AND retriever_item.`contact-id` = retriever_rule.`contact-id` AND retriever_item.`item-uid` = retriever_rule.`uid` LIMIT %d",
intval($retrieve_items));
if (!$r) {
$r = array();
}
logger('retriever_retrieve_items: items waiting even though resource has completed: ' . count($r), LOGGER_DEBUG);
foreach ($r as $rr) {
$resource = q("SELECT * FROM retriever_resource WHERE `id` = %d", $rr['resource']);
$retriever_item = retriever_get_retriever_item($rr['item']);
if (!$retriever_item) {
logger('retriever_retrieve_items: no retriever item with id ' . $rr['item'], LOGGER_NORMAL);
continue;
}
$item = retriever_get_item($retriever_item);
if (!$item) {
logger('retriever_retrieve_items: no item ' . $retriever_item['item-uri'], LOGGER_NORMAL);
continue;
}
$retriever = get_retriever($item['contact-id'], $item['uid']);
if (!$retriever) {
logger('retriever_retrieve_items: no retriever for item ' .
$retriever_item['item-uri'] . ' ' . $retriever_item['uid'] . ' ' . $item['contact-id'],
LOGGER_NORMAL);
continue;
}
retriever_apply_completed_resource_to_item($retriever, $item, $resource[0]);
q("UPDATE `retriever_item` SET `finished` = 1 WHERE id = %d",
intval($retriever_item['id']));
retriever_check_item_completed($item);
}
}
function retriever_tidy() {
q("DELETE FROM retriever_resource WHERE completed IS NOT NULL AND completed < DATE_SUB(now(), INTERVAL 1 WEEK)");
q("DELETE FROM retriever_resource WHERE completed IS NULL AND created < DATE_SUB(now(), INTERVAL 3 MONTH)");
$r = q("SELECT retriever_item.id FROM retriever_item LEFT OUTER JOIN retriever_resource ON (retriever_item.resource = retriever_resource.id) WHERE retriever_resource.id is null");
logger('retriever_tidy: found ' . count($r) . ' retriever_items with no retriever_resource');
foreach ($r as $rr) {
q('DELETE FROM retriever_item WHERE id = %d', intval($rr['id']));
}
}
function retrieve_resource($resource) {
$a = get_app();
logger('retrieve_resource: ' . ($resource['num-tries'] + 1) .
' attempt at resource ' . $resource['id'] . ' ' . $resource['url'], LOGGER_DEBUG);
$redirects;
$cookiejar = tempnam(get_temppath(), 'cookiejar-retriever-');
$fetch_result = z_fetch_url($resource['url'], $resource['binary'], $redirects, array('cookiejar' => $cookiejar));
unlink($cookiejar);
$resource['data'] = $fetch_result['body'];
$resource['http-code'] = $a->get_curl_code();
$resource['type'] = $a->get_curl_content_type();
$resource['redirect-url'] = $fetch_result['redirect_url'];
logger('retrieve_resource: got code ' . $resource['http-code'] .
' retrieving resource ' . $resource['id'] .
' final url ' . $resource['redirect-url'], LOGGER_DEBUG);
q("UPDATE `retriever_resource` SET `last-try` = now(), `num-tries` = `num-tries` + 1, `http-code` = %d, `redirect-url` = '%s' WHERE id = %d",
intval($resource['http-code']),
dbesc($resource['redirect-url']),
intval($resource['id']));
if ($resource['data']) {
q("UPDATE `retriever_resource` SET `completed` = now(), `data` = '%s', `type` = '%s' WHERE id = %d",
dbesc($resource['data']),
dbesc($resource['type']),
intval($resource['id']));
retriever_resource_completed($resource);
}
}
function get_retriever($contact_id, $uid, $create = false) {
$r = q("SELECT * FROM `retriever_rule` WHERE `contact-id` = %d AND `uid` = %d",
intval($contact_id), intval($uid));
if (count($r)) {
$r[0]['data'] = json_decode($r[0]['data'], true);
return $r[0];
}
if ($create) {
q("INSERT INTO `retriever_rule` (`uid`, `contact-id`) VALUES (%d, %d)",
intval($uid), intval($contact_id));
$r = q("SELECT * FROM `retriever_rule` WHERE `contact-id` = %d AND `uid` = %d",
intval($contact_id), intval($uid));
return $r[0];
}
}
function retriever_get_retriever_item($id) {
$retriever_items = q("SELECT * FROM `retriever_item` WHERE id = %d", intval($id));
if (count($retriever_items) != 1) {
logger('retriever_get_retriever_item: unable to find retriever_item ' . $id, LOGGER_NORMAL);
return;
}
return $retriever_items[0];
}
function retriever_get_item($retriever_item) {
$items = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `contact-id` = %d",
dbesc($retriever_item['item-uri']),
intval($retriever_item['item-uid']),
intval($retriever_item['contact-id']));
if (count($items) != 1) {
logger('retriever_get_item: unexpected number of results ' .
count($items) . " when searching for item $uri $uid $cid", LOGGER_NORMAL);
return;
}
return $items[0];
}
function retriever_item_completed($retriever_item_id, $resource) {
logger('retriever_item_completed: id ' . $retriever_item_id . ' url ' . $resource['url'], LOGGER_DEBUG);
$retriever_item = retriever_get_retriever_item($retriever_item_id);
if (!$retriever_item) {
return;
}
// Note: the retriever might be null. Doesn't matter.
$retriever = get_retriever($retriever_item['contact-id'], $retriever_item['item-uid']);
$item = retriever_get_item($retriever_item);
if (!$item) {
return;
}
retriever_apply_completed_resource_to_item($retriever, $item, $resource);
q("UPDATE `retriever_item` SET `finished` = 1 WHERE id = %d",
intval($retriever_item['id']));
retriever_check_item_completed($item);
}
function retriever_resource_completed($resource) {
logger('retriever_resource_completed: id ' . $resource['id'] . ' url ' . $resource['url'], LOGGER_DEBUG);
$r = q("SELECT `id` FROM `retriever_item` WHERE `resource` = %d", $resource['id']);
foreach ($r as $rr) {
retriever_item_completed($rr['id'], $resource);
}
}
function apply_retrospective($retriever, $num) {
$r = q("SELECT * FROM `item` WHERE `contact-id` = %d ORDER BY `received` DESC LIMIT %d",
intval($retriever['contact-id']), intval($num));
foreach ($r as $item) {
q('UPDATE `item` SET `visible` = 0 WHERE `id` = %d', $item['id']);
q('UPDATE `thread` SET `visible` = 0 WHERE `iid` = %d', $item['id']);
retriever_on_item_insert($retriever, $item);
}
}
function retriever_on_item_insert($retriever, &$item) {
if (!$retriever || !$retriever['id']) {
logger('retriever_on_item_insert: No retriever supplied', LOGGER_NORMAL);
return;
}
if (!$retriever["data"]['enable'] == "on") {
return;
}
if ($retriever["data"]['pattern']) {
$url = preg_replace('/' . $retriever["data"]['pattern'] . '/', $retriever["data"]['replace'], $item['plink']);
logger('retriever_on_item_insert: Changed ' . $item['plink'] . ' to ' . $url, LOGGER_DATA);
}
else {
$url = $item['plink'];
}
$resource = add_retriever_resource($url);
$retriever_item_id = add_retriever_item($item, $resource);
}
function add_retriever_resource($url, $binary = false) {
logger('add_retriever_resource: ' . $url, LOGGER_DEBUG);
$scheme = parse_url($url, PHP_URL_SCHEME);
if ($scheme == 'data') {
$fp = fopen($url, 'r');
$meta = stream_get_meta_data($fp);
$type = $meta['mediatype'];
$data = stream_get_contents($fp);
fclose($fp);
$url = 'md5://' . hash('md5', $url);
$r = q("SELECT * FROM `retriever_resource` WHERE `url` = '%s'", dbesc($url));
$resource = $r[0];
if (count($r)) {
logger('add_retriever_resource: Resource ' . $url . ' already requested', LOGGER_DEBUG);
return $resource;
}
logger('retrieve_resource: got data URL type ' . $resource['type'], LOGGER_DEBUG);
q("INSERT INTO `retriever_resource` (`type`, `binary`, `url`, `completed`, `data`) " .
"VALUES ('%s', %d, '%s', now(), '%s')",
dbesc($type),
intval($binary ? 1 : 0),
dbesc($url),
dbesc($data));
$r = q("SELECT * FROM `retriever_resource` WHERE `url` = '%s'", dbesc($url));
$resource = $r[0];
if (count($r)) {
retriever_resource_completed($resource);
}
return $resource;
}
if (strlen($url) > 800) {
logger('add_retriever_resource: URL is longer than 800 characters', LOGGER_NORMAL);
}
$r = q("SELECT * FROM `retriever_resource` WHERE `url` = '%s'", dbesc($url));
$resource = $r[0];
if (count($r)) {
logger('add_retriever_resource: Resource ' . $url . ' already requested', LOGGER_DEBUG);
return $resource;
}
q("INSERT INTO `retriever_resource` (`binary`, `url`) " .
"VALUES (%d, '%s')", intval($binary ? 1 : 0), dbesc($url));
$r = q("SELECT * FROM `retriever_resource` WHERE `url` = '%s'", dbesc($url));
return $r[0];
}
function add_retriever_item(&$item, $resource) {
logger('add_retriever_item: ' . $resource['url'] . ' for ' . $item['uri'] . ' ' . $item['uid'] . ' ' . $item['contact-id'], LOGGER_DEBUG);
q("INSERT INTO `retriever_item` (`item-uri`, `item-uid`, `contact-id`, `resource`) " .
"VALUES ('%s', %d, %d, %d)",
dbesc($item['uri']), intval($item['uid']), intval($item['contact-id']), intval($resource["id"]));
$r = q("SELECT id FROM `retriever_item` WHERE " .
"`item-uri` = '%s' AND `item-uid` = %d AND `contact-id` = %d AND `resource` = %d ORDER BY id DESC",
dbesc($item['uri']), intval($item['uid']), intval($item['contact-id']), intval($resource['id']));
if (!count($r)) {
logger("add_retriever_item: couldn't create retriever item for " .
$item['uri'] . ' ' . $item['uid'] . ' ' . $item['contact-id'],
LOGGER_NORMAL);
return;
}
logger('add_retriever_item: created retriever_item ' . $r[0]['id'] . ' for item ' . $item['uri'] . ' ' . $item['uid'] . ' ' . $item['contact-id'], LOGGER_DEBUG);
return $r[0]['id'];
}
function retriever_get_encoding($resource) {
$matches = array();
if (preg_match('/charset=(.*)/', $resource['type'], $matches)) {
return trim(array_pop($matches));
}
return 'utf-8';
}
function retriever_apply_xslt_text($xslt_text, $doc) {
if (!$xslt_text) {
logger('retriever_apply_xslt_text: empty XSLT text', LOGGER_NORMAL);
return $doc;
}
$xslt_doc = new DOMDocument();
if (!$xslt_doc->loadXML($xslt_text)) {
logger('retriever_apply_xslt_text: could not load XML', LOGGER_NORMAL);
return $doc;
}
$xp = new XsltProcessor();
$xp->importStylesheet($xslt_doc);
$result = $xp->transformToDoc($doc);
return $result;
}
function retriever_apply_dom_filter($retriever, &$item, $resource) {
logger('retriever_apply_dom_filter: applying XSLT to ' . $item['id'] . ' ' . $item['uri'] . ' contact ' . $item['contact-id'], LOGGER_DEBUG);
if (!$retriever['data']['include'] && !$retriever['data']['customxslt']) {
return;
}
if (!$resource['data']) {
logger('retriever_apply_dom_filter: no text to work with', LOGGER_NORMAL);
return;
}
$encoding = retriever_get_encoding($resource);
$content = mb_convert_encoding($resource['data'], 'HTML-ENTITIES', $encoding);
$doc = new DOMDocument('1.0', 'UTF-8');
if (strpos($resource['type'], 'html') !== false) {
@$doc->loadHTML($content);
}
else {
$doc->loadXML($content);
}
$params = array('$spec' => $retriever['data']);
$extract_template = get_markup_template('extract.tpl', 'addon/retriever/');
$extract_xslt = replace_macros($extract_template, $params);
if ($retriever['data']['include']) {
$doc = retriever_apply_xslt_text($extract_xslt, $doc);
}
if ($retriever['data']['customxslt']) {
$doc = retriever_apply_xslt_text($retriever['data']['customxslt'], $doc);
}
if (!$doc) {
logger('retriever_apply_dom_filter: failed to apply extract XSLT template', LOGGER_NORMAL);
return;
}
$components = parse_url($resource['redirect-url']);
$rooturl = $components['scheme'] . "://" . $components['host'];
$dirurl = $rooturl . dirname($components['path']) . "/";
$params = array('$dirurl' => $dirurl, '$rooturl' => $rooturl);
$fix_urls_template = get_markup_template('fix-urls.tpl', 'addon/retriever/');
$fix_urls_xslt = replace_macros($fix_urls_template, $params);
$doc = retriever_apply_xslt_text($fix_urls_xslt, $doc);
if (!$doc) {
logger('retriever_apply_dom_filter: failed to apply fix urls XSLT template', LOGGER_NORMAL);
return;
}
$item['body'] = html2bbcode($doc->saveXML());
if (!strlen($item['body'])) {
logger('retriever_apply_dom_filter retriever ' . $retriever['id'] . ' item ' . $item['id'] . ': output was empty', LOGGER_NORMAL);
return;
}
$item['body'] .= "\n\n" . t('Retrieved') . ' ' . date("Y-m-d") . ': [url=';
$item['body'] .= $item['plink'];
$item['body'] .= ']' . $item['plink'] . '[/url]';
q("UPDATE `item` SET `body` = '%s' WHERE `id` = %d",
dbesc($item['body']), intval($item['id']));
}
function retrieve_images(&$item) {
$matches1 = array();
preg_match_all("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", $item["body"], $matches1);
$matches2 = array();
preg_match_all("/\[img\](.*?)\[\/img\]/ism", $item["body"], $matches2);
$matches = array_merge($matches1[3], $matches2[1]);
logger('retrieve_images: found ' . count($matches) . ' images for item ' . $item['uri'] . ' ' . $item['uid'] . ' ' . $item['contact-id'], LOGGER_DEBUG);
foreach ($matches as $url) {
if (strpos($url, get_app()->get_baseurl()) === FALSE) {
$resource = add_retriever_resource($url, true);
if (!$resource['completed']) {
add_retriever_item($item, $resource);
}
else {
retriever_transform_images($item, $resource);
}
}
}
}
function retriever_check_item_completed(&$item)
{
$r = q('SELECT count(*) FROM retriever_item WHERE `item-uri` = "%s" ' .
'AND `item-uid` = %d AND `contact-id` = %d AND `finished` = 0',
dbesc($item['uri']), intval($item['uid']),
intval($item['contact-id']));
$waiting = $r[0]['count(*)'];
logger('retriever_check_item_completed: item ' . $item['uri'] . ' ' . $item['uid']
. ' '. $item['contact-id'] . ' waiting for ' . $waiting . ' resources', LOGGER_DEBUG);
$old_visible = $item['visible'];
$item['visible'] = $waiting ? 0 : 1;
if (($item['id'] > 0) && ($old_visible != $item['visible'])) {
logger('retriever_check_item_completed: changing visible flag to ' . $item['visible'] . ' and invoking notifier ("edit_post", ' . $item['id'] . ')', LOGGER_DEBUG);
q("UPDATE `item` SET `visible` = %d WHERE `id` = %d",
intval($item['visible']),
intval($item['id']));
q("UPDATE `thread` SET `visible` = %d WHERE `iid` = %d",
intval($item['visible']),
intval($item['id']));
}
}
function retriever_apply_completed_resource_to_item($retriever, &$item, $resource) {
logger('retriever_apply_completed_resource_to_item: retriever ' .
($retriever ? $retriever['id'] : 'none') .
' resource ' . $resource['url'] . ' plink ' . $item['plink'], LOGGER_DEBUG);
if (strpos($resource['type'], 'image') !== false) {
retriever_transform_images($item, $resource);
}
if (!$retriever) {
return;
}
if ((strpos($resource['type'], 'html') !== false) ||
(strpos($resource['type'], 'xml') !== false)) {
retriever_apply_dom_filter($retriever, $item, $resource);
if ($retriever["data"]['images'] ) {
retrieve_images($item);
}
}
}
function retriever_store_photo($item, &$resource) {
$hash = photo_new_resource();
if (class_exists('Imagick')) {
try {
$image = new Imagick();
$image->readImageBlob($resource['data']);
$resource['width'] = $image->getImageWidth();
$resource['height'] = $image->getImageHeight();
}
catch (Exception $e) {
logger("ImageMagick couldn't process image " . $resource['id'] . " " . $resource['url'] . ' length ' . strlen($resource['data']) . ': ' . $e->getMessage(), LOGGER_DEBUG);
return false;
}
}
if (!array_key_exists('width', $resource)) {
$image = @imagecreatefromstring($resource['data']);
if ($image === false) {
logger("Couldn't process image " . $resource['id'] . " " . $resource['url'], LOGGER_DEBUG);
return false;
}
$resource['width'] = imagesx($image);
$resource['height'] = imagesy($image);
imagedestroy($image);
}
$url_components = parse_url($resource['url']);
$filename = basename($url_components['path']);
if (!strlen($filename)) {
$filename = 'image';
}
$r = q("INSERT INTO `photo`
( `uid`, `contact-id`, `guid`, `resource-id`, `created`, `edited`, `filename`, `type`, `album`, `height`, `width`, `datasize`, `data` )
VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, '%s' )",
intval($item['item-uid']),
intval($item['contact-id']),
dbesc(get_guid()),
dbesc($hash),
dbesc(datetime_convert()),
dbesc(datetime_convert()),
dbesc($filename),
dbesc($resource['type']),
dbesc('Retrieved Images'),
intval($resource['height']),
intval($resource['width']),
intval(strlen($resource['data'])),
dbesc($resource['data'])
);
return $hash;
}
function retriever_transform_images(&$item, $resource) {
if (!$resource["data"]) {
logger('retriever_transform_images: no data available for '
. $resource['id'] . ' ' . $resource['url'], LOGGER_NORMAL);
return;
}
$hash = retriever_store_photo($item, $resource);
if ($hash === false) {
logger('retriever_transform_images: unable to store photo '
. $resource['id'] . ' ' . $resource['url'], LOGGER_NORMAL);
return;
}
$new_url = get_app()->get_baseurl() . '/photo/' . $hash;
logger('retriever_transform_images: replacing ' . $resource['url'] . ' with ' .
$new_url . ' in item ' . $item['plink'], LOGGER_DEBUG);
$transformed = str_replace($resource["url"], $new_url, $item['body']);
if ($transformed === $item['body']) {
return;
}
$item['body'] = $transformed;
q("UPDATE `item` SET `body` = '%s' WHERE `plink` = '%s' AND `uid` = %d AND `contact-id` = %d",
dbesc($item['body']),
dbesc($item['plink']),
intval($item['uid']),
intval($item['contact-id']));
}
function retriever_content($a) {
if (!local_user()) {
$a->page['content'] .= "<p>Please log in</p>";
return;
}
if ($a->argv[1] === 'help') {
$feeds = q("SELECT `id`, `name`, `thumb` FROM contact WHERE `uid` = %d AND `network` = 'feed'",
local_user());
foreach ($feeds as $k=>$v) {
$feeds[$k]['url'] = $a->get_baseurl() . '/retriever/' . $v['id'];
}
$template = get_markup_template('/help.tpl', 'addon/retriever/');
$a->page['content'] .= replace_macros($template, array(
'$config' => $a->get_baseurl() . '/settings/addon',
'$feeds' => $feeds));
return;
}
if ($a->argv[1]) {
$retriever = get_retriever($a->argv[1], local_user(), false);
if (x($_POST["id"])) {
$retriever = get_retriever($a->argv[1], local_user(), true);
$retriever["data"] = array();
foreach (array('pattern', 'replace', 'enable', 'images', 'customxslt') as $setting) {
if (x($_POST['retriever_' . $setting])) {
$retriever["data"][$setting] = $_POST['retriever_' . $setting];
}
}
foreach ($_POST as $k=>$v) {
if (preg_match("/retriever-(include|exclude)-(\d+)-(element|attribute|value)/", $k, $matches)) {
$retriever['data'][$matches[1]][intval($matches[2])][$matches[3]] = $v;
}
}
// You've gotta have an element, even if it's just "*"
foreach ($retriever['data']['include'] as $k=>$clause) {
if (!$clause['element']) {
unset($retriever['data']['include'][$k]);
}
}
foreach ($retriever['data']['exclude'] as $k=>$clause) {
if (!$clause['element']) {
unset($retriever['data']['exclude'][$k]);
}
}
q("UPDATE `retriever_rule` SET `data`='%s' WHERE `id` = %d",
dbesc(json_encode($retriever["data"])), intval($retriever["id"]));
$a->page['content'] .= "<p><b>Settings Updated";
if (x($_POST["retriever_retrospective"])) {
apply_retrospective($retriever, $_POST["retriever_retrospective"]);
$a->page['content'] .= " and retrospectively applied to " . $_POST["apply"] . " posts";
}
$a->page['content'] .= ".</p></b>";
}
$template = get_markup_template('/rule-config.tpl', 'addon/retriever/');
$a->page['content'] .= replace_macros($template, array(
'$enable' => array(
'retriever_enable',
t('Enabled'),
$retriever['data']['enable']),
'$pattern' => array(
'retriever_pattern',
t('URL Pattern'),
$retriever["data"]['pattern'],
t('Regular expression matching part of the URL to replace')),
'$replace' => array(
'retriever_replace',
t('URL Replace'),
$retriever["data"]['replace'],
t('Text to replace matching part of above regular expression')),
'$images' => array(
'retriever_images',
t('Download Images'),
$retriever['data']['images']),
'$retrospective' => array(
'retriever_retrospective',
t('Retrospectively Apply'),
'0',
t('Reapply the rules to this number of posts')),
'$customxslt' => array(
'retriever_customxslt',
t('Custom XSLT'),
$retriever['data']['customxslt'],
t("When standard rules aren't enough, apply custom XSLT to the article")),
'$title' => t('Retrieve Feed Content'),
'$help' => $a->get_baseurl() . '/retriever/help',
'$help_t' => t('Get Help'),
'$submit_t' => t('Submit'),
'$submit' => t('Save Settings'),
'$id' => ($retriever["id"] ? $retriever["id"] : "create"),
'$tag_t' => t('Tag'),
'$attribute_t' => t('Attribute'),
'$value_t' => t('Value'),
'$add_t' => t('Add'),
'$remove_t' => t('Remove'),
'$include_t' => t('Include'),
'$include' => $retriever['data']['include'],
'$exclude_t' => t('Exclude'),
'$exclude' => $retriever["data"]['exclude']));
return;
}
}
function retriever_contact_photo_menu($a, &$args) {
if (!$args) {
return;
}
if ($args["contact"]["network"] == "feed") {
$args["menu"][ 'retriever' ] = array(t('Retriever'), $a->get_baseurl() . '/retriever/' . $args["contact"]['id']);
}
}
function retriever_post_remote_hook(&$a, &$item) {
logger('retriever_post_remote_hook: ' . $item['uri'] . ' ' . $item['uid'] . ' ' . $item['contact-id'], LOGGER_DEBUG);
$retriever = get_retriever($item['contact-id'], $item["uid"], false);
if ($retriever) {
retriever_on_item_insert($retriever, $item);
}
else {
if (get_pconfig($item["uid"], 'retriever', 'oembed')) {
// Convert to HTML and back to take advantage of bbcode's resolution of oembeds.
$body = html2bbcode(bbcode($item['body']));
if ($body) {
$item['body'] = $body;
}
}
if (get_pconfig($item["uid"], 'retriever', 'all_photos')) {
retrieve_images($item, null);
}
}
retriever_check_item_completed($item);
}
function retriever_plugin_settings(&$a,&$s) {
$all_photos = get_pconfig(local_user(), 'retriever', 'all_photos');
$oembed = get_pconfig(local_user(), 'retriever', 'oembed');
$template = get_markup_template('/settings.tpl', 'addon/retriever/');
$s .= replace_macros($template, array(
'$allphotos' => array(
'retriever_all_photos',
t('All Photos'),
$all_photos,
t('Check this to retrieve photos for all posts')),
'$oembed' => array(
'retriever_oembed',
t('Resolve OEmbed'),
$oembed,
t('Check this to attempt to retrieve embedded content for all posts - useful e.g. for Facebook posts')),
'$submit' => t('Save Settings'),
'$title' => t('Retriever Settings'),
'$help' => $a->get_baseurl() . '/retriever/help'));
}
function retriever_plugin_settings_post($a,$post) {
if ($_POST['retriever_all_photos']) {
set_pconfig(local_user(), 'retriever', 'all_photos', $_POST['retriever_all_photos']);
}
else {
del_pconfig(local_user(), 'retriever', 'all_photos');
}
if ($_POST['retriever_oembed']) {
set_pconfig(local_user(), 'retriever', 'oembed', $_POST['retriever_oembed']);
}
else {
del_pconfig(local_user(), 'retriever', 'oembed');
}
}

View file

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="text()"/>
{{function clause_xpath}}
{{if !$clause.attribute}}
{{$clause.element}}{{elseif $clause.attribute == 'class'}}
{{$clause.element}}[contains(concat(' ', normalize-space(@class), ' '), '{{$clause.value}}')]{{else}}
{{$clause.element}}[@{{$clause.attribute}}='{{$clause.value}}']{{/if}}
{{/function}}
{{foreach $spec.include as $clause}}
<xsl:template match="{{clause_xpath clause=$clause}}">
<xsl:copy>
<xsl:apply-templates select="node()|@*" mode="remove"/>
</xsl:copy>
</xsl:template>
{{/foreach}}
{{foreach $spec.exclude as $clause}}
<xsl:template match="{{clause_xpath clause=$clause}}" mode="remove"/>
{{/foreach}}
<xsl:template match="node()|@*" mode="remove">
<xsl:copy>
<xsl:apply-templates select="node()|@*" mode="remove"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>

View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- attempt to replace relative URLs with absolute URLs -->
<!-- http://stackoverflow.com/questions/3824631/replace-href-value-in-anchor-tags-of-html-using-xslt -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*/@src[starts-with(.,'.')]">
<xsl:attribute name="src">
<xsl:value-of select="concat('{{$dirurl}}',.)"/>
</xsl:attribute>
</xsl:template>
<xsl:template match="*/@src[starts-with(.,'/')]">
<xsl:attribute name="src">
<xsl:value-of select="concat('{{$rooturl}}',.)"/>
</xsl:attribute>
</xsl:template>
</xsl:stylesheet>

View file

@ -0,0 +1,148 @@
<h2>Retriever Plugin Help</h2>
<p>
This plugin replaces the short excerpts you normally get in RSS feeds
with the full content of the article from the source website. You
specify which part of the page you're interested in with a set of
rules. When each item arrives, the plugin downloads the full page
from the website, extracts content using the rules, and replaces the
original article.
</p>
<p>
There's a few reasons you may want to do this. The source website
might be slow or overloaded. The source website might be
untrustworthy, in which case using Friendica to scrub the HTML is a
good idea. You might be on a LAN that blacklists certain websites.
It also works neatly with the mailstream plugin, allowing you to read
a news stream comfortably without needing continuous Internet
connectivity.
</p>
<p>
However, setting up retriever can be quite tricky since it depends on
the internal design of the website. That was designed to make life
easy for the website's developers, not for you. You'll need to have
some familiarity with HTML, and be willing to adapt when the website
suddenly changes everything without notice.
</p>
<h3>Configuring Retriever for a feed</h3>
<p>
To set up retriever for an RSS feed, go to the "Contacts" page and
find your feed. Then click on the drop-down menu on the contact.
Select "Retriever" to get to the retriever configuration.
</p>
<p>
The "Include" configuration section specifies parts of the page to
include in the article. Each row has three components:
</p>
<ul>
<li>An HTML tag (e.g. "div", "span", "p")</li>
<li>An attribute (usually "class" or "id")</li>
<li>A value for the attribute</li>
</ul>
<p>
A simple case is when the article is wrapped in a "div" element:
</p>
<pre>
...
&lt;div class="ArticleWrapper"&gt;
&lt;h2&gt;Man Bites Dog&lt;/h2&gt;
&lt;img src="mbd.jpg"&gt;
&lt;p&gt;
Residents of the sleepy community of Nowheresville were
shocked yesterday by the sight of creepy local weirdo Jim
McOddman assaulting innocent local dog Snufflekins with his
false teeth.
&lt;/p&gt;
...
&lt;/div&gt;
...
</pre>
<p>
You then specify the tag "div", attribute "class", and value
"ArticleWrapper". Everything else in the page, such as navigation
panels and menus and footers and so on, will be discarded. If there
is more than one section of the page you want to include, specify each
one on a separate row. If the matching section contains some sections
you want to remove, specify those in the "Exclude" section in the same
way.
</p>
<p>
Once you've got a configuration that you think will work, you can try
it out on some existing articles. Type a number into the
"Retrospectively Apply" box and click "Submit". After a while
(exactly how long depends on your system's cron configuration) the new
articles should be available.
</p>
<h3>Techniques</h3>
<p>
You can leave the attribute and value blank to include all the
corresponding elements with the specified tag name. You can also use
a tag name of just an asterisk ("*"), which will match any element type with the
specified attribute regardless of the tag.
</p>
<p>
Note that the "class" attribute is a special case. Many web page
templates will put multiple different classes in the same element,
separated by spaces. If you specify an attribute of "class" it will
match an element if any of its classes matches the specified value.
For example:
</p>
<pre>
&lt;div class="article breaking-news"&gt;
</pre>
<p>
In this case you can specify a value of "article", or "breaking-news".
You can also specify "article breaking-news", but that won't match if
the website suddenly changes to "breaking-news article", so that's not
recommended.
</p>
<p>
One useful trick you can try is using the website's "print" pages.
Many news sites have print versions of all their articles. These are
usually drastically simplified compared to the live website page.
Sometimes this is a good way to get the whole article when it's
normally split across multiple pages.
</p>
<p>
Hopefully the URL for the print page is a predictable variant of the
normal article URL. For example, an article URL like:
</p>
<pre>
http://www.newssite.com/article-8636.html
</pre>
<p>
...might have a print version at:
</p>
<pre>
http://www.newssite.com/print/article-8636.html
</pre>
<p>
To change the URL used to retrieve the page, use the "URL Pattern" and
"URL Replace" fields. The pattern is a regular expression matching
part of the URL to replace. In this case, you might use a pattern of
"/article" and a replace string of "/print/article". A common pattern
is simply a dollar sign ("$"), used to add the replace string to the end of the URL.
</p>
<h3>Background Processing</h3>
<p>
Note that retrieving and processing the articles can take some time,
so it's done in the background. Incoming articles will be marked as
invisible while they're in the process of being downloaded. If a URL
fails, the plugin will keep trying at progressively longer intervals
for up to a month, in case the website is temporarily overloaded or
the network is down.
</p>
<h3>Retrieving Images</h3>
<p>
Retriever can also optionally download images and store them in the
local Friendica instance. Just check the "Download Images" box. You
can also download images in every item from your network, whether it's
an RSS feed or not. Go to the "Settings" page and
click <a href="$config">"Plugin settings"</a>. Then check the "All
Photos" box in the "Retriever Settings" section and click "Submit".
</p>
<h2>Configure Feeds:</h2>
<div>
{{foreach $feeds as $feed}}
{{include file='contact_template.tpl' contact=$feed}}
{{/foreach}}
</div>

View file

@ -0,0 +1,112 @@
<div class="settings-block">
<script language="javascript">
function retriever_add_row(id)
{
var tbody = document.getElementById(id);
var last = tbody.rows[tbody.childElementCount - 1];
var count = +last.id.replace(id + '-', '');
count++;
var row = document.createElement('tr');
row.id = id + '-' + count;
var cell1 = document.createElement('td');
var inptag = document.createElement('input');
inptag.name = row.id + '-element';
cell1.appendChild(inptag);
row.appendChild(cell1);
var cell2 = document.createElement('td');
var inpatt = document.createElement('input');
inpatt.name = row.id + '-attribute';
cell2.appendChild(inpatt);
row.appendChild(cell2);
var cell3 = document.createElement('td');
var inpval = document.createElement('input');
inpval.name = row.id + '-value';
cell3.appendChild(inpval);
row.appendChild(cell3);
var cell4 = document.createElement('td');
var butrem = document.createElement('input');
butrem.id = row.id + '-rem';
butrem.type = 'button';
butrem.onclick = function(){retriever_remove_row(id, count)};
butrem.value = '{{$remove_t}}';
cell4.appendChild(butrem);
row.appendChild(cell4);
tbody.appendChild(row);
}
function retriever_remove_row(id, number)
{
var tbody = document.getElementById(id);
var row = document.getElementById(id + '-' + number);
tbody.removeChild(row);
}
</script>
<h2>{{$title}}</h2>
<p><a href="{{$help}}">{{$help_t}}</a></p>
<form method="post">
<input type="hidden" name="id" value="{{$id}}">
{{include file="field_checkbox.tpl" field=$enable}}
{{include file="field_input.tpl" field=$pattern}}
{{include file="field_input.tpl" field=$replace}}
{{include file="field_checkbox.tpl" field=$images}}
{{include file="field_input.tpl" field=$retrospective}}
<h3>{{$include_t}}:</h3>
<div>
<table>
<thead>
<tr><th>{{$tag_t}}</th><th>{{$attribute_t}}</th><th>{{$value_t}}</th></tr>
</thead>
<tbody id="retriever-include">
{{if $include}}
{{foreach $include as $k=>$m}}
<tr id="retriever-include-{{$k}}">
<td><input name="retriever-include-{{$k}}-element" value="{{$m.element}}"></td>
<td><input name="retriever-include-{{$k}}-attribute" value="{{$m.attribute}}"></td>
<td><input name="retriever-include-{{$k}}-value" value="{{$m.value}}"></td>
<td><input id="retrieve-include-{{$k}}-rem" type="button" onclick="retriever_remove_row('retriever-include', {{$k}})" value="{{$remove_t}}"></td>
</tr>
{{/foreach}}
{{else}}
<tr id="retriever-include-0">
<td><input name="retriever-include-0-element"></td>
<td><input name="retriever-include-0-attribute"></td>
<td><input name="retriever-include-0-value"></td>
<td><input id="retrieve-include-0-rem" type="button" onclick="retriever_remove_row('retriever-include', 0)" value="{{$remove_t}}"></td>
</tr>
{{/if}}
</tbody>
</table>
<input type="button" onclick="retriever_add_row('retriever-include')" value="{{$add_t}}">
</div>
<h3>{{$exclude_t}}:</h3>
<div>
<table>
<thead>
<tr><th>Tag</th><th>Attribute</th><th>Value</th></tr>
</thead>
<tbody id="retriever-exclude">
{{if $exclude}}
{{foreach $exclude as $k=>$r}}
<tr id="retriever-exclude-{{$k}}">
<td><input name="retriever-exclude-{{$k}}-element" value="{{$r.element}}"></td>
<td><input name="retriever-exclude-{{$k}}-attribute" value="{{$r.attribute}}"></td>
<td><input name="retriever-exclude-{{$k}}-value" value="{{$r.value}}"></td>
<td><input id="retrieve-exclude-{{$k}}-rem" type="button" onclick="retriever_remove_row('retriever-exclude', {{$k}})" value="{{$remove_t}}"></td>
</tr>
{{/foreach}}
{{else}}
<tr id="retriever-exclude-0">
<td><input name="retriever-exclude-0-element"></td>
<td><input name="retriever-exclude-0-attribute"></td>
<td><input name="retriever-exclude-0-value"></td>
<td><input id="retrieve-exclude-0-rem" type="button" onclick="retriever_remove_row('retriever-exclude', 0)" value="{{$remove_t}}"></td>
</tr>
{{/if}}
</tbody>
</table>
<input type="button" onclick="retriever_add_row('retriever-exclude')" value="{{$add_t}}">
</div>
{{include file="field_textarea.tpl" field=$customxslt}}
<input type="submit" size="70" value="{{$submit_t}}">
</form>
</div>

View file

@ -0,0 +1,9 @@
<div class="settings-block">
<h3>{{$title}}</h3>
<p>
<a href="{{$help}}">Get Help</a>
</p>
{{include file="field_checkbox.tpl" field=$allphotos}}
{{include file="field_checkbox.tpl" field=$oembed}}
<input type="submit" value="{{$submit}}">
</div>

View file

@ -0,0 +1,34 @@
# ADDON snautofollow
# Copyright (C)
# This file is distributed under the same license as the Friendica snautofollow addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: snautofollow.php:32
msgid "StatusNet AutoFollow settings updated."
msgstr ""
#: snautofollow.php:56
msgid "StatusNet AutoFollow Settings"
msgstr ""
#: snautofollow.php:58
msgid "Automatically follow any StatusNet followers/mentioners"
msgstr ""
#: snautofollow.php:64
msgid "Submit"
msgstr ""

View file

@ -0,0 +1,6 @@
<?php
$a->strings["StatusNet AutoFollow settings updated."] = "Ajustos de AutoSeguiment a StatusNet actualitzats.";
$a->strings["StatusNet AutoFollow Settings"] = "Ajustos de AutoSeguiment a StatusNet";
$a->strings["Automatically follow any StatusNet followers/mentioners"] = "Segueix Automaticament qualsevol seguidor/mencionador de StatusNet";
$a->strings["Submit"] = "Enviar";

Some files were not shown because too many files have changed in this diff Show more