Browse Source

Upload to facebook feature added

master
ashwin47 10 years ago
parent
commit
697e8e74f2
  1. BIN
      cache/.jpg
  2. BIN
      cache/1011197735591770.jpg
  3. BIN
      cache/10206046105125680.jpg
  4. 10
      css/custom.css
  5. BIN
      images/modi.jpg
  6. 19
      index.php
  7. 53
      overlay.php
  8. 56
      privacy-policy.html
  9. 92
      update.php

BIN
cache/.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

BIN
cache/1011197735591770.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

BIN
cache/10206046105125680.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

10
css/custom.css

@ -47,7 +47,7 @@ img.profile{
display:block;
-moz-box-sizing: border-box;
box-sizing: border-box;
/*background: url(../images/modi.jpg) no-repeat center/75%;*/
width: 380px; /* Width of new image */
height: 380px; /* Height of new image */
margin: 0 auto;
@ -68,8 +68,9 @@ a .button{
.footer{
margin-top: 20px;
float: right;
text-decoration: none;
text-align: right;
}
@ -84,5 +85,8 @@ ul.share-buttons{
margin: 0 auto;
}
p{
text-align: left;
/*text-align: left;*/
}
div.pp{
float: left;
}

BIN
images/modi.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

19
index.php

@ -1,17 +1,14 @@
<?php
require( __DIR__.'/facebook_start.php' );
// require( __DIR__.'/resize.php' );
$helper = $fb->getRedirectLoginHelper();
$permissions = ['email', 'user_posts','publish_actions']; // optional
$callback = 'http://isupportnetneutrality.in/login.php';
$loginUrl = $helper->getLoginUrl($callback, $permissions);
//Selecting a random image
$bg=['images/bg1.jpeg','images/bg2.jpg','images/bg3.jpg','images/bg4.jpg','images/bg5.jpg'];
$bg_path=$bg[array_rand($bg)];
//debug_to_console($bg_path));
?>
@ -46,15 +43,15 @@
<div class="header">
<h1>Show your support for Net Neutrality</h1>
<img class="profile" src="images/mark.jpg"/>
<img class="profile" src="images/modi.jpg"/>
</div>
<div class="content">
<br/>
<p>Show your support for Net Neutrality by changing facebook profile picture. </p>
<p>Show your support for Net Neutrality by updating your facebook picture. </p>
<p>(It will not automatically change you picture)</p>
<a class="button button-primary" href=<?php echo htmlspecialchars($loginUrl)?> > Change my Facebook picture </a>
<a class="button button-primary" href=<?php echo htmlspecialchars($loginUrl);?> > Log in to Facebook </a>
@ -66,7 +63,11 @@
<li><a href="http://www.reddit.com/submit?url=http%3A%2F%2Fisupportnetneutrality.in%2F&title=Show%20your%20support%20for%20Net%20Neutralty" target="_blank" title="Submit to Reddit"><img src="images/simple_icons_black/Reddit.png"></a></li>
<li><a href="mailto:?subject=Show%20your%20support%20for%20Net%20Neutralty&body=Let%20us%20show%20our%20support%20for%20Net%20Neutrality%20by%20changing%20our%20facebook%20profile%20picture:%20http%3A%2F%2Fisupportnetneutrality.in%2F" target="_blank" title="Email"><img src="images/simple_icons_black/Email.png"></a></li>
</ul>
<footer class="footer"><a href='https://github.com/ashwin47/Net-Neutral'>Made</a> by <a href="http://twitter.com/ashwinm">@ashwinm</a> </footer>
<footer class="footer">
<div class="pp"><a href="privacy-policy.html">Privacy policy</a></div>
<a href='https://github.com/ashwin47/Net-Neutral'>Made</a> by <a href="http://twitter.com/ashwinm">@ashwinm</a>
</footer>
</div>
</div>

53
overlay.php

@ -2,17 +2,17 @@
<?php
require( __DIR__.'/facebook_start.php' );
//Selecting a random image
$token = $_SESSION['facebook_access_token'];
//$r = new HttpRequest('https://graph.facebook.com/me?access_token='.$r, HttpRequest::METH_POST);
$output = curly($token);
echo $output;
$r=json_decode($output, true); //To Array
//$r = array('id' => "1011197735591770");
$id= $r['id'];
$path = "cache/".$id.".jpg";
$_SESSION['path'] = $path;
// only create if not already exists in cache
if (!file_exists($path)){
create($id, $path);
@ -73,36 +73,6 @@
// Save as jpeg
imagejpeg($base_image, $path);
}
//Upload image
function upload($path,$token,$fb)
{
$image = [
'caption' => 'Created using http://isupportnetneutrality.in/',
'source' => $fb->fileToUpload($path),
];
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->post('/me/photos', $image, $token);
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
$graphNode = $response->getGraphNode();
print_r($graphNode);
echo " \n Photo ID: " . $graphNode['id'];
}
session_write_close();
?>
<!DOCTYPE html>
@ -113,7 +83,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Show your support for Net Neutralty | Success </title>
<title>Show your support for Net Neutralty | Update </title>
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
@ -129,20 +99,23 @@
</head>
<body>
<?php include_once("analyticstracking.php") ?>
<img src="/images/bg2.jpg" class="bg">
<img src=<?php echo $bg_path?> class="bg">
<div class="container">
<div class="row">
<div class="header">
<h1>Thank you for your support!</h1>
<h1>You new profile picture is ready !</h1>
<img class="profile" src=<?php echo $path ?> alt="">
</div>
<div class="content">
<br/>
<p id="alert">Facebook is currently reviewing this App's request to permit updating of profile picture,
For now 'Right Click -> 'Save Image As' and manually update </p>
<form action="update.php" method='post'>
<label for="update" >Status</label>
<textarea class="u-full-width" placeholder="" name="text"></textarea>
<input class="button-primary" value="Update" type="submit">
</form>
Spread the word:
<ul class="share-buttons">
<li><a href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fisupportnetneutrality.in%2F&t=Show%20your%20support%20for%20Net%20Neutralty" title="Share on Facebook" target="_blank"><img src="images/simple_icons_black/Facebook.png"></a></li>

56
privacy-policy.html

@ -0,0 +1,56 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>privacy policy</title>
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<div class="container"><div class="row">
<h1>What is this Privacy Policy for?</h1>
This privacy policy is for this website [http://isupportnetneutrality.in/] and governs the privacy of its users who choose to use it.
The policy sets out the different areas where user privacy is concerned and outlines the obligations & requirements of the users, the website and website owners. Furthermore the way this website processes, stores and protects user data and information will also be detailed within this policy.
The Website
This website and its owners take a proactive approach to user privacy and ensure the necessary steps are taken to protect the privacy of its users throughout their visiting experience. This website complies to all UK national laws and requirements for user privacy.
<h1>Facebook Platform Policy</h1>
This website is full comply to the <a href="https://developers.facebook.com/policy/"> Facebook Platform Policies.</a>
We don't share or reuse the public profile picture under any circumstances, we automatically remove the cache images every month.
<h1>Use of Cookies</h1>
This website uses cookies to better the users experience while visiting the website. Where applicable this website uses a cookie control system allowing the user on their first visit to the website to allow or disallow the use of cookies on their computer / device. This complies with recent legislation requirements for websites to obtain explicit consent from users before leaving behind or reading files such as cookies on a user's computer / device.
Cookies are small files saved to the user's computers hard drive that track, save and store information about the user's interactions and usage of the website. This allows the website, through its server to provide the users with a tailored experience within this website.
Users are advised that if they wish to deny the use and saving of cookies from this website on to their computers hard drive they should take necessary steps within their web browsers security settings to block all cookies from this website and its external serving vendors.
This website uses tracking software to monitor its visitors to better understand how they use it. This software is provided by Google Analytics which uses cookies to track visitor usage. The software will save a cookie to your computers hard drive in order to track and monitor your engagement and usage of the website, but will not store, save or collect personal information. You can read Google's privacy policy here for further information [ http://www.google.com/privacy.html ].
Other cookies may be stored to your computers hard drive by external vendors when this website uses referral programs, sponsored links or adverts. Such cookies are used for conversion and referral tracking and typically expire after 30 days, though some may take longer. No personal information is stored, saved or collected.
<h1>Contact & Communication</h1>
Users contacting this website and/or its owners do so at their own discretion and provide any such personal details requested at their own risk. Your personal information is kept private and stored securely until a time it is no longer required or has no use, as detailed in the Data Protection Act 1998. Every effort has been made to ensure a safe and secure form to email submission process but advise users using such form to email processes that they do so at their own risk.
This website and its owners use any information submitted to provide you with further information about the products / services they offer or to assist you in answering any questions or queries you may have submitted. This includes using your details to subscribe you to any email newsletter program the website operates but only if this was made clear to you and your express permission was granted when submitting any form to email process. Or whereby you the consumer have previously purchased from or enquired about purchasing from the company a product or service that the email newsletter relates to. This is by no means an entire list of your user rights in regard to receiving email marketing material. Your details are not passed on to any third parties.
<h1>External Links</h1>
The owners of this website cannot guarantee or verify the contents of any externally linked website despite their best efforts. Users should therefore note they click on external links at their own risk and this website and its owners cannot be held liable for any damages or implications caused by visiting any external links mentioned.
<h1>Social Media Platforms</h1>
Communication, engagement and actions taken through external social media platforms that this website and its owners participate on are custom to the terms and conditions as well as the privacy policies held with each social media platform respectively.
Users are advised to use social media platforms wisely and communicate / engage upon them with due care and caution in regard to their own privacy and personal details. This website nor its owners will ever ask for personal or sensitive information through social media platforms and encourage users wishing to discuss sensitive details to contact them through primary communication channels such as by telephone or email.
This website may use social sharing buttons which help share web content directly from web pages to the social media platform in question. Users are advised before using such social sharing buttons that they do so at their own discretion and note that the social media platform may track and save your request to share a web page respectively through your social media platform account.
</div></div>
</body>
</html>

92
update.php

@ -0,0 +1,92 @@
<?php
require( __DIR__.'/facebook_start.php' );
$text = htmlspecialchars($_POST['text']);
//echo $text;
$token = $_SESSION['facebook_access_token'];
var_dump($_SESSION['path']);
$path = $_SESSION['path'];
var_dump($path);
//Upload image
upload($path,$token,$fb,$text);
function upload($path,$token,$fb,$text)
{
$image = [
'caption' => $text,
'source' => $fb->fileToUpload($path),
];
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->post('/me/photos', $image, $token);
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
$graphNode = $response->getGraphNode();
print_r($graphNode);
//echo " \n Photo ID: " . $graphNode['id'];
}
session_write_close();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Show your support for Net Neutralty | Update </title>
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="icon" type="image/png" href="images/favicon.png">
<link href="css/custom.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<?php include_once("analyticstracking.php") ?>
<img src=<?php echo $bg_path?> class="bg">
<div class="container">
<div class="row">
<div class="header">
<h1>Thank you for your support!</h1>
<img class="profile" src=<?php echo $path ?> alt="">
</div>
<div class="content">
Your picture is uploaded.
<br/>
Spread the word:
<ul class="share-buttons">
<li><a href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fisupportnetneutrality.in%2F&t=Show%20your%20support%20for%20Net%20Neutralty" title="Share on Facebook" target="_blank"><img src="images/simple_icons_black/Facebook.png"></a></li>
<li><a href="https://twitter.com/intent/tweet?source=http%3A%2F%2Fisupportnetneutrality.in%2F&text=Show%20your%20support%20for%20Net%20Neutralty:%20http%3A%2F%2Fisupportnetneutrality.in%2F&via=ashwinm" target="_blank" title="Tweet"><img src="images/simple_icons_black/Twitter.png"></a></li>
<li><a href="http://www.reddit.com/submit?url=http%3A%2F%2Fisupportnetneutrality.in%2F&title=Show%20your%20support%20for%20Net%20Neutralty" target="_blank" title="Submit to Reddit"><img src="images/simple_icons_black/Reddit.png"></a></li>
<li><a href="mailto:?subject=Show%20your%20support%20for%20Net%20Neutralty&body=Let%20us%20show%20our%20support%20for%20Net%20Neutrality%20by%20changing%20our%20facebook%20profile%20picture:%20http%3A%2F%2Fisupportnetneutrality.in%2F" target="_blank" title="Email"><img src="images/simple_icons_black/Email.png"></a></li>
</ul>
</div>
<div class="footer"><a href='https://github.com/ashwin47/Net-Neutral'>Made</a> by <a href="http://twitter.com/ashwinm">@ashwinm</a> </div>
</div>
</div>
</body>
</html>
Loading…
Cancel
Save