
FB_RequireFeatures(
	["XFBML"],
	function()
	{
		FB.init( "72a0b16507edbc9ea0ce01f68a93e11b", "/typo3conf/ext/facebook_connect/res/html/xd_receiver.html" );
	}
);

function FacebookStreamPublishCallback(post_id, exception) {
	if(post_id) {}
}

function FacebookStreamPublishVote(videoId, uid)
{
	var userMessagePrompt = "Ajoute un commentaire pour cette vidéo";
	var userMessage = "";
	
	var attachment = {
			"name": "Yourmove.ch",
			"href": "http://apps.facebook.com/yourmovech/",
			"caption": "{*actor*} a publié cette vidéo et toi tu préfères laquelle?",
			"properties" : {
							"donne ton avis" : {
                      			"text" : "vote pour cette vidéo",
                     			"href" : "http://apps.facebook.com/yourmovech/on-vote/video/detail/?tx_ymvoting_pi1[video]=" + uid
							}
            			},
			"media": [
            	{
					"type":"flash",
					"swfsrc":"http://www.yourmove.ch/typo3conf/ext/ym_video/flash/promoplayer.swf?uid=" + uid,
					"imgsrc":"http://www.yourmove.ch/typo3conf/ext/ym_voting/img/" + videoId + ".jpg",
					"width":"100",
					"height":"56",
					"expanded_width":"320",
					"expanded_height":"205"
				}
			],
			"description":""
		};
	var actionLinks = [{
   						"text":"Inscris toi sur Yourmove",
   						"href":"http://www.yourmove.ch/fr/mon-compte/"
					}];
   		
	var targetId = null;

	FB.Connect.streamPublish(userMessage, attachment, actionLinks, targetId , userMessagePrompt, FacebookStreamPublishCallback);
}

function FacebookStreamPublishPub(videoId, uid)
{
	var userMessagePrompt = "Invite tes amis à voter pour ta vidéo";
	var userMessage = "";
	
	var attachment = {
			"name": "Yourmove.ch",
			"href": "http://apps.facebook.com/yourmovech/",
			"caption": "{*actor*} a publié cette vidéo et toi tu préfères laquelle ?",
			"properties" : {
							"donne ton avis" : {
                      			"text" : "vote pour cette vidéo",
                     			"href" : "http://apps.facebook.com/yourmovech/on-vote/video/detail/?tx_ymvoting_pi1[video]=" + uid
							}
            			},
			"media": [
            	{
					"type":"flash",
					"swfsrc":"http://www.yourmove.ch/typo3conf/ext/ym_video/flash/promoplayer.swf?uid=" + uid,
					"imgsrc":"http://www.yourmove.ch/typo3conf/ext/ym_voting/img/" + videoId + ".jpg",
					"width":"100",
					"height":"56",
					"expanded_width":"320",
					"expanded_height":"205"
				}
			],
			"description":""
		};
	var actionLinks = [{
   						"text":"Inscris toi sur Yourmove",
   						"href":"http://www.yourmove.ch/fr/mon-compte/"
					}];
   		
	var targetId = null;

	FB.Connect.streamPublish(userMessage, attachment, actionLinks, targetId , userMessagePrompt, FacebookStreamPublishCallback);
}


function FacebookStreamPublishPhoto(imgId, uid)
{
	var userMessagePrompt = "Invite tes amis à voter pour ta photo";
	var userMessage = "";
	
	var attachment = {
			"name": "Yourmove.ch",
			"href": "http://apps.facebook.com/yourmovech/",
			"caption": "{*actor*} a publié cette photo",
			"properties" : {
							"donne ton avis" : {
                      			"text" : "vote pour cette photo",
                     			"href" : "http://apps.facebook.com/yourmovech/on-vote/photo/detail/?tx_ymvoting_pi1[id]=" + uid	
							}
            			},
            "media": [
            	{
					"type":"image",
					"src":"http://www.yourmove.ch/typo3conf/ext/ym_video/img/photos/" + imgId + ".jpg",
					"href":"http://apps.facebook.com/yourmovech/on-vote/photo/detail/?tx_ymvoting_pi1[id]=" + uid
				}
			],
			"description":""
		};
	var actionLinks = [{
   						"text":"Inscris toi sur Yourmove",
   						"href":"http://www.yourmove.ch/fr/mon-compte/"
					}];
   		
	var targetId = null;

	FB.Connect.streamPublish(userMessage, attachment, actionLinks, targetId , userMessagePrompt, FacebookStreamPublishCallback);
}