diff --git a/appnet/AppDotNet.php b/appnet/AppDotNet.php deleted file mode 100644 index 323613145..000000000 --- a/appnet/AppDotNet.php +++ /dev/null @@ -1,1647 +0,0 @@ -_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 {} diff --git a/appnet/DigiCertHighAssuranceEVRootCA.pem b/appnet/DigiCertHighAssuranceEVRootCA.pem deleted file mode 100644 index 9e6810ab7..000000000 --- a/appnet/DigiCertHighAssuranceEVRootCA.pem +++ /dev/null @@ -1,23 +0,0 @@ ------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----- diff --git a/appnet/README.md b/appnet/README.md deleted file mode 100644 index ec24753cd..000000000 --- a/appnet/README.md +++ /dev/null @@ -1,15 +0,0 @@ -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. diff --git a/appnet/appnet.css b/appnet/appnet.css deleted file mode 100644 index b1d8d27e3..000000000 --- a/appnet/appnet.css +++ /dev/null @@ -1,29 +0,0 @@ -#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; -} diff --git a/appnet/appnet.php b/appnet/appnet.php deleted file mode 100644 index 151a81ee4..000000000 --- a/appnet/appnet.php +++ /dev/null @@ -1,1358 +0,0 @@ - - * 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("
Error fetching token. Please try again.
"); - } - - $o .= 'Error fetching token. Please try again.
" -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 "" -"Error fetching user profile. Please clear the configuration and try again." -"
" -msgstr "" - -#: appnet.php:164 -msgid "You have two ways to connect to App.net.
" -msgstr "" - -#: appnet.php:166 -msgid "" -"First way: Register an application at https://account.app.net/developer/apps/ and enter " -"Client ID and Client Secret. " -msgstr "" - -#: appnet.php:167 -#, php-format -msgid "Use '%s' as Redirect URI
" -msgstr "" - -#: appnet.php:169 -msgid "Client ID" -msgstr "" - -#: appnet.php:173 -msgid "Client Secret" -msgstr "" - -#: appnet.php:177 -msgid "" -"
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. " -msgstr "" - -#: appnet.php:178 -msgid "" -"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', " -"'Messages'.
" -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 "" diff --git a/appnet/lang/cs/messages.po b/appnet/lang/cs/messages.po deleted file mode 100644 index b6527459c..000000000 --- a/appnet/lang/cs/messages.po +++ /dev/null @@ -1,118 +0,0 @@ -# ADDON appnet -# Copyright (C) -# This file is distributed under the same license as the Friendica appnet addon package. -# -# -# Translators: -# Michal ŠuplerError fetching token. Please try again.
" -msgstr "Chyba v přenesení tokenu. Prosím zkuste to znovu.
" - -#: 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 "" -"Error fetching user profile. Please clear the configuration and try " -"again.
" -msgstr "Chyba v přenesení uživatelského profilu. Prosím zkuste smazat konfiguraci a zkusit to znovu.
" - -#: appnet.php:164 -msgid "You have two ways to connect to App.net.
" -msgstr "Máte nyní dvě možnosti jak se připojit k App.net.
" - -#: appnet.php:166 -msgid "" -"First way: Register an application at https://account.app.net/developer/apps/" -" and enter Client ID and Client Secret. " -msgstr "
První možnost: Registrovat svou žádost na https://account.app.net/developer/apps/ a zadat Client ID and Client Secret. " - -#: appnet.php:167 -#, php-format -msgid "Use '%s' as Redirect URI
" -msgstr "Použít '%s' jako URI pro přesměrování
" - -#: appnet.php:169 -msgid "Client ID" -msgstr "Client ID" - -#: appnet.php:173 -msgid "Client Secret" -msgstr "Client Secret" - -#: appnet.php:177 -msgid "" -"
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. " -msgstr "
Druhá možnost: vložit token do http://dev-lite.jonathonduerig.com/. " - -#: appnet.php:178 -msgid "" -"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', " -"'Messages'.
" -msgstr "Nastavte tyto rámce: 'Základní', 'Stream', 'Psaní příspěvků, 'Veřejné zprávy', 'Zprávy'." - -#: 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í" diff --git a/appnet/lang/cs/strings.php b/appnet/lang/cs/strings.php deleted file mode 100644 index 4bc454278..000000000 --- a/appnet/lang/cs/strings.php +++ /dev/null @@ -1,29 +0,0 @@ -=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["Error fetching token. Please try again.
"] = "Chyba v přenesení tokenu. Prosím zkuste to znovu.
"; -$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["Error fetching user profile. Please clear the configuration and try again.
"] = "Chyba v přenesení uživatelského profilu. Prosím zkuste smazat konfiguraci a zkusit to znovu.
"; -$a->strings["You have two ways to connect to App.net.
"] = "Máte nyní dvě možnosti jak se připojit k App.net.
"; -$a->strings["First way: Register an application at https://account.app.net/developer/apps/ and enter Client ID and Client Secret. "] = "
První možnost: Registrovat svou žádost na https://account.app.net/developer/apps/ a zadat Client ID and Client Secret. "; -$a->strings["Use '%s' as Redirect URI
"] = "Použít '%s' jako URI pro přesměrování
"; -$a->strings["Client ID"] = "Client ID"; -$a->strings["Client Secret"] = "Client Secret"; -$a->strings["
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. "] = "
Druhá možnost: vložit token do http://dev-lite.jonathonduerig.com/. "; -$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.
"] = "Nastavte tyto rámce: 'Základní', 'Stream', 'Psaní příspěvků, 'Veřejné zprávy', 'Zprávy'."; -$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í"; diff --git a/appnet/lang/de/messages.po b/appnet/lang/de/messages.po deleted file mode 100644 index 6e8f7c888..000000000 --- a/appnet/lang/de/messages.po +++ /dev/null @@ -1,118 +0,0 @@ -# ADDON appnet -# Copyright (C) -# This file is distributed under the same license as the Friendica appnet addon package. -# -# -# Translators: -# bavatarError fetching token. Please try again.
" -msgstr "Fehler beim Holen des Tokens, bitte versuche es später noch einmal.
" - -#: 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 "" -"Error fetching user profile. Please clear the configuration and try " -"again.
" -msgstr "Beim Laden des Nutzerprofils ist ein Fehler aufgetreten. Bitte versuche es später noch einmal.
" - -#: appnet.php:164 -msgid "You have two ways to connect to App.net.
" -msgstr "Du hast zwei Wege deinen friendica Account mit App.net zu verbinden.
" - -#: appnet.php:166 -msgid "" -"First way: Register an application at https://account.app.net/developer/apps/" -" and enter Client ID and Client Secret. " -msgstr "
Erster Weg: Registriere eine Anwendung unter https://account.app.net/developer/apps/ und wähle eine Client ID und ein Client Secret." - -#: appnet.php:167 -#, php-format -msgid "Use '%s' as Redirect URI
" -msgstr "Verwende '%s' als Redirect URI
" - -#: appnet.php:169 -msgid "Client ID" -msgstr "Client ID" - -#: appnet.php:173 -msgid "Client Secret" -msgstr "Client Secret" - -#: appnet.php:177 -msgid "" -"
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. " -msgstr "
Zweiter Weg: Beantrage ein Token unter http://dev-lite.jonathonduerig.com/. " - -#: appnet.php:178 -msgid "" -"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', " -"'Messages'.
" -msgstr "Verwende folgende Scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'." - -#: 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" diff --git a/appnet/lang/de/strings.php b/appnet/lang/de/strings.php deleted file mode 100644 index da80cf7c3..000000000 --- a/appnet/lang/de/strings.php +++ /dev/null @@ -1,29 +0,0 @@ -strings["Permission denied."] = "Zugriff verweigert."; -$a->strings["You are now authenticated to app.net. "] = "Du bist nun auf app.net authentifiziert."; -$a->strings["Error fetching token. Please try again.
"] = "Fehler beim Holen des Tokens, bitte versuche es später noch einmal.
"; -$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["Error fetching user profile. Please clear the configuration and try again.
"] = "Beim Laden des Nutzerprofils ist ein Fehler aufgetreten. Bitte versuche es später noch einmal.
"; -$a->strings["You have two ways to connect to App.net.
"] = "Du hast zwei Wege deinen friendica Account mit App.net zu verbinden.
"; -$a->strings["First way: Register an application at https://account.app.net/developer/apps/ and enter Client ID and Client Secret. "] = "
Erster Weg: Registriere eine Anwendung unter https://account.app.net/developer/apps/ und wähle eine Client ID und ein Client Secret."; -$a->strings["Use '%s' as Redirect URI
"] = "Verwende '%s' als Redirect URI
"; -$a->strings["Client ID"] = "Client ID"; -$a->strings["Client Secret"] = "Client Secret"; -$a->strings["
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. "] = "
Zweiter Weg: Beantrage ein Token unter http://dev-lite.jonathonduerig.com/. "; -$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.
"] = "Verwende folgende Scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'."; -$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"; diff --git a/appnet/lang/es/messages.po b/appnet/lang/es/messages.po deleted file mode 100644 index a44089d77..000000000 --- a/appnet/lang/es/messages.po +++ /dev/null @@ -1,118 +0,0 @@ -# ADDON appnet -# Copyright (C) -# This file is distributed under the same license as the Friendica appnet addon package. -# -# -# Translators: -# Alberto Díaz TormoError fetching token. Please try again.
" -msgstr "Advertencia de error. Por favor inténtelo de nuevo.
" - -#: 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 "" -"Error fetching user profile. Please clear the configuration and try " -"again.
" -msgstr "Advertencia de error de perfil. Por favor borre la configuración e inténtelo de nuevo.
" - -#: appnet.php:164 -msgid "You have two ways to connect to App.net.
" -msgstr "Tiene dos formas de conectar a App.net.
" - -#: appnet.php:166 -msgid "" -"First way: Register an application at https://account.app.net/developer/apps/" -" and enter Client ID and Client Secret. " -msgstr "
Primera forma: Registrar una aplicación en https://account.app.net/developer/apps/ y seleccionar Client ID y Client Secret. " - -#: appnet.php:167 -#, php-format -msgid "Use '%s' as Redirect URI
" -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 "" -"
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. " -msgstr "
Segunda manera: traiga un símbolo a http://dev-lite.jonathonduerig.com/" - -#: appnet.php:178 -msgid "" -"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', " -"'Messages'.
" -msgstr "Seleccione estas posibilidades: 'Básico', 'Continuo', 'Escribir entrada', 'Mensajes públicos', 'Mensajes'." - -#: 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" diff --git a/appnet/lang/es/strings.php b/appnet/lang/es/strings.php deleted file mode 100644 index 020c6f35c..000000000 --- a/appnet/lang/es/strings.php +++ /dev/null @@ -1,29 +0,0 @@ -strings["Permission denied."] = "Permiso denegado"; -$a->strings["You are now authenticated to app.net. "] = "Ahora está autenticado en app.net."; -$a->strings["Error fetching token. Please try again.
"] = "Advertencia de error. Por favor inténtelo de nuevo.
"; -$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["Error fetching user profile. Please clear the configuration and try again.
"] = "Advertencia de error de perfil. Por favor borre la configuración e inténtelo de nuevo.
"; -$a->strings["You have two ways to connect to App.net.
"] = "Tiene dos formas de conectar a App.net.
"; -$a->strings["First way: Register an application at https://account.app.net/developer/apps/ and enter Client ID and Client Secret. "] = "
Primera forma: Registrar una aplicación en https://account.app.net/developer/apps/ y seleccionar Client ID y Client Secret. "; -$a->strings["Use '%s' as Redirect URI
"] = "Use '%s' como Redirigir URI"; -$a->strings["Client ID"] = "ID de cliente"; -$a->strings["Client Secret"] = "Secreto de cliente"; -$a->strings["
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. "] = "
Segunda manera: traiga un símbolo a http://dev-lite.jonathonduerig.com/"; -$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.
"] = "Seleccione estas posibilidades: 'Básico', 'Continuo', 'Escribir entrada', 'Mensajes públicos', 'Mensajes'."; -$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"; diff --git a/appnet/lang/fr/messages.po b/appnet/lang/fr/messages.po deleted file mode 100644 index 6f5f2997d..000000000 --- a/appnet/lang/fr/messages.po +++ /dev/null @@ -1,119 +0,0 @@ -# ADDON appnet -# Copyright (C) -# This file is distributed under the same license as the Friendica appnet addon package. -# -# -# Translators: -# Hypolite PetovanError fetching token. Please try again.
" -msgstr "Impossible d'obtenir le jeton, merci de réessayer.
" - -#: 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 "" -"Error fetching user profile. Please clear the configuration and try " -"again.
" -msgstr "Impossible d'obtenir le profil utilisateur. Merci de réinitialiser la configuration et de réessayer.
" - -#: appnet.php:164 -msgid "You have two ways to connect to App.net.
" -msgstr "Vous avez deux possibilités pour vous connecter à App.net.
" - -#: appnet.php:166 -msgid "" -"First way: Register an application at https://account.app.net/developer/apps/" -" and enter Client ID and Client Secret. " -msgstr "
Première méthode: Enregistrer une application sur App.net [en] et entrez l'ID Client et le Secret Client. " - -#: appnet.php:167 -#, php-format -msgid "Use '%s' as Redirect URI
" -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 "" -"
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. " -msgstr "
Deuxième méthode: obtenez un jeton ur http://dev-lite.jonathonduerig.com/ [en]. " - -#: appnet.php:178 -msgid "" -"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', " -"'Messages'.
" -msgstr "Cochez les \"scopes\" suivant: \"Basic\", \"Stream\", \"Write Post\", \"Public Messages\", \"Messages\"." - -#: 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" diff --git a/appnet/lang/fr/strings.php b/appnet/lang/fr/strings.php deleted file mode 100644 index ef9fc9e24..000000000 --- a/appnet/lang/fr/strings.php +++ /dev/null @@ -1,29 +0,0 @@ - 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["Error fetching token. Please try again.
"] = "Impossible d'obtenir le jeton, merci de réessayer.
"; -$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["Error fetching user profile. Please clear the configuration and try again.
"] = "Impossible d'obtenir le profil utilisateur. Merci de réinitialiser la configuration et de réessayer.
"; -$a->strings["You have two ways to connect to App.net.
"] = "Vous avez deux possibilités pour vous connecter à App.net.
"; -$a->strings["First way: Register an application at https://account.app.net/developer/apps/ and enter Client ID and Client Secret. "] = "
Première méthode: Enregistrer une application sur App.net [en] et entrez l'ID Client et le Secret Client. "; -$a->strings["Use '%s' as Redirect URI
"] = "Utilisez '%s' pour l'URI de Redirection"; -$a->strings["Client ID"] = "ID Client"; -$a->strings["Client Secret"] = "Secret Client"; -$a->strings["
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. "] = "
Deuxième méthode: obtenez un jeton ur http://dev-lite.jonathonduerig.com/ [en]. "; -$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.
"] = "Cochez les \"scopes\" suivant: \"Basic\", \"Stream\", \"Write Post\", \"Public Messages\", \"Messages\"."; -$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"; diff --git a/appnet/lang/it/messages.po b/appnet/lang/it/messages.po deleted file mode 100644 index 17b933fe4..000000000 --- a/appnet/lang/it/messages.po +++ /dev/null @@ -1,118 +0,0 @@ -# ADDON appnet -# Copyright (C) -# This file is distributed under the same license as the Friendica appnet addon package. -# -# -# Translators: -# fabrixxmError fetching token. Please try again.
" -msgstr "Errore recuperando il token. Prova di nuovo
" - -#: 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 "" -"Error fetching user profile. Please clear the configuration and try " -"again.
" -msgstr "Errore recuperando il profilo utente. Svuota la configurazione e prova di nuovo.
" - -#: appnet.php:164 -msgid "You have two ways to connect to App.net.
" -msgstr "Puoi collegarti ad App.net in due modi.
" - -#: appnet.php:166 -msgid "" -"First way: Register an application at https://account.app.net/developer/apps/" -" and enter Client ID and Client Secret. " -msgstr "
Registrare un'applicazione su https://account.app.net/developer/apps/ e inserire Client ID e Client Secret." - -#: appnet.php:167 -#, php-format -msgid "Use '%s' as Redirect URI
" -msgstr "Usa '%s' come Redirect URI
" - -#: appnet.php:169 -msgid "Client ID" -msgstr "Client ID" - -#: appnet.php:173 -msgid "Client Secret" -msgstr "Client Secret" - -#: appnet.php:177 -msgid "" -"Second way: fetch a token at http://dev-lite.jonathonduerig.com/. " -msgstr "
Oppure puoi recuperare un token su http://dev-lite.jonathonduerig.com/." - -#: appnet.php:178 -msgid "" -"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', " -"'Messages'.
" -msgstr "Imposta gli ambiti 'Basic', 'Stream', 'Scrivi Post', 'Messaggi Pubblici', 'Messaggi'." - -#: 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" diff --git a/appnet/lang/it/strings.php b/appnet/lang/it/strings.php deleted file mode 100644 index 01c565246..000000000 --- a/appnet/lang/it/strings.php +++ /dev/null @@ -1,29 +0,0 @@ -strings["Permission denied."] = "Permesso negato."; -$a->strings["You are now authenticated to app.net. "] = "Sei autenticato su app.net"; -$a->strings["Error fetching token. Please try again.
"] = "Errore recuperando il token. Prova di nuovo
"; -$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["Error fetching user profile. Please clear the configuration and try again.
"] = "Errore recuperando il profilo utente. Svuota la configurazione e prova di nuovo.
"; -$a->strings["You have two ways to connect to App.net.
"] = "Puoi collegarti ad App.net in due modi.
"; -$a->strings["First way: Register an application at https://account.app.net/developer/apps/ and enter Client ID and Client Secret. "] = "
Registrare un'applicazione su https://account.app.net/developer/apps/ e inserire Client ID e Client Secret."; -$a->strings["Use '%s' as Redirect URI
"] = "Usa '%s' come Redirect URI
"; -$a->strings["Client ID"] = "Client ID"; -$a->strings["Client Secret"] = "Client Secret"; -$a->strings["Second way: fetch a token at http://dev-lite.jonathonduerig.com/. "] = "
Oppure puoi recuperare un token su http://dev-lite.jonathonduerig.com/."; -$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.
"] = "Imposta gli ambiti 'Basic', 'Stream', 'Scrivi Post', 'Messaggi Pubblici', 'Messaggi'."; -$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"; diff --git a/appnet/lang/nl/messages.po b/appnet/lang/nl/messages.po deleted file mode 100644 index 74653c760..000000000 --- a/appnet/lang/nl/messages.po +++ /dev/null @@ -1,118 +0,0 @@ -# ADDON appnet -# Copyright (C) -# This file is distributed under the same license as the Friendica appnet addon package. -# -# -# Translators: -# Jeroen SError fetching token. Please try again.
" -msgstr "Fout tijdens token fetching. Probeer het nogmaals.
" - -#: 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 "" -"Error fetching user profile. Please clear the configuration and try " -"again.
" -msgstr "Fout tijdens het ophalen van gebruikersprofiel. Leeg de configuratie en probeer het opnieuw.
" - -#: appnet.php:164 -msgid "You have two ways to connect to App.net.
" -msgstr "Er zijn twee manieren om met App.net te verbinden.
" - -#: appnet.php:166 -msgid "" -"First way: Register an application at https://account.app.net/developer/apps/" -" and enter Client ID and Client Secret. " -msgstr "" - -#: appnet.php:167 -#, php-format -msgid "Use '%s' as Redirect URI
" -msgstr "" - -#: appnet.php:169 -msgid "Client ID" -msgstr "" - -#: appnet.php:173 -msgid "Client Secret" -msgstr "" - -#: appnet.php:177 -msgid "" -"
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. " -msgstr "" - -#: appnet.php:178 -msgid "" -"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', " -"'Messages'.
" -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 "" diff --git a/appnet/lang/nl/strings.php b/appnet/lang/nl/strings.php deleted file mode 100644 index ba72e3643..000000000 --- a/appnet/lang/nl/strings.php +++ /dev/null @@ -1,29 +0,0 @@ -strings["Permission denied."] = "Toegang geweigerd"; -$a->strings["You are now authenticated to app.net. "] = "Je bent nu aangemeld bij app.net."; -$a->strings["Error fetching token. Please try again.
"] = "Fout tijdens token fetching. Probeer het nogmaals.
"; -$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["Error fetching user profile. Please clear the configuration and try again.
"] = "Fout tijdens het ophalen van gebruikersprofiel. Leeg de configuratie en probeer het opnieuw.
"; -$a->strings["You have two ways to connect to App.net.
"] = "Er zijn twee manieren om met App.net te verbinden.
"; -$a->strings["First way: Register an application at https://account.app.net/developer/apps/ and enter Client ID and Client Secret. "] = ""; -$a->strings["Use '%s' as Redirect URI
"] = ""; -$a->strings["Client ID"] = ""; -$a->strings["Client Secret"] = ""; -$a->strings["
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. "] = ""; -$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.
"] = ""; -$a->strings["Token"] = ""; -$a->strings["Sign in using App.net"] = ""; -$a->strings["Clear OAuth configuration"] = ""; -$a->strings["Save Settings"] = ""; diff --git a/appnet/lang/pt-br/messages.po b/appnet/lang/pt-br/messages.po deleted file mode 100644 index c279c7dd1..000000000 --- a/appnet/lang/pt-br/messages.po +++ /dev/null @@ -1,119 +0,0 @@ -# ADDON appnet -# Copyright (C) -# This file is distributed under the same license as the Friendica appnet addon package. -# -# -# Translators: -# Beatriz VitalError fetching token. Please try again.
" -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 "" -"Error fetching user profile. Please clear the configuration and try " -"again.
" -msgstr "Erro na obtenção do perfil do usuário. Confira as configurações e tente novamente." - -#: appnet.php:164 -msgid "You have two ways to connect to App.net.
" -msgstr "Você possui duas formas de conectar ao App.net
" - -#: appnet.php:166 -msgid "" -"First way: Register an application at https://account.app.net/developer/apps/" -" and enter Client ID and Client Secret. " -msgstr "
1º Método: Registre uma aplicação em https://account.app.net/developer/apps/ e entre o Client ID e Client Secret" - -#: appnet.php:167 -#, php-format -msgid "Use '%s' as Redirect URI
" -msgstr "Use '%s' como URI redirecionador
" - -#: appnet.php:169 -msgid "Client ID" -msgstr "Client ID" - -#: appnet.php:173 -msgid "Client Secret" -msgstr "Client Secret" - -#: appnet.php:177 -msgid "" -"
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. " -msgstr "
2º Método: obtenha um token em http://dev-lite.jonathonduerig.com/. " - -#: appnet.php:178 -msgid "" -"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', " -"'Messages'.
" -msgstr "Adicione valor as estas saídas: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'." - -#: 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" diff --git a/appnet/lang/pt-br/strings.php b/appnet/lang/pt-br/strings.php deleted file mode 100644 index b8e1112c6..000000000 --- a/appnet/lang/pt-br/strings.php +++ /dev/null @@ -1,29 +0,0 @@ - 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["Error fetching token. Please try again.
"] = "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["Error fetching user profile. Please clear the configuration and try again.
"] = "Erro na obtenção do perfil do usuário. Confira as configurações e tente novamente."; -$a->strings["You have two ways to connect to App.net.
"] = "Você possui duas formas de conectar ao App.net
"; -$a->strings["First way: Register an application at https://account.app.net/developer/apps/ and enter Client ID and Client Secret. "] = "
1º Método: Registre uma aplicação em https://account.app.net/developer/apps/ e entre o Client ID e Client Secret"; -$a->strings["Use '%s' as Redirect URI
"] = "Use '%s' como URI redirecionador
"; -$a->strings["Client ID"] = "Client ID"; -$a->strings["Client Secret"] = "Client Secret"; -$a->strings["
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. "] = "
2º Método: obtenha um token em http://dev-lite.jonathonduerig.com/. "; -$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.
"] = "Adicione valor as estas saídas: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'."; -$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"; diff --git a/appnet/lang/ro/messages.po b/appnet/lang/ro/messages.po deleted file mode 100644 index a9c5242f5..000000000 --- a/appnet/lang/ro/messages.po +++ /dev/null @@ -1,117 +0,0 @@ -# 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 MuncitoriError fetching token. Please try again.
" -msgstr "Eroare la procesarea token-ului. Vă rugăm să reîncercați.
" - -#: 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 "" -"Error fetching user profile. Please clear the configuration and try " -"again.
" -msgstr "Eroare la procesarea profilului de utilizator. Vă rugăm să ștergeți configurarea şi apoi reîncercați.
" - -#: appnet.php:164 -msgid "You have two ways to connect to App.net.
" -msgstr "Aveți două modalități de a vă conecta la App.net.
" - -#: appnet.php:166 -msgid "" -"First way: Register an application at https://account.app.net/developer/apps/" -" and enter Client ID and Client Secret. " -msgstr "
Prima modalitate: Înregistrați o cerere pe https://account.app.net/developer/apps/ şi introduceți ID Client şi Cheia Secretă Client." - -#: appnet.php:167 -#, php-format -msgid "Use '%s' as Redirect URI
" -msgstr "Utilizați '%s' ca URI de Redirecţionare
" - -#: appnet.php:169 -msgid "Client ID" -msgstr "ID Client" - -#: appnet.php:173 -msgid "Client Secret" -msgstr "Cheia Secretă Client" - -#: appnet.php:177 -msgid "" -"
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. " -msgstr "
A doua cale: autorizați un indicativ de acces token de pe http://dev-lite.jonathonduerig.com/ ." - -#: appnet.php:178 -msgid "" -"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', " -"'Messages'.
" -msgstr "Stabiliți aceste scopuri: 'De Bază', 'Flux', 'Scriere Postare', 'Mesaje Publice', 'Mesaje'." - -#: 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" diff --git a/appnet/lang/ro/strings.php b/appnet/lang/ro/strings.php deleted file mode 100644 index fa8d139d5..000000000 --- a/appnet/lang/ro/strings.php +++ /dev/null @@ -1,29 +0,0 @@ -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["Error fetching token. Please try again.
"] = "Eroare la procesarea token-ului. Vă rugăm să reîncercați.
"; -$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["Error fetching user profile. Please clear the configuration and try again.
"] = "Eroare la procesarea profilului de utilizator. Vă rugăm să ștergeți configurarea şi apoi reîncercați.
"; -$a->strings["You have two ways to connect to App.net.
"] = "Aveți două modalități de a vă conecta la App.net.
"; -$a->strings["First way: Register an application at https://account.app.net/developer/apps/ and enter Client ID and Client Secret. "] = "
Prima modalitate: Înregistrați o cerere pe https://account.app.net/developer/apps/ şi introduceți ID Client şi Cheia Secretă Client."; -$a->strings["Use '%s' as Redirect URI
"] = "Utilizați '%s' ca URI de Redirecţionare
"; -$a->strings["Client ID"] = "ID Client"; -$a->strings["Client Secret"] = "Cheia Secretă Client"; -$a->strings["
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. "] = "
A doua cale: autorizați un indicativ de acces token de pe http://dev-lite.jonathonduerig.com/ ."; -$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.
"] = "Stabiliți aceste scopuri: 'De Bază', 'Flux', 'Scriere Postare', 'Mesaje Publice', 'Mesaje'."; -$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"; diff --git a/appnet/lang/ru/messages.po b/appnet/lang/ru/messages.po deleted file mode 100644 index a5755caa3..000000000 --- a/appnet/lang/ru/messages.po +++ /dev/null @@ -1,118 +0,0 @@ -# ADDON appnet -# Copyright (C) -# This file is distributed under the same license as the Friendica appnet addon package. -# -# -# Translators: -# Stanislav N.Error fetching token. Please try again.
" -msgstr "Ошибка получения токена. Попробуйте еще раз.
" - -#: 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 "" -"Error fetching user profile. Please clear the configuration and try " -"again.
" -msgstr "Ошибка при получении профиля пользователя. Сбросьте конфигурацию и попробуйте еще раз.
" - -#: appnet.php:164 -msgid "You have two ways to connect to App.net.
" -msgstr "У вас есть два способа соединения с App.net.
" - -#: appnet.php:166 -msgid "" -"First way: Register an application at https://account.app.net/developer/apps/" -" and enter Client ID and Client Secret. " -msgstr "
Первый способ: зарегистрируйте приложение на https://account.app.net/developer/apps/ и введите Client ID и Client Secret" - -#: appnet.php:167 -#, php-format -msgid "Use '%s' as Redirect URI
" -msgstr "Используйте '%s' как Redirect URI
" - -#: appnet.php:169 -msgid "Client ID" -msgstr "Client ID" - -#: appnet.php:173 -msgid "Client Secret" -msgstr "Client Secret" - -#: appnet.php:177 -msgid "" -"
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. " -msgstr "
Второй путь: получите токен на http://dev-lite.jonathonduerig.com/. " - -#: appnet.php:178 -msgid "" -"Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', " -"'Messages'.
" -msgstr "Выберите области: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'." - -#: 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 "Сохранить настройки" diff --git a/appnet/lang/ru/strings.php b/appnet/lang/ru/strings.php deleted file mode 100644 index c2d9b440f..000000000 --- a/appnet/lang/ru/strings.php +++ /dev/null @@ -1,29 +0,0 @@ -=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["Error fetching token. Please try again.
"] = "Ошибка получения токена. Попробуйте еще раз.
"; -$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["Error fetching user profile. Please clear the configuration and try again.
"] = "Ошибка при получении профиля пользователя. Сбросьте конфигурацию и попробуйте еще раз.
"; -$a->strings["You have two ways to connect to App.net.
"] = "У вас есть два способа соединения с App.net.
"; -$a->strings["First way: Register an application at https://account.app.net/developer/apps/ and enter Client ID and Client Secret. "] = "
Первый способ: зарегистрируйте приложение на https://account.app.net/developer/apps/ и введите Client ID и Client Secret"; -$a->strings["Use '%s' as Redirect URI
"] = "Используйте '%s' как Redirect URI
"; -$a->strings["Client ID"] = "Client ID"; -$a->strings["Client Secret"] = "Client Secret"; -$a->strings["
Second way: fetch a token at http://dev-lite.jonathonduerig.com/. "] = "
Второй путь: получите токен на http://dev-lite.jonathonduerig.com/. "; -$a->strings["Set these scopes: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'.
"] = "Выберите области: 'Basic', 'Stream', 'Write Post', 'Public Messages', 'Messages'."; -$a->strings["Token"] = "Токен"; -$a->strings["Sign in using App.net"] = "Войти через App.net"; -$a->strings["Clear OAuth configuration"] = "Удалить конфигурацию OAuth"; -$a->strings["Save Settings"] = "Сохранить настройки"; diff --git a/appnet/templates/admin.tpl b/appnet/templates/admin.tpl deleted file mode 100644 index a933f3d3b..000000000 --- a/appnet/templates/admin.tpl +++ /dev/null @@ -1,3 +0,0 @@ -{{include file="field_input.tpl" field=$clientid}} -{{include file="field_input.tpl" field=$clientsecret}} - diff --git a/blackout/blackout.php b/blackout/blackout.php index ec7215ab2..28e5567f7 100644 --- a/blackout/blackout.php +++ b/blackout/blackout.php @@ -36,10 +36,10 @@ * 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 @@ -70,9 +70,9 @@ function blackout_redirect ($a, $b) { return true; // else... - $mystart = get_config('blackout','begindate'); - $myend = get_config('blackout','enddate'); - $myurl = get_config('blackout','url'); + $mystart = Config::get('blackout','begindate'); + $myend = Config::get('blackout','enddate'); + $myurl = Config::get('blackout','url'); $now = time(); $date1 = DateTime::createFromFormat('Y-m-d G:i', $mystart); $date2 = DateTime::createFromFormat('Y-m-d G:i', $myend); @@ -92,9 +92,9 @@ function blackout_redirect ($a, $b) { function blackout_addon_admin(&$a, &$o) { $mystart = Config::get('blackout','begindate'); if (! is_string($mystart)) { $mystart = "YYYY-MM-DD:hhmm"; } - $myend = get_config('blackout','enddate'); + $myend = Config::get('blackout','enddate'); if (! is_string($myend)) { $myend = "YYYY-MM-DD:hhmm"; } - $myurl = get_config('blackout','url'); + $myurl = Config::get('blackout','url'); if (! is_string($myurl)) { $myurl = "http://www.example.com"; } $t = get_markup_template( "admin.tpl", "addon/blackout/" ); @@ -104,7 +104,7 @@ function blackout_addon_admin(&$a, &$o) { '$startdate' => ["startdate", "Begin of the Blackout".t('You can download public events from: ').$a->get_baseurl()."/cal/username/export/ical
"; - } 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/format'; - - $s .= ''; - $s .= '' . L10n::t('To connect to your GNU Social account click the button below to get a security code from GNU Social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU Social.') . '
'; @@ -366,8 +322,8 @@ function statusnet_settings(&$a,&$s) { $s .= '' . L10n::t('Currently connected to: ') . '' . $details->screen_name . '
' . $details->description . '
' . L10n::t('If enabled all your public postings can be posted to the associated GNU Social account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry.') . '
'; @@ -427,8 +383,8 @@ function statusnet_settings(&$a,&$s) { $s .= ''; } - -function statusnet_post_local(&$a, &$b) { +function statusnet_post_local(App $a, &$b) +{ if ($b['edit']) { return; } @@ -437,11 +393,11 @@ function statusnet_post_local(&$a, &$b) { return; } - $statusnet_post = get_pconfig(local_user(),'statusnet','post'); - $statusnet_enable = (($statusnet_post && x($_REQUEST,'statusnet_enable')) ? intval($_REQUEST['statusnet_enable']) : 0); + $statusnet_post = PConfig::get(local_user(), 'statusnet', 'post'); + $statusnet_enable = (($statusnet_post && x($_REQUEST, 'statusnet_enable')) ? intval($_REQUEST['statusnet_enable']) : 0); // if API is used, default to the chosen settings - if ($b['api_source'] && intval(get_pconfig(local_user(),'statusnet','post_by_default'))) { + if ($b['api_source'] && intval(PConfig::get(local_user(), 'statusnet', 'post_by_default'))) { $statusnet_enable = 1; } @@ -456,64 +412,61 @@ function statusnet_post_local(&$a, &$b) { $b['postopts'] .= 'statusnet'; } -function statusnet_action($a, $uid, $pid, $action) { - $api = get_pconfig($uid, 'statusnet', 'baseapi'); - $ckey = get_pconfig($uid, 'statusnet', 'consumerkey'); - $csecret = get_pconfig($uid, 'statusnet', 'consumersecret'); - $otoken = get_pconfig($uid, 'statusnet', 'oauthtoken'); - $osecret = get_pconfig($uid, 'statusnet', 'oauthsecret'); +function statusnet_action(App $a, $uid, $pid, $action) +{ + $api = PConfig::get($uid, 'statusnet', 'baseapi'); + $ckey = PConfig::get($uid, 'statusnet', 'consumerkey'); + $csecret = PConfig::get($uid, 'statusnet', 'consumersecret'); + $otoken = PConfig::get($uid, 'statusnet', 'oauthtoken'); + $osecret = PConfig::get($uid, 'statusnet', 'oauthsecret'); - $connection = new StatusNetOAuth($api,$ckey,$csecret,$otoken,$osecret); + $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret); - logger("statusnet_action '".$action."' ID: ".$pid, LOGGER_DATA); + logger("statusnet_action '" . $action . "' ID: " . $pid, LOGGER_DATA); switch ($action) { case "delete": - $result = $connection->post("statuses/destroy/".$pid); + $result = $connection->post("statuses/destroy/" . $pid); break; case "like": - $result = $connection->post("favorites/create/".$pid); + $result = $connection->post("favorites/create/" . $pid); break; case "unlike": - $result = $connection->post("favorites/destroy/".$pid); + $result = $connection->post("favorites/destroy/" . $pid); break; } - logger("statusnet_action '".$action."' send, result: " . print_r($result, true), LOGGER_DEBUG); + logger("statusnet_action '" . $action . "' send, result: " . print_r($result, true), LOGGER_DEBUG); } -function statusnet_post_hook(&$a,&$b) { - +function statusnet_post_hook(App $a, &$b) +{ /** * Post to GNU Social */ - - if (!get_pconfig($b["uid"],'statusnet','import')) { - if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) + if (!PConfig::get($b["uid"], 'statusnet', 'import')) { + if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) return; } - $api = get_pconfig($b["uid"], 'statusnet', 'baseapi'); + $api = PConfig::get($b["uid"], 'statusnet', 'baseapi'); $hostname = preg_replace("=https?://([\w\.]*)/.*=ism", "$1", $api); - if($b['parent'] != $b['id']) { - logger("statusnet_post_hook: parameter ".print_r($b, true), LOGGER_DATA); + if ($b['parent'] != $b['id']) { + logger("statusnet_post_hook: parameter " . print_r($b, true), LOGGER_DATA); // Looking if its a reply to a GNU Social post $hostlength = strlen($hostname) + 2; - if ((substr($b["parent-uri"], 0, $hostlength) != $hostname."::") && (substr($b["extid"], 0, $hostlength) != $hostname."::") - && (substr($b["thr-parent"], 0, $hostlength) != $hostname."::")) { - logger("statusnet_post_hook: no GNU Social post ".$b["parent"]); + if ((substr($b["parent-uri"], 0, $hostlength) != $hostname . "::") && (substr($b["extid"], 0, $hostlength) != $hostname . "::") && (substr($b["thr-parent"], 0, $hostlength) != $hostname . "::")) { + logger("statusnet_post_hook: no GNU Social post " . $b["parent"]); return; } $r = q("SELECT `item`.`author-link`, `item`.`uri`, `contact`.`nick` AS contact_nick FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` - WHERE `item`.`uri` = '%s' AND `item`.`uid` = %d LIMIT 1", - dbesc($b["thr-parent"]), - intval($b["uid"])); + WHERE `item`.`uri` = '%s' AND `item`.`uid` = %d LIMIT 1", dbesc($b["thr-parent"]), intval($b["uid"])); - if(!count($r)) { - logger("statusnet_post_hook: no parent found ".$b["thr-parent"]); + if (!count($r)) { + logger("statusnet_post_hook: no parent found " . $b["thr-parent"]); return; } else { $iscomment = true; @@ -525,26 +478,36 @@ function statusnet_post_hook(&$a,&$b) { $nick = preg_replace("=https?://(.*)/(.*)=ism", "$2", $orig_post["author-link"]); - $nickname = "@[url=".$orig_post["author-link"]."]".$nick."[/url]"; - $nicknameplain = "@".$nick; + $nickname = "@[url=" . $orig_post["author-link"] . "]" . $nick . "[/url]"; + $nicknameplain = "@" . $nick; - logger("statusnet_post_hook: 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("statusnet_post_hook: 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("statusnet_post_hook: parent found ".print_r($orig_post, true), LOGGER_DEBUG); + logger("statusnet_post_hook: parent found " . print_r($orig_post, true), LOGGER_DEBUG); } else { $iscomment = false; - if($b['private'] || !strstr($b['postopts'],'statusnet')) + if ($b['private'] || !strstr($b['postopts'], 'statusnet')) { return; + } + + // Dont't post if the post doesn't belong to us. + // This is a check for forum postings + $self = dba::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]); + if ($b['contact-id'] != $self['id']) { + return; + } } - if (($b['verb'] == ACTIVITY_POST) && $b['deleted']) + if (($b['verb'] == ACTIVITY_POST) && $b['deleted']) { statusnet_action($a, $b["uid"], substr($orig_post["uri"], $hostlength), "delete"); + } - if($b['verb'] == ACTIVITY_LIKE) { - logger("statusnet_post_hook: parameter 2 ".substr($b["thr-parent"], $hostlength), LOGGER_DEBUG); + if ($b['verb'] == ACTIVITY_LIKE) { + logger("statusnet_post_hook: parameter 2 " . substr($b["thr-parent"], $hostlength), LOGGER_DEBUG); if ($b['deleted']) statusnet_action($a, $b["uid"], substr($b["thr-parent"], $hostlength), "unlike"); else @@ -552,36 +515,39 @@ function statusnet_post_hook(&$a,&$b) { return; } - if($b['deleted'] || ($b['created'] !== $b['edited'])) + if ($b['deleted'] || ($b['created'] !== $b['edited'])) { return; + } // if posts comes from GNU Social don't send it back - if($b['extid'] == NETWORK_STATUSNET) + if ($b['extid'] == NETWORK_STATUSNET) { return; + } - if($b['app'] == "StatusNet") + if ($b['app'] == "StatusNet") { return; + } logger('GNU Socialpost invoked'); - load_pconfig($b['uid'], 'statusnet'); + PConfig::load($b['uid'], 'statusnet'); - $api = get_pconfig($b['uid'], 'statusnet', 'baseapi'); - $ckey = get_pconfig($b['uid'], 'statusnet', 'consumerkey'); - $csecret = get_pconfig($b['uid'], 'statusnet', 'consumersecret'); - $otoken = get_pconfig($b['uid'], 'statusnet', 'oauthtoken'); - $osecret = get_pconfig($b['uid'], 'statusnet', 'oauthsecret'); - - if($ckey && $csecret && $otoken && $osecret) { + $api = PConfig::get($b['uid'], 'statusnet', 'baseapi'); + $ckey = PConfig::get($b['uid'], 'statusnet', 'consumerkey'); + $csecret = PConfig::get($b['uid'], 'statusnet', 'consumersecret'); + $otoken = PConfig::get($b['uid'], 'statusnet', 'oauthtoken'); + $osecret = PConfig::get($b['uid'], 'statusnet', 'oauthsecret'); + if ($ckey && $csecret && $otoken && $osecret) { // If it's a repeated message from GNU Social then do a native retweet and exit - if (statusnet_is_retweet($a, $b['uid'], $b['body'])) + if (statusnet_is_retweet($a, $b['uid'], $b['body'])) { return; + } $dent = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret); $max_char = $dent->get_maxlength(); // max. length for a dent - set_pconfig($b['uid'], 'statusnet', 'max_char', $max_char); + PConfig::set($b['uid'], 'statusnet', 'max_char', $max_char); $tempfile = ""; $msgarr = BBCode::toPlaintext($b, $max_char, true, 7); @@ -596,20 +562,22 @@ function statusnet_post_hook(&$a,&$b) { $msg .= " \n" . $msgarr["url"]; } elseif (isset($msgarr["image"]) && ($msgarr["type"] != "video")) { $image = $msgarr["image"]; + } if ($image != "") { $img_str = Network::fetchUrl($image); $tempfile = tempnam(get_temppath(), "cache"); file_put_contents($tempfile, $img_str); - $postdata = array("status" => $msg, "media[]" => $tempfile); - } else - $postdata = array("status"=>$msg); + $postdata = ["status" => $msg, "media[]" => $tempfile]; + } else { + $postdata = ["status" => $msg]; + } // and now send it :-) if (strlen($msg)) { if ($iscomment) { $postdata["in_reply_to_status_id"] = substr($orig_post["uri"], $hostlength); - logger('statusnet_post send reply '.print_r($postdata, true), LOGGER_DEBUG); + logger('statusnet_post send reply ' . print_r($postdata, true), LOGGER_DEBUG); } // New code that is able to post pictures @@ -620,21 +588,23 @@ function statusnet_post_hook(&$a,&$b) { $cb->setToken($otoken, $osecret); $result = $cb->statuses_update($postdata); //$result = $dent->post('statuses/update', $postdata); - logger('statusnet_post send, result: ' . print_r($result, true). - "\nmessage: ".$msg, LOGGER_DEBUG."\nOriginal post: ".print_r($b, true)."\nPost Data: ".print_r($postdata, true)); + logger('statusnet_post send, result: ' . print_r($result, true) . + "\nmessage: " . $msg, LOGGER_DEBUG . "\nOriginal post: " . print_r($b, true) . "\nPost Data: " . print_r($postdata, true)); - if ($result->source) - set_pconfig($b["uid"], "statusnet", "application_name", strip_tags($result->source)); + if ($result->source) { + PConfig::set($b["uid"], "statusnet", "application_name", strip_tags($result->source)); + } if ($result->error) { - logger('Send to GNU Social failed: "'.$result->error.'"'); + logger('Send to GNU Social failed: "' . $result->error . '"'); } elseif ($iscomment) { logger('statusnet_post: Update extid ' . $result->id . " for post id " . $b['id']); Item::update(['extid' => $hostname . "::" . $result->id, 'body' => $result->text], ['id' => $b['id']]); } } - if ($tempfile != "") + if ($tempfile != "") { unlink($tempfile); + } } } @@ -642,34 +612,32 @@ function statusnet_addon_admin_post(App $a) { $sites = []; - $sites = array(); - - foreach($_POST['sitename'] as $id=>$sitename){ - $sitename=trim($sitename); - $apiurl=trim($_POST['apiurl'][$id]); - if (! (substr($apiurl, -1)=='/')) - $apiurl=$apiurl.'/'; - $secret=trim($_POST['secret'][$id]); - $key=trim($_POST['key'][$id]); + foreach ($_POST['sitename'] as $id => $sitename) { + $sitename = trim($sitename); + $apiurl = trim($_POST['apiurl'][$id]); + if (!(substr($apiurl, -1) == '/')) { + $apiurl = $apiurl . '/'; + } + $secret = trim($_POST['secret'][$id]); + $key = trim($_POST['key'][$id]); //$applicationname = ((x($_POST, 'applicationname')) ? notags(trim($_POST['applicationname'][$id])):''); - if ($sitename!="" && - $apiurl!="" && - $secret!="" && - $key!="" && - !x($_POST['delete'][$id])){ + if ($sitename != "" && + $apiurl != "" && + $secret != "" && + $key != "" && + !x($_POST['delete'][$id])) { - $sites[] = Array( - 'sitename' => $sitename, - 'apiurl' => $apiurl, - 'consumersecret' => $secret, - 'consumerkey' => $key, - //'applicationname' => $applicationname - ); + $sites[] = [ + 'sitename' => $sitename, + 'apiurl' => $apiurl, + 'consumersecret' => $secret, + 'consumerkey' => $key, + //'applicationname' => $applicationname + ]; } } - $sites = set_config('statusnet','sites', $sites); - + $sites = Config::set('statusnet', 'sites', $sites); } function statusnet_addon_admin(App $a, &$o) @@ -684,8 +652,8 @@ function statusnet_addon_admin(App $a, &$o) 'secret' => ["secret[$id]", "Secret", $s['consumersecret'], ""], 'key' => ["key[$id]", "Key", $s['consumerkey'], ""], //'applicationname' => Array("applicationname[$id]", "Application name", $s['applicationname'], ""), - 'delete' => Array("delete[$id]", "Delete", False , "Check to delete this preset"), - ); + 'delete' => ["delete[$id]", "Delete", False, "Check to delete this preset"], + ]; } } /* empty form to add new site */ @@ -702,17 +670,20 @@ function statusnet_addon_admin(App $a, &$o) $o = replace_macros($t, [ '$submit' => L10n::t('Save Settings'), '$sites' => $sitesform, - )); + ]); } -function statusnet_prepare_body(&$a,&$b) { - if ($b["item"]["network"] != NETWORK_STATUSNET) - return; +function statusnet_prepare_body(App $a, &$b) +{ + if ($b["item"]["network"] != NETWORK_STATUSNET) { + return; + } - if ($b["preview"]) { - $max_char = get_pconfig(local_user(),'statusnet','max_char'); - if (intval($max_char) == 0) + if ($b["preview"]) { + $max_char = PConfig::get(local_user(), 'statusnet', 'max_char'); + if (intval($max_char) == 0) { $max_char = 140; + } $item = $b["item"]; $item["plink"] = $a->get_baseurl() . "/display/" . $a->user["nickname"] . "/" . $item["parent"]; @@ -723,46 +694,48 @@ function statusnet_prepare_body(&$a,&$b) { dbesc($item["thr-parent"]), intval(local_user())); - if(count($r)) { - $orig_post = $r[0]; + if (count($r)) { + $orig_post = $r[0]; //$nickname = "@[url=".$orig_post["author-link"]."]".$orig_post["contact_nick"]."[/url]"; //$nicknameplain = "@".$orig_post["contact_nick"]; $nick = preg_replace("=https?://(.*)/(.*)=ism", "$2", $orig_post["author-link"]); - $nickname = "@[url=".$orig_post["author-link"]."]".$nick."[/url]"; - $nicknameplain = "@".$nick; + $nickname = "@[url=" . $orig_post["author-link"] . "]" . $nick . "[/url]"; + $nicknameplain = "@" . $nick; - if ((strpos($item["body"], $nickname) === false) && (strpos($item["body"], $nicknameplain) === false)) - $item["body"] = $nickname." ".$item["body"]; - } + if ((strpos($item["body"], $nickname) === false) && (strpos($item["body"], $nicknameplain) === false)) { + $item["body"] = $nickname . " " . $item["body"]; + } + } $msgarr = BBCode::toPlaintext($item, $max_char, true, 7); $msg = $msgarr["text"]; - $msgarr = plaintext($a, $item, $max_char, true, 7); - $msg = $msgarr["text"]; + if (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) { + $msg .= " " . $msgarr["url"]; + } - if (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) - $msg .= " ".$msgarr["url"]; + if (isset($msgarr["image"])) { + $msg .= " " . $msgarr["image"]; + } - if (isset($msgarr["image"])) - $msg .= " ".$msgarr["image"]; - - $b['html'] = nl2br(htmlspecialchars($msg)); - } + $b['html'] = nl2br(htmlspecialchars($msg)); + } } -function statusnet_cron($a,$b) { - $last = get_config('statusnet','last_poll'); +function statusnet_cron(App $a, $b) +{ + $last = Config::get('statusnet', 'last_poll'); - $poll_interval = intval(get_config('statusnet','poll_interval')); - if(! $poll_interval) + $poll_interval = intval(Config::get('statusnet', 'poll_interval')); + if (!$poll_interval) { $poll_interval = STATUSNET_DEFAULT_POLL_INTERVAL; + } - if($last) { + if ($last) { $next = $last + ($poll_interval * 60); - if($next > time()) { + if ($next > time()) { logger('statusnet: poll intervall not reached'); return; } @@ -770,171 +743,188 @@ function statusnet_cron($a,$b) { logger('statusnet: cron_start'); $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'statusnet' AND `k` = 'mirror_posts' AND `v` = '1' ORDER BY RAND() "); - if(count($r)) { - foreach($r as $rr) { - logger('statusnet: fetching for user '.$rr['uid']); + if (count($r)) { + foreach ($r as $rr) { + logger('statusnet: fetching for user ' . $rr['uid']); statusnet_fetchtimeline($a, $rr['uid']); } } - $abandon_days = intval(get_config('system','account_abandon_days')); - if ($abandon_days < 1) + $abandon_days = intval(Config::get('system', 'account_abandon_days')); + if ($abandon_days < 1) { $abandon_days = 0; + } $abandon_limit = date(DateTimeFormat::MYSQL, time() - $abandon_days * 86400); $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'statusnet' AND `k` = 'import' AND `v` ORDER BY RAND()"); - if(count($r)) { - foreach($r as $rr) { + 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'); + logger('abandoned account: timeline from user ' . $rr['uid'] . ' will not be imported'); continue; } } - logger('statusnet: importing timeline from user '.$rr['uid']); + logger('statusnet: importing timeline from user ' . $rr['uid']); statusnet_fetchhometimeline($a, $rr["uid"], $rr["v"]); } } logger('statusnet: cron_end'); - set_config('statusnet','last_poll', time()); + Config::set('statusnet', 'last_poll', time()); } -function statusnet_fetchtimeline($a, $uid) { - $ckey = get_pconfig($uid, 'statusnet', 'consumerkey'); - $csecret = get_pconfig($uid, 'statusnet', 'consumersecret'); - $api = get_pconfig($uid, 'statusnet', 'baseapi'); - $otoken = get_pconfig($uid, 'statusnet', 'oauthtoken'); - $osecret = get_pconfig($uid, 'statusnet', 'oauthsecret'); - $lastid = get_pconfig($uid, 'statusnet', 'lastid'); +function statusnet_fetchtimeline(App $a, $uid) +{ + $ckey = PConfig::get($uid, 'statusnet', 'consumerkey'); + $csecret = PConfig::get($uid, 'statusnet', 'consumersecret'); + $api = PConfig::get($uid, 'statusnet', 'baseapi'); + $otoken = PConfig::get($uid, 'statusnet', 'oauthtoken'); + $osecret = PConfig::get($uid, 'statusnet', 'oauthsecret'); + $lastid = PConfig::get($uid, 'statusnet', 'lastid'); - require_once('mod/item.php'); - require_once('include/items.php'); + require_once 'mod/item.php'; + require_once 'include/items.php'; // get the application name for the SN app // 1st try personal config, then system config and fallback to the // hostname of the node if neither one is set. - $application_name = get_pconfig( $uid, 'statusnet', 'application_name'); - if ($application_name == "") - $application_name = get_config('statusnet', 'application_name'); - if ($application_name == "") + $application_name = PConfig::get($uid, 'statusnet', 'application_name'); + if ($application_name == "") { + $application_name = Config::get('statusnet', 'application_name'); + } + if ($application_name == "") { $application_name = $a->get_hostname(); + } - $connection = new StatusNetOAuth($api, $ckey,$csecret,$otoken,$osecret); + $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret); - $parameters = array("exclude_replies" => true, "trim_user" => true, "contributor_details" => false, "include_rts" => false); + $parameters = ["exclude_replies" => true, "trim_user" => true, "contributor_details" => false, "include_rts" => false]; $first_time = ($lastid == ""); - if ($lastid <> "") + if ($lastid <> "") { $parameters["since_id"] = $lastid; + } $items = $connection->get('statuses/user_timeline', $parameters); - if (!is_array($items)) + if (!is_array($items)) { return; + } $posts = array_reverse($items); if (count($posts)) { - foreach ($posts as $post) { - if ($post->id > $lastid) - $lastid = $post->id; + foreach ($posts as $post) { + if ($post->id > $lastid) + $lastid = $post->id; - if ($first_time) - continue; - - if ($post->source == "activity") - continue; - - if (is_object($post->retweeted_status)) - continue; - - if ($post->in_reply_to_status_id != "") - continue; - - if (!stristr($post->source, $application_name)) { - $_SESSION["authenticated"] = true; - $_SESSION["uid"] = $uid; - - unset($_REQUEST); - $_REQUEST["type"] = "wall"; - $_REQUEST["api_source"] = true; - $_REQUEST["profile_uid"] = $uid; - //$_REQUEST["source"] = "StatusNet"; - $_REQUEST["source"] = $post->source; - $_REQUEST["extid"] = NETWORK_STATUSNET; - - if (isset($post->id)) { - $_REQUEST['message_id'] = item_new_uri($a->get_hostname(), $uid, NETWORK_STATUSNET.":".$post->id); + if ($first_time) { + continue; } - //$_REQUEST["date"] = $post->created_at; + if ($post->source == "activity") { + continue; + } - $_REQUEST["title"] = ""; + if (is_object($post->retweeted_status)) { + continue; + } - $_REQUEST["body"] = add_page_info_to_body($post->text, true); - if (is_string($post->place->name)) - $_REQUEST["location"] = $post->place->name; + if ($post->in_reply_to_status_id != "") { + continue; + } - if (is_string($post->place->full_name)) - $_REQUEST["location"] = $post->place->full_name; + if (!stristr($post->source, $application_name)) { + $_SESSION["authenticated"] = true; + $_SESSION["uid"] = $uid; - if (is_array($post->geo->coordinates)) - $_REQUEST["coord"] = $post->geo->coordinates[0]." ".$post->geo->coordinates[1]; + unset($_REQUEST); + $_REQUEST["type"] = "wall"; + $_REQUEST["api_source"] = true; + $_REQUEST["profile_uid"] = $uid; + //$_REQUEST["source"] = "StatusNet"; + $_REQUEST["source"] = $post->source; + $_REQUEST["extid"] = NETWORK_STATUSNET; - if (is_array($post->coordinates->coordinates)) - $_REQUEST["coord"] = $post->coordinates->coordinates[1]." ".$post->coordinates->coordinates[0]; + if (isset($post->id)) { + $_REQUEST['message_id'] = item_new_uri($a->get_hostname(), $uid, NETWORK_STATUSNET . ":" . $post->id); + } - //print_r($_REQUEST); - if ($_REQUEST["body"] != "") { - logger('statusnet: posting for user '.$uid); + //$_REQUEST["date"] = $post->created_at; - item_post($a); + $_REQUEST["title"] = ""; + + $_REQUEST["body"] = add_page_info_to_body($post->text, true); + if (is_string($post->place->name)) { + $_REQUEST["location"] = $post->place->name; + } + + if (is_string($post->place->full_name)) { + $_REQUEST["location"] = $post->place->full_name; + } + + if (is_array($post->geo->coordinates)) { + $_REQUEST["coord"] = $post->geo->coordinates[0] . " " . $post->geo->coordinates[1]; + } + + if (is_array($post->coordinates->coordinates)) { + $_REQUEST["coord"] = $post->coordinates->coordinates[1] . " " . $post->coordinates->coordinates[0]; + } + + //print_r($_REQUEST); + if ($_REQUEST["body"] != "") { + logger('statusnet: posting for user ' . $uid); + + item_post($a); + } } } - } } - set_pconfig($uid, 'statusnet', 'lastid', $lastid); + PConfig::set($uid, 'statusnet', 'lastid', $lastid); } -function statusnet_address($contact) { +function statusnet_address($contact) +{ $hostname = normalise_link($contact->statusnet_profile_url); $nickname = $contact->screen_name; $hostname = preg_replace("=https?://([\w\.]*)/.*=ism", "$1", $contact->statusnet_profile_url); - $address = $contact->screen_name."@".$hostname; + $address = $contact->screen_name . "@" . $hostname; - return($address); + return $address; } -function statusnet_fetch_contact($uid, $contact, $create_user) { - if ($contact->statusnet_profile_url == "") - return(-1); - - update_gcontact(array("url" => $contact->statusnet_profile_url, - "network" => NETWORK_STATUSNET, "photo" => $contact->profile_image_url, - "name" => $contact->name, "nick" => $contact->screen_name, - "location" => $contact->location, "about" => $contact->description, - "addr" => statusnet_address($contact), "generation" => 3)); - - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' AND `network` = '%s'LIMIT 1", - intval($uid), dbesc(normalise_link($contact->statusnet_profile_url)), dbesc(NETWORK_STATUSNET)); - - if(!count($r) && !$create_user) - return(0); - - if (count($r) && ($r[0]["readonly"] || $r[0]["blocked"])) { - logger("statusnet_fetch_contact: Contact '".$r[0]["nick"]."' is blocked or readonly.", LOGGER_DEBUG); - return(-1); +function statusnet_fetch_contact($uid, $contact, $create_user) +{ + if ($contact->statusnet_profile_url == "") { + return -1; } - if(!count($r)) { + GContact::update(["url" => $contact->statusnet_profile_url, + "network" => NETWORK_STATUSNET, "photo" => $contact->profile_image_url, + "name" => $contact->name, "nick" => $contact->screen_name, + "location" => $contact->location, "about" => $contact->description, + "addr" => statusnet_address($contact), "generation" => 3]); + + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' AND `network` = '%s'LIMIT 1", intval($uid), dbesc(normalise_link($contact->statusnet_profile_url)), dbesc(NETWORK_STATUSNET)); + + if (!count($r) && !$create_user) { + return 0; + } + + if (count($r) && ($r[0]["readonly"] || $r[0]["blocked"])) { + logger("statusnet_fetch_contact: 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`, @@ -964,23 +954,15 @@ function statusnet_fetch_contact($uid, $contact, $create_user) { intval($uid), dbesc(NETWORK_STATUSNET)); - 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']); + if (!count($r)) { + return false; } - require_once("Photo.php"); + $contact_id = $r[0]['id']; - $photos = import_profile_photo($contact->profile_image_url,$uid,$contact_id); + Group::addMember(User::getDefaultGroup($uid), $contact_id); + + $photos = Photo::importProfilePhoto($contact->profile_image_url, $uid, $contact_id); q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', @@ -999,14 +981,10 @@ function statusnet_fetch_contact($uid, $contact, $create_user) { $update_photo = ($r[0]['avatar-date'] < DateTimeFormat::utc('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("statusnet_fetch_contact: Updating contact " . $contact->screen_name, LOGGER_DEBUG); - if((!$r[0]['photo']) || (!$r[0]['thumb']) || (!$r[0]['micro']) || ($update_photo)) { - - logger("statusnet_fetch_contact: Updating contact ".$contact->screen_name, LOGGER_DEBUG); - - require_once("Photo.php"); - - $photos = import_profile_photo($contact->profile_image_url, $uid, $r[0]['id']); + $photos = Photo::importProfilePhoto($contact->profile_image_url, $uid, $r[0]['id']); q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', @@ -1040,15 +1018,16 @@ function statusnet_fetch_contact($uid, $contact, $create_user) { } } - return($r[0]["id"]); + return $r[0]["id"]; } -function statusnet_fetchuser($a, $uid, $screen_name = "", $user_id = "") { - $ckey = get_pconfig($uid, 'statusnet', 'consumerkey'); - $csecret = get_pconfig($uid, 'statusnet', 'consumersecret'); - $api = get_pconfig($uid, 'statusnet', 'baseapi'); - $otoken = get_pconfig($uid, 'statusnet', 'oauthtoken'); - $osecret = get_pconfig($uid, 'statusnet', 'oauthsecret'); +function statusnet_fetchuser(App $a, $uid, $screen_name = "", $user_id = "") +{ + $ckey = PConfig::get($uid, 'statusnet', 'consumerkey'); + $csecret = PConfig::get($uid, 'statusnet', 'consumersecret'); + $api = PConfig::get($uid, 'statusnet', 'baseapi'); + $otoken = PConfig::get($uid, 'statusnet', 'oauthtoken'); + $osecret = PConfig::get($uid, 'statusnet', 'oauthsecret'); require_once __DIR__ . DIRECTORY_SEPARATOR . 'library' . DIRECTORY_SEPARATOR . 'codebirdsn.php'; @@ -1059,40 +1038,44 @@ function statusnet_fetchuser($a, $uid, $screen_name = "", $user_id = "") { $r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1", intval($uid)); - if(count($r)) { + if (count($r)) { $self = $r[0]; - } else + } else { return; + } - $parameters = array(); + $parameters = []; - if ($screen_name != "") + if ($screen_name != "") { $parameters["screen_name"] = $screen_name; + } - if ($user_id != "") + if ($user_id != "") { $parameters["user_id"] = $user_id; + } // Fetching user data $user = $cb->users_show($parameters); - if (!is_object($user)) + if (!is_object($user)) { return; + } $contact_id = statusnet_fetch_contact($uid, $user, true); return $contact_id; } -function statusnet_createpost($a, $uid, $post, $self, $create_user, $only_existing_contact) { - - require_once("include/html2bbcode.php"); +function statusnet_createpost(App $a, $uid, $post, $self, $create_user, $only_existing_contact) +{ + require_once "include/html2bbcode.php"; logger("statusnet_createpost: start", LOGGER_DEBUG); - $api = get_pconfig($uid, 'statusnet', 'baseapi'); + $api = PConfig::get($uid, 'statusnet', 'baseapi'); $hostname = preg_replace("=https?://([\w\.]*)/.*=ism", "$1", $api); - $postarray = array(); + $postarray = []; $postarray['network'] = NETWORK_STATUSNET; $postarray['gravity'] = 0; $postarray['uid'] = $uid; @@ -1101,29 +1084,31 @@ function statusnet_createpost($a, $uid, $post, $self, $create_user, $only_existi if (is_object($post->retweeted_status)) { $content = $post->retweeted_status; statusnet_fetch_contact($uid, $content->user, false); - } else + } else { $content = $post; + } - $postarray['uri'] = $hostname."::".$content->id; + $postarray['uri'] = $hostname . "::" . $content->id; $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1", dbesc($postarray['uri']), intval($uid) - ); + ); - if (count($r)) - return(array()); + if (count($r)) { + return []; + } $contactid = 0; if ($content->in_reply_to_status_id != "") { - $parent = $hostname."::".$content->in_reply_to_status_id; + $parent = $hostname . "::" . $content->in_reply_to_status_id; $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", dbesc($parent), intval($uid) - ); + ); if (count($r)) { $postarray['thr-parent'] = $r[0]["uri"]; $postarray['parent-uri'] = $r[0]["parent-uri"]; @@ -1133,7 +1118,7 @@ function statusnet_createpost($a, $uid, $post, $self, $create_user, $only_existi $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1", dbesc($parent), intval($uid) - ); + ); if (count($r)) { $postarray['thr-parent'] = $r[0]['uri']; $postarray['parent-uri'] = $r[0]['parent-uri']; @@ -1147,20 +1132,21 @@ function statusnet_createpost($a, $uid, $post, $self, $create_user, $only_existi } // Is it me? - $own_url = get_pconfig($uid, 'statusnet', 'own_url'); + $own_url = PConfig::get($uid, 'statusnet', 'own_url'); if ($content->user->id == $own_url) { $r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1", intval($uid)); - if(count($r)) { + if (count($r)) { $contactid = $r[0]["id"]; - $postarray['owner-name'] = $r[0]["name"]; + $postarray['owner-name'] = $r[0]["name"]; $postarray['owner-link'] = $r[0]["url"]; - $postarray['owner-avatar'] = $r[0]["photo"]; - } else - return(array()); + $postarray['owner-avatar'] = $r[0]["photo"]; + } else { + return []; + } } // Don't create accounts of people who just comment something $create_user = false; @@ -1175,10 +1161,11 @@ function statusnet_createpost($a, $uid, $post, $self, $create_user, $only_existi $postarray['owner-link'] = $post->user->statusnet_profile_url; $postarray['owner-avatar'] = $post->user->profile_image_url; } - if(($contactid == 0) && !$only_existing_contact) + if (($contactid == 0) && !$only_existing_contact) { $contactid = $self['id']; - elseif ($contactid <= 0) - return(array()); + } elseif ($contactid <= 0) { + return []; + } $postarray['contact-id'] = $contactid; @@ -1189,9 +1176,9 @@ function statusnet_createpost($a, $uid, $post, $self, $create_user, $only_existi $postarray['author-avatar'] = $content->user->profile_image_url; // To-Do: Maybe unreliable? Can the api be entered without trailing "/"? - $hostname = str_replace("/api/", "/notice/", get_pconfig($uid, 'statusnet', 'baseapi')); + $hostname = str_replace("/api/", "/notice/", PConfig::get($uid, 'statusnet', 'baseapi')); - $postarray['plink'] = $hostname.$content->id; + $postarray['plink'] = $hostname . $content->id; $postarray['app'] = strip_tags($content->source); if ($content->user->protected) { @@ -1208,82 +1195,75 @@ function statusnet_createpost($a, $uid, $post, $self, $create_user, $only_existi $postarray['created'] = DateTimeFormat::utc($content->created_at); $postarray['edited'] = DateTimeFormat::utc($content->created_at); - if (is_string($content->place->name)) + if (is_string($content->place->name)) { $postarray["location"] = $content->place->name; + } - if (is_string($content->place->full_name)) + if (is_string($content->place->full_name)) { $postarray["location"] = $content->place->full_name; + } - if (is_array($content->geo->coordinates)) - $postarray["coord"] = $content->geo->coordinates[0]." ".$content->geo->coordinates[1]; + if (is_array($content->geo->coordinates)) { + $postarray["coord"] = $content->geo->coordinates[0] . " " . $content->geo->coordinates[1]; + } - if (is_array($content->coordinates->coordinates)) - $postarray["coord"] = $content->coordinates->coordinates[1]." ".$content->coordinates->coordinates[0]; + if (is_array($content->coordinates->coordinates)) { + $postarray["coord"] = $content->coordinates->coordinates[1] . " " . $content->coordinates->coordinates[0]; + } - /*if (is_object($post->retweeted_status)) { - $postarray['body'] = html2bbcode($post->retweeted_status->statusnet_html); - - $converted = statusnet_convertmsg($a, $postarray['body'], false); - $postarray['body'] = $converted["body"]; - $postarray['tag'] = $converted["tags"]; - - statusnet_fetch_contact($uid, $post->retweeted_status->user, false); - - // Let retweets look like wall-to-wall posts - $postarray['author-name'] = $post->retweeted_status->user->name; - $postarray['author-link'] = $post->retweeted_status->user->statusnet_profile_url; - $postarray['author-avatar'] = $post->retweeted_status->user->profile_image_url; - }*/ logger("statusnet_createpost: end", LOGGER_DEBUG); - return($postarray); + + return $postarray; } -function statusnet_checknotification($a, $uid, $own_url, $top_item, $postarray) { - +function statusnet_checknotification(App $a, $uid, $own_url, $top_item, $postarray) +{ // This function necer worked and need cleanup - $user = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` LIMIT 1", intval($uid) - ); + ); - if(!count($user)) + if (!count($user)) { return; + } // Is it me? - if (link_compare($user[0]["url"], $postarray['author-link'])) + if (link_compare($user[0]["url"], $postarray['author-link'])) { return; + } $own_user = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1", intval($uid), dbesc($own_url) - ); + ); - if(!count($own_user)) + if (!count($own_user)) { return; + } // Is it me from GNU Social? - if (link_compare($own_user[0]["url"], $postarray['author-link'])) + if (link_compare($own_user[0]["url"], $postarray['author-link'])) { 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)) { - - foreach($myconv as $conv) { + if (count($myconv)) { + foreach ($myconv as $conv) { // now if we find a match, it means we're in this conversation - - if(!link_compare($conv['author-link'],$user[0]["url"]) && !link_compare($conv['author-link'],$own_user[0]["url"])) + if (!link_compare($conv['author-link'], $user[0]["url"]) && !link_compare($conv['author-link'], $own_user[0]["url"])) { continue; + } - require_once('include/enotify.php'); + require_once 'include/enotify.php'; $conv_parent = $conv['parent']; - notification(array( - 'type' => NOTIFY_COMMENT, + notification([ + 'type' => NOTIFY_COMMENT, 'notify_flags' => $user[0]['notify-flags'], 'language' => $user[0]['language'], 'to_name' => $user[0]['username'], @@ -1294,10 +1274,10 @@ function statusnet_checknotification($a, $uid, $own_url, $top_item, $postarray) 'source_name' => $postarray['author-name'], 'source_link' => $postarray['author-link'], 'source_photo' => $postarray['author-avatar'], - 'verb' => ACTIVITY_POST, - 'otype' => 'item', - 'parent' => $conv_parent, - )); + 'verb' => ACTIVITY_POST, + 'otype' => 'item', + 'parent' => $conv_parent, + ]); // only send one notification break; @@ -1305,24 +1285,25 @@ function statusnet_checknotification($a, $uid, $own_url, $top_item, $postarray) } } -function statusnet_fetchhometimeline($a, $uid, $mode = 1) { - $conversations = array(); +function statusnet_fetchhometimeline(App $a, $uid, $mode = 1) +{ + $conversations = []; - $ckey = get_pconfig($uid, 'statusnet', 'consumerkey'); - $csecret = get_pconfig($uid, 'statusnet', 'consumersecret'); - $api = get_pconfig($uid, 'statusnet', 'baseapi'); - $otoken = get_pconfig($uid, 'statusnet', 'oauthtoken'); - $osecret = get_pconfig($uid, 'statusnet', 'oauthsecret'); - $create_user = get_pconfig($uid, 'statusnet', 'create_user'); + $ckey = PConfig::get($uid, 'statusnet', 'consumerkey'); + $csecret = PConfig::get($uid, 'statusnet', 'consumersecret'); + $api = PConfig::get($uid, 'statusnet', 'baseapi'); + $otoken = PConfig::get($uid, 'statusnet', 'oauthtoken'); + $osecret = PConfig::get($uid, 'statusnet', 'oauthsecret'); + $create_user = PConfig::get($uid, 'statusnet', 'create_user'); // "create_user" is deactivated, since currently you cannot add users manually by now $create_user = true; - logger("statusnet_fetchhometimeline: Fetching for user ".$uid, LOGGER_DEBUG); + logger("statusnet_fetchhometimeline: Fetching for user " . $uid, LOGGER_DEBUG); require_once 'include/items.php'; - $connection = new StatusNetOAuth($api, $ckey,$csecret,$otoken,$osecret); + $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret); $own_contact = statusnet_fetch_own_contact($a, $uid); @@ -1330,71 +1311,75 @@ function statusnet_fetchhometimeline($a, $uid, $mode = 1) { intval($own_contact), intval($uid)); - if(count($r)) { + if (count($r)) { $nick = $r[0]["nick"]; } else { - logger("statusnet_fetchhometimeline: Own GNU Social contact not found for user ".$uid, LOGGER_DEBUG); + logger("statusnet_fetchhometimeline: Own GNU Social contact not found for user " . $uid, LOGGER_DEBUG); return; } $r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1", intval($uid)); - if(count($r)) { + if (count($r)) { $self = $r[0]; } else { - logger("statusnet_fetchhometimeline: Own contact not found for user ".$uid, LOGGER_DEBUG); + logger("statusnet_fetchhometimeline: Own contact not found for user " . $uid, LOGGER_DEBUG); return; } $u = q("SELECT * FROM user WHERE uid = %d LIMIT 1", intval($uid)); - if(!count($u)) { - logger("statusnet_fetchhometimeline: Own user not found for user ".$uid, LOGGER_DEBUG); + if (!count($u)) { + logger("statusnet_fetchhometimeline: Own user not found for user " . $uid, LOGGER_DEBUG); return; } - $parameters = array("exclude_replies" => false, "trim_user" => false, "contributor_details" => true, "include_rts" => true); + $parameters = ["exclude_replies" => false, "trim_user" => false, "contributor_details" => true, "include_rts" => true]; //$parameters["count"] = 200; if ($mode == 1) { // Fetching timeline - $lastid = get_pconfig($uid, 'statusnet', 'lasthometimelineid'); + $lastid = PConfig::get($uid, 'statusnet', 'lasthometimelineid'); //$lastid = 1; $first_time = ($lastid == ""); - if ($lastid <> "") + if ($lastid != "") { $parameters["since_id"] = $lastid; + } $items = $connection->get('statuses/home_timeline', $parameters); if (!is_array($items)) { - if (is_object($items) && isset($items->error)) + if (is_object($items) && isset($items->error)) { $errormsg = $items->error; - elseif (is_object($items)) + } elseif (is_object($items)) { $errormsg = print_r($items, true); - elseif (is_string($items) || is_float($items) || is_int($items)) + } elseif (is_string($items) || is_float($items) || is_int($items)) { $errormsg = $items; - else + } else { $errormsg = "Unknown error"; + } - logger("statusnet_fetchhometimeline: Error fetching home timeline: ".$errormsg, LOGGER_DEBUG); + logger("statusnet_fetchhometimeline: Error fetching home timeline: " . $errormsg, LOGGER_DEBUG); return; } $posts = array_reverse($items); - logger("statusnet_fetchhometimeline: Fetching timeline for user ".$uid." ".sizeof($posts)." items", LOGGER_DEBUG); + logger("statusnet_fetchhometimeline: Fetching timeline for user " . $uid . " " . sizeof($posts) . " items", LOGGER_DEBUG); if (count($posts)) { foreach ($posts as $post) { - if ($post->id > $lastid) + if ($post->id > $lastid) { $lastid = $post->id; + } - if ($first_time) + if ($first_time) { continue; + } if (isset($post->statusnet_conversation_id)) { if (!isset($conversations[$post->statusnet_conversation_id])) { @@ -1404,48 +1389,52 @@ function statusnet_fetchhometimeline($a, $uid, $mode = 1) { } else { $postarray = statusnet_createpost($a, $uid, $post, $self, $create_user, true); - if (trim($postarray['body']) == "") + if (trim($postarray['body']) == "") { continue; + } $item = Item::insert($postarray); $postarray["id"] = $item; - logger('statusnet_fetchhometimeline: User '.$self["nick"].' posted home timeline item '.$item); + logger('statusnet_fetchhometimeline: User ' . $self["nick"] . ' posted home timeline item ' . $item); - if ($item && !function_exists("check_item_notification")) + if ($item && !function_exists("check_item_notification")) { statusnet_checknotification($a, $uid, $nick, $item, $postarray); + } } - } } - set_pconfig($uid, 'statusnet', 'lasthometimelineid', $lastid); + PConfig::set($uid, 'statusnet', 'lasthometimelineid', $lastid); } // Fetching mentions - $lastid = get_pconfig($uid, 'statusnet', 'lastmentionid'); + $lastid = PConfig::get($uid, 'statusnet', 'lastmentionid'); $first_time = ($lastid == ""); - if ($lastid <> "") + if ($lastid != "") { $parameters["since_id"] = $lastid; + } $items = $connection->get('statuses/mentions_timeline', $parameters); if (!is_array($items)) { - logger("statusnet_fetchhometimeline: Error fetching mentions: ".print_r($items, true), LOGGER_DEBUG); + logger("statusnet_fetchhometimeline: Error fetching mentions: " . print_r($items, true), LOGGER_DEBUG); return; } $posts = array_reverse($items); - logger("statusnet_fetchhometimeline: Fetching mentions for user ".$uid." ".sizeof($posts)." items", LOGGER_DEBUG); + logger("statusnet_fetchhometimeline: Fetching mentions for user " . $uid . " " . sizeof($posts) . " items", LOGGER_DEBUG); if (count($posts)) { foreach ($posts as $post) { - if ($post->id > $lastid) + if ($post->id > $lastid) { $lastid = $post->id; + } - if ($first_time) + if ($first_time) { continue; + } $postarray = statusnet_createpost($a, $uid, $post, $self, false, false); @@ -1455,16 +1444,17 @@ function statusnet_fetchhometimeline($a, $uid, $mode = 1) { $conversations[$post->statusnet_conversation_id] = $post->statusnet_conversation_id; } } else { - if (trim($postarray['body']) != "") { + if (trim($postarray['body']) == "") { continue; + } $item = Item::insert($postarray); $postarray["id"] = $item; - logger('statusnet_fetchhometimeline: User '.$self["nick"].' posted mention timeline item '.$item); + logger('statusnet_fetchhometimeline: User ' . $self["nick"] . ' posted mention timeline item ' . $item); - if ($item && function_exists("check_item_notification")) - check_item_notification($item, $uid, NOTIFY_TAGSELF); + if ($item && function_exists("check_item_notification")) { + check_item_notification($item, $uid, NOTIFY_TAGSELF); } } @@ -1478,8 +1468,8 @@ function statusnet_fetchhometimeline($a, $uid, $mode = 1) { } if (($item != 0) && !function_exists("check_item_notification")) { - require_once('include/enotify.php'); - notification(array( + require_once 'include/enotify.php'; + notification([ 'type' => NOTIFY_TAGSELF, 'notify_flags' => $u[0]['notify-flags'], 'language' => $u[0]['language'], @@ -1494,43 +1484,46 @@ function statusnet_fetchhometimeline($a, $uid, $mode = 1) { 'verb' => ACTIVITY_TAG, 'otype' => 'item', 'parent' => $parent_id, - )); + ]); } } } - set_pconfig($uid, 'statusnet', 'lastmentionid', $lastid); + PConfig::set($uid, 'statusnet', 'lastmentionid', $lastid); } -function statusnet_complete_conversation($a, $uid, $self, $create_user, $nick, $conversation) { - $ckey = get_pconfig($uid, 'statusnet', 'consumerkey'); - $csecret = get_pconfig($uid, 'statusnet', 'consumersecret'); - $api = get_pconfig($uid, 'statusnet', 'baseapi'); - $otoken = get_pconfig($uid, 'statusnet', 'oauthtoken'); - $osecret = get_pconfig($uid, 'statusnet', 'oauthsecret'); - $own_url = get_pconfig($uid, 'statusnet', 'own_url'); +function statusnet_complete_conversation(App $a, $uid, $self, $create_user, $nick, $conversation) +{ + $ckey = PConfig::get($uid, 'statusnet', 'consumerkey'); + $csecret = PConfig::get($uid, 'statusnet', 'consumersecret'); + $api = PConfig::get($uid, 'statusnet', 'baseapi'); + $otoken = PConfig::get($uid, 'statusnet', 'oauthtoken'); + $osecret = PConfig::get($uid, 'statusnet', 'oauthsecret'); + $own_url = PConfig::get($uid, 'statusnet', 'own_url'); $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret); $parameters["count"] = 200; - $items = $connection->get('statusnet/conversation/'.$conversation, $parameters); + $items = $connection->get('statusnet/conversation/' . $conversation, $parameters); if (is_array($items)) { $posts = array_reverse($items); foreach ($posts as $post) { $postarray = statusnet_createpost($a, $uid, $post, $self, false, false); - if (trim($postarray['body']) == "") + if (trim($postarray['body']) == "") { continue; + } $item = Item::insert($postarray); $postarray["id"] = $item; - logger('statusnet_complete_conversation: User '.$self["nick"].' posted home timeline item '.$item); + logger('statusnet_complete_conversation: User ' . $self["nick"] . ' posted home timeline item ' . $item); - if ($item && !function_exists("check_item_notification")) + if ($item && !function_exists("check_item_notification")) { statusnet_checknotification($a, $uid, $nick, $item, $postarray); + } } } } @@ -1539,10 +1532,10 @@ function statusnet_convertmsg(App $a, $body, $no_tags = false) { require_once "include/items.php"; - $body = preg_replace("=\[url\=https?://([0-9]*).([0-9]*).([0-9]*).([0-9]*)/([0-9]*)\](.*?)\[\/url\]=ism","$1.$2.$3.$4/$5",$body); + $body = preg_replace("=\[url\=https?://([0-9]*).([0-9]*).([0-9]*).([0-9]*)/([0-9]*)\](.*?)\[\/url\]=ism", "$1.$2.$3.$4/$5", $body); $URLSearchString = "^\[\]"; - $links = preg_match_all("/[^!#@]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", $body,$matches,PREG_SET_ORDER); + $links = preg_match_all("/[^!#@]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", $body, $matches, PREG_SET_ORDER); $footer = ""; $footerurl = ""; @@ -1551,25 +1544,27 @@ function statusnet_convertmsg(App $a, $body, $no_tags = false) if ($links) { foreach ($matches AS $match) { - $search = "[url=".$match[1]."]".$match[2]."[/url]"; + $search = "[url=" . $match[1] . "]" . $match[2] . "[/url]"; - logger("statusnet_convertmsg: expanding url ".$match[1], LOGGER_DEBUG); + logger("statusnet_convertmsg: expanding url " . $match[1], LOGGER_DEBUG); $expanded_url = Network::finalUrl($match[1]); - logger("statusnet_convertmsg: fetching data for ".$expanded_url, LOGGER_DEBUG); + logger("statusnet_convertmsg: fetching data for " . $expanded_url, LOGGER_DEBUG); - $oembed_data = oembed_fetch_url($expanded_url, true); + $oembed_data = OEmbed::fetchURL($expanded_url, true); logger("statusnet_convertmsg: fetching data: done", LOGGER_DEBUG); - if ($type == "") + if ($type == "") { $type = $oembed_data->type; + } + if ($oembed_data->type == "video") { //$body = str_replace($search, "[video]".$expanded_url."[/video]", $body); $type = $oembed_data->type; $footerurl = $expanded_url; - $footerlink = "[url=".$expanded_url."]".$expanded_url."[/url]"; + $footerlink = "[url=" . $expanded_url . "]" . $expanded_url . "[/url]"; $body = str_replace($search, $footerlink, $body); } elseif (($oembed_data->type == "photo") && isset($oembed_data->url) && !$dontincludemedia) { @@ -1586,67 +1581,72 @@ function statusnet_convertmsg(App $a, $body, $no_tags = false) if (substr($mime, 0, 6) == "image/") { $type = "photo"; - $body = str_replace($search, "[img]".$expanded_url."[/img]", $body); + $body = str_replace($search, "[img]" . $expanded_url . "[/img]", $body); } else { $type = $oembed_data->type; $footerurl = $expanded_url; - $footerlink = "[url=".$expanded_url."]".$expanded_url."[/url]"; + $footerlink = "[url=" . $expanded_url . "]" . $expanded_url . "[/url]"; $body = str_replace($search, $footerlink, $body); } } } - if ($footerurl != "") + if ($footerurl != "") { $footer = add_page_info($footerurl); + } if (($footerlink != "") && (trim($footer) != "")) { $removedlink = trim(str_replace($footerlink, "", $body)); - if (($removedlink == "") || strstr($body, $removedlink)) + if (($removedlink == "") || strstr($body, $removedlink)) { $body = $removedlink; + } $body .= $footer; } } - if ($no_tags) - return(array("body" => $body, "tags" => "")); + if ($no_tags) { + return ["body" => $body, "tags" => ""]; + } $str_tags = ''; - $cnt = preg_match_all("/([!#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",$body,$matches,PREG_SET_ORDER); - if($cnt) { - foreach($matches as $mtch) { - if(strlen($str_tags)) + $cnt = preg_match_all("/([!#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", $body, $matches, PREG_SET_ORDER); + if ($cnt) { + foreach ($matches as $mtch) { + if (strlen($str_tags)) { $str_tags .= ','; + } if ($mtch[1] == "#") { // Replacing the hash tags that are directed to the GNU Social server with internal links - $snhash = "#[url=".$mtch[2]."]".$mtch[3]."[/url]"; - $frdchash = '#[url='.$a->get_baseurl().'/search?tag='.rawurlencode($mtch[3]).']'.$mtch[3].'[/url]'; + $snhash = "#[url=" . $mtch[2] . "]" . $mtch[3] . "[/url]"; + $frdchash = '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($mtch[3]) . ']' . $mtch[3] . '[/url]'; $body = str_replace($snhash, $frdchash, $body); $str_tags .= $frdchash; - } else - $str_tags .= "@[url=".$mtch[2]."]".$mtch[3]."[/url]"; - // To-Do: - // There is a problem with links with to GNU Social groups, so these links are stored with "@" like friendica groups - //$str_tags .= $mtch[1]."[url=".$mtch[2]."]".$mtch[3]."[/url]"; + } else { + $str_tags .= "@[url=" . $mtch[2] . "]" . $mtch[3] . "[/url]"; + } + // To-Do: + // There is a problem with links with to GNU Social groups, so these links are stored with "@" like friendica groups + //$str_tags .= $mtch[1]."[url=".$mtch[2]."]".$mtch[3]."[/url]"; } } - return(array("body"=>$body, "tags"=>$str_tags)); - + return ["body" => $body, "tags" => $str_tags]; } -function statusnet_fetch_own_contact($a, $uid) { - $ckey = get_pconfig($uid, 'statusnet', 'consumerkey'); - $csecret = get_pconfig($uid, 'statusnet', 'consumersecret'); - $api = get_pconfig($uid, 'statusnet', 'baseapi'); - $otoken = get_pconfig($uid, 'statusnet', 'oauthtoken'); - $osecret = get_pconfig($uid, 'statusnet', 'oauthsecret'); - $own_url = get_pconfig($uid, 'statusnet', 'own_url'); +function statusnet_fetch_own_contact(App $a, $uid) +{ + $ckey = PConfig::get($uid, 'statusnet', 'consumerkey'); + $csecret = PConfig::get($uid, 'statusnet', 'consumersecret'); + $api = PConfig::get($uid, 'statusnet', 'baseapi'); + $otoken = PConfig::get($uid, 'statusnet', 'oauthtoken'); + $osecret = PConfig::get($uid, 'statusnet', 'oauthsecret'); + $own_url = PConfig::get($uid, 'statusnet', 'own_url'); $contact_id = 0; @@ -1656,66 +1656,73 @@ function statusnet_fetch_own_contact($a, $uid) { // Fetching user data $user = $connection->get('account/verify_credentials'); - set_pconfig($uid, 'statusnet', 'own_url', normalise_link($user->statusnet_profile_url)); + PConfig::set($uid, 'statusnet', 'own_url', normalise_link($user->statusnet_profile_url)); $contact_id = statusnet_fetch_contact($uid, $user, true); - } else { $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1", intval($uid), dbesc($own_url)); - if(count($r)) + if (count($r)) { $contact_id = $r[0]["id"]; - else - del_pconfig($uid, 'statusnet', 'own_url'); - + } else { + PConfig::delete($uid, 'statusnet', 'own_url'); + } } - return($contact_id); + return $contact_id; } -function statusnet_is_retweet($a, $uid, $body) { +function statusnet_is_retweet(App $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); + if (strpos($body, "[share") > 0) { + return false; + } // Does it end with a share? - if (strlen($body) > (strrpos($body, "[/share]") + 8)) - return(false); + if (strlen($body) > (strrpos($body, "[/share]") + 8)) { + return false; + } - $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body); + $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); + if ($body == $attributes) { + return false; + } $link = ""; preg_match("/link='(.*?)'/ism", $attributes, $matches); - if ($matches[1] != "") + if ($matches[1] != "") { $link = $matches[1]; + } preg_match('/link="(.*?)"/ism', $attributes, $matches); - if ($matches[1] != "") + if ($matches[1] != "") { $link = $matches[1]; + } - $ckey = get_pconfig($uid, 'statusnet', 'consumerkey'); - $csecret = get_pconfig($uid, 'statusnet', 'consumersecret'); - $api = get_pconfig($uid, 'statusnet', 'baseapi'); - $otoken = get_pconfig($uid, 'statusnet', 'oauthtoken'); - $osecret = get_pconfig($uid, 'statusnet', 'oauthsecret'); + $ckey = PConfig::get($uid, 'statusnet', 'consumerkey'); + $csecret = PConfig::get($uid, 'statusnet', 'consumersecret'); + $api = PConfig::get($uid, 'statusnet', 'baseapi'); + $otoken = PConfig::get($uid, 'statusnet', 'oauthtoken'); + $osecret = PConfig::get($uid, 'statusnet', 'oauthsecret'); $hostname = preg_replace("=https?://([\w\.]*)/.*=ism", "$1", $api); - $id = preg_replace("=https?://".$hostname."/notice/(.*)=ism", "$1", $link); + $id = preg_replace("=https?://" . $hostname . "/notice/(.*)=ism", "$1", $link); - if ($id == $link) - return(false); + if ($id == $link) { + return false; + } - logger('statusnet_is_retweet: Retweeting id '.$id.' for user '.$uid, LOGGER_DEBUG); + logger('statusnet_is_retweet: Retweeting id ' . $id . ' for user ' . $uid, LOGGER_DEBUG); - $connection = new StatusNetOAuth($api, $ckey,$csecret,$otoken,$osecret); + $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret); - $result = $connection->post('statuses/retweet/'.$id); + $result = $connection->post('statuses/retweet/' . $id); - logger('statusnet_is_retweet: result '.print_r($result, true), LOGGER_DEBUG); - return(isset($result->id)); + logger('statusnet_is_retweet: result ' . print_r($result, true), LOGGER_DEBUG); + + return isset($result->id); } diff --git a/superblock/lang/es/messages.po b/superblock/lang/es/messages.po index 5f81fef81..3bbdeb906 100644 --- a/superblock/lang/es/messages.po +++ b/superblock/lang/es/messages.po @@ -4,15 +4,15 @@ # # # Translators: -# Albert, 2016 +# Albert, 2016-2017 # juanman'. t('Currently connected to: ') .''.$details->screen_name.'
'.$details->description.'
'. t('If enabled all your public postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry.') .'
'; - if ($a->user['hidewall']) { - $s .= ''. t('Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted.') .'
'; - } - $s .= '{{$desc}}
- {{include file="field_input.tpl" field=$url}} - {{include file="field_input.tpl" field=$auth}} - {{include file="field_select.tpl" field=$api}} - - -"
-
+
.htmlspecialchars('')
."
";
-
+
return $o;
}
}
diff --git a/windowsphonepush/windowsphonepush.php b/windowsphonepush/windowsphonepush.php
index 9837e1fe5..206b0883e 100644
--- a/windowsphonepush/windowsphonepush.php
+++ b/windowsphonepush/windowsphonepush.php
@@ -1,25 +1,26 @@
- *
- *
+ *
+ *
* Pre-requisite: Windows Phone mobile device (at least WP 7.0)
* Friendica mobile app on Windows Phone
*
* When addon is installed, the system calls the addon
* name_install() function, located in 'addon/name/name.php',
* where 'name' is the name of the addon.
- * If the addon is removed from the configuration list, the
+ * If the addon is removed from the configuration list, the
* system will call the name_uninstall() function.
*
* Version history:
- * 1.1 : addon crashed on php versions >= 5.4 as of removed deprecated call-time
+ * 1.1 : addon crashed on php versions >= 5.4 as of removed deprecated call-time
* pass-by-reference used in function calls within function windowsphonepush_content
* 2.0 : adaption for supporting emphasizing new entries in app (count on tile cannot be read out,
- * so we need to retrieve counter through show_settings secondly). Provide new function for
+ * so we need to retrieve counter through show_settings secondly). Provide new function for
* calling from app to set the counter back after start (if user starts again before cronjob
* sets the counter back
* count only unseen elements which are not type=activity (likes and dislikes not seen as new elements)
@@ -37,7 +38,6 @@ function windowsphonepush_install()
/* Our addon will attach in three places.
* The first is within cron - so the push notifications will be
* sent every 10 minutes (or whatever is set in crontab).
- *
*/
Addon::registerHook('cron', 'addon/windowsphonepush/windowsphonepush.php', 'windowsphonepush_cron');
@@ -45,7 +45,6 @@ function windowsphonepush_install()
* settings post hook so that we can create and update
* user preferences. User shall be able to activate the addon and
* define whether he allows pushing first characters of item text
- *
*/
Addon::registerHook('addon_settings', 'addon/windowsphonepush/windowsphonepush.php', 'windowsphonepush_settings');
Addon::registerHook('addon_settings_post', 'addon/windowsphonepush/windowsphonepush.php', 'windowsphonepush_settings_post');
@@ -53,14 +52,10 @@ function windowsphonepush_install()
logger("installed windowsphonepush");
}
-
-function windowsphonepush_uninstall() {
-
- /**
- *
- * uninstall unregisters any hooks created with register_hook
+function windowsphonepush_uninstall()
+{
+ /* uninstall unregisters any hooks created with register_hook
* during install. Don't delete data in table `pconfig`.
- *
*/
Addon::unregisterHook('cron', 'addon/windowsphonepush/windowsphonepush.php', 'windowsphonepush_cron');
Addon::unregisterHook('addon_settings', 'addon/windowsphonepush/windowsphonepush.php', 'windowsphonepush_settings');
@@ -69,54 +64,54 @@ function windowsphonepush_uninstall() {
logger("removed windowsphonepush");
}
-
/* declare the windowsphonepush function so that /windowsphonepush url requests will land here */
-function windowsphonepush_module() {}
+function windowsphonepush_module()
+{
+}
-/**
- *
- * Callback from the settings post function.
+/* 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 windowsphonepush_settings_post($a,$post) {
- if(! local_user() || (! x($_POST,'windowsphonepush-submit')))
+function windowsphonepush_settings_post($a, $post)
+{
+ if (!local_user() || (!x($_POST, 'windowsphonepush-submit'))) {
return;
+ }
$enable = intval($_POST['windowsphonepush']);
- set_pconfig(local_user(),'windowsphonepush','enable',$enable);
+ PConfig::set(local_user(), 'windowsphonepush', 'enable', $enable);
- if($enable) {
- set_pconfig(local_user(),'windowsphonepush','counterunseen', 0);
+ if ($enable) {
+ PConfig::set(local_user(), 'windowsphonepush', 'counterunseen', 0);
}
- set_pconfig(local_user(),'windowsphonepush','senditemtext',intval($_POST['windowsphonepush-senditemtext']));
+ PConfig::set(local_user(), 'windowsphonepush', 'senditemtext', intval($_POST['windowsphonepush-senditemtext']));
info(L10n::t('WindowsPhonePush settings updated.') . EOL);
}
/* Called from the Addon Setting form.
* Add our own settings info to the page.
- *
*/
-function windowsphonepush_settings(&$a,&$s) {
-
- if(! local_user())
+function windowsphonepush_settings(&$a, &$s)
+{
+ if (!local_user()) {
return;
+ }
/* Add our stylesheet to the page so we can make our settings look nice */
$a->page['htmlhead'] .= '' . "\r\n";
/* Get the current state of our config variables */
- $enabled = get_pconfig(local_user(),'windowsphonepush','enable');
+ $enabled = PConfig::get(local_user(), 'windowsphonepush', 'enable');
$checked_enabled = (($enabled) ? ' checked="checked" ' : '');
- $senditemtext = get_pconfig(local_user(), 'windowsphonepush', 'senditemtext');
+ $senditemtext = PConfig::get(local_user(), 'windowsphonepush', 'senditemtext');
$checked_senditemtext = (($senditemtext) ? ' checked="checked" ' : '');
- $device_url = get_pconfig(local_user(), 'windowsphonepush', 'device_url');
+ $device_url = PConfig::get(local_user(), 'windowsphonepush', 'device_url');
/* Add some HTML to the existing form */
$s .= '