-
Notifications
You must be signed in to change notification settings - Fork 3
/
queridodiputado.js
154 lines (141 loc) · 5.91 KB
/
queridodiputado.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
$(function() {
function dameId() {
var id = window.location.search;
if (id.indexOf('id=') > -1) {
id=id.split('id=');
id=parseInt(id[1]);
} else {
id=1;
}
return id;
}
function dameDestinatarios(csv) {
var res = [];
csv = csv.split('\n');
for (i=0; i<csv.length; i++) {
var dipu = csv[i].split(',');
if (dipu.length > 1) res.push( { "twitter": dipu[0], "partido": dipu[1] } );
}
return res;
}
function ordenarAleatorio(arreglo) {
return arreglo.sort(function() { return 0.5 - Math.random();});
}
function generarMenu(menu) {
var html = '';
_.each(menu, function(opcion) {
html += "\t\t"+'<li><a href="'+opcion.enlace+'">'+opcion.titulo+'</a></li>'+"\n";
});
return html;
}
function generarHashtags(hashtags) {
var html = '';
if (hashtags.length == 1) {
html = '<a href="https://twitter.com/search/realtime?q=%23'+hashtags[0]+'&src=hash" class="btn btn-primary">#'+hashtags[0]+'</a>';
} else {
html = '<div class="btn-group">'+
'<a href="https://twitter.com/search/realtime?q=%23'+hashtags[0]+'&src=hash" class="btn btn-primary">#'+hashtags[0]+'</a>'+
'<a class="btn btn-primary" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">'+
'<span class="caret"></span>'+
'<span class="sr-only">Toggle Dropdown</span>'+
'</a>'+
'<ul class="dropdown-menu">';
for (i=1; i<hashtags.length; i++) {
html += '<li><a href="https://twitter.com/search/realtime?q=%23'+hashtags[i]+'&src=hash">#'+hashtags[i]+'</a></li>';
}
html += '</ul></div>';
}
return html;
}
function generarTweets(mensaje, hashtag, imagen, destinatarios) {
var disponible = 280,
voypor = 0,
num_destinatarios = destinatarios.length,
seleccion = '',
html = '';
while (voypor < num_destinatarios) {
disponible = 280-mensaje.length-hashtag.length-2;
html += "\n\t\t"+'<div class="row twit">'+
"\n\t\t"+'<div class="col-xs-3 col-md-2"><img src="'+imagen+'"></div>'+
"\n\t\t"+'<div class="col-xs-9 col-md-8">';
while ((voypor < num_destinatarios) && (disponible > destinatarios[voypor].length+2)) {
html += '<a class="diputwi btn btn-default" href="https://twitter.com/'+destinatarios[voypor]+'" target="_blank">@'+destinatarios[voypor]+'</a> '
seleccion += '@'+destinatarios[voypor]+' ';
disponible -= destinatarios[voypor].length+2;
voypor++;
}
html += mensaje+' #'+hashtag+'</div>'+
"\n\t\t"+'<div class="col-xs-3 col-md-2"><a class="btn btn-danger enviar" href="https://twitter.com/intent/tweet?text='+seleccion+mensaje+'&hashtags='+hashtag+'" target="_blank">Enviar</a></div>'+
"\n\t\t"+'</div>';
seleccion = '';
}
return html;
//$('#diputados').html(html);
}
function activarEnvios() {
$('.enviar').on('click',function(e) {
var fila = $(this).parents('.twit')
, menciones = _.compact(fila.find('a.diputwi').text().split('@'))
, incremento = menciones.length
, actuales = parseInt($('.num-enviados').text())
, dir = $(this).attr('href')
, winTop = (screen.height / 2) - (350 / 2)
, winLeft = (screen.width / 2) - (520 / 2);
if (actuales == 0) {
alert ("Twitter puede considerar como spam el simple hecho de publicar varios tweets seguidos con menciones a perfiles que no te sigan.\n\nPara evitar que suspendan tu cuenta te recomendamos espaciar los tweets enviados con menciones todo lo posible e intercalar otros tweets.\n\n¡Que no te callen!");
}
e.preventDefault();
window.open (dir, 'twitter', 'top='+winTop+',left='+winLeft+',toolbar=0,status=0,width=520,height=350');
localStorage['queridodiputado-'+dameId()] = _.concat(localStorage['queridodiputado-'+dameId()].split(','), menciones);
$('.num-enviados').text(actuales+incremento);
$(fila).slideUp('slow');
});
};
$('.empezar').on('click', function(e) {
localStorage.removeItem('queridodiputado-'+dameId());
location.reload();
});
$.getJSON('data/'+dameId()+'.json', function(json) {
// generamos menu
$('#menu').prepend(generarMenu(json.menu));
// activamos botón "ver menciones"
//$('a.hashtag').attr('href', 'https://twitter.com/search/realtime?q=%23'+json.hashtag+'&src=hash');
$('#botonera').prepend(generarHashtags(json.hashtags));
// cargamos la página de intro de la campaña
$.ajax({url: json.intro, dataType: 'text'})
.done(function(intro) {
$('#info').prepend(marked(intro));
});
// cargamos todas las listas de destinatarios
$.when.apply($, _.map(json.listas, function(url) {
return $.ajax(url.enlace, {dataType: 'text'});
})).done(function() {
var destinatarios = []
, enviados = localStorage['queridodiputado-'+dameId()];
// si hay más de una lista, arguments = [[data,statusText,jqXHR],...]
if (_.isArray(arguments[0])) {
for (var i = 0; i < arguments.length; i++) {
destinatarios = _.concat(destinatarios, _.map(dameDestinatarios(arguments[i][0]), 'twitter'));
}
// si hay solo una lista, arguments = [data, statusText,jqXHR]
} else {
destinatarios = _.concat(destinatarios, _.map(dameDestinatarios(arguments[0]), 'twitter'));
}
// limpiamos repetidos
destinatarios = _.uniq(destinatarios);
if (enviados) {
enviados = _.compact(enviados.split(','));
} else {
enviados = [];
}
$('.num-destinatarios').text(destinatarios.length);
$('.num-enviados').text(enviados.length);
var diferencia = _.difference(destinatarios, enviados);
$('#diputados').html(generarTweets(json.mensaje, json.hashtags[0], json.imagen, ordenarAleatorio(diferencia)));
localStorage['queridodiputado-'+dameId()] = enviados;
activarEnvios();
}).fail( function (jqXHR, status, error) {
alert(error);
});
});
});