-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwitter.views.inc
357 lines (325 loc) · 9.16 KB
/
twitter.views.inc
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
<?php
/**
* @file
* Provide views data and handlers for twitter.module
*/
/**
* @defgroup views_twitter_module twitter.module handlers
*
* Includes the ability to create views of just the twitter table.
* @{
*/
/**
* Implements hook_views_data().
*/
function twitter_views_data() {
// Basic table information.
$data['twitter']['table']['group'] = t('Twitter');
// Advertise this table as a possible base table
$data['twitter']['table']['base'] = array(
'field' => 'twitter_id',
'title' => t('Twitter message'),
'help' => t('Twitter status messages.'),
'weight' => 10,
);
// Tweet ID
$data['twitter']['twitter_id'] = array(
'title' => t('Twitter status message ID'),
'help' => t('The ID of the Twitter status message.'),
'field' => array(
'handler' => 'views_handler_field',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_numeric',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
'argument' => array(
'handler' => 'views_handler_argument_string',
),
);
// Twitter reply-to-status id
$data['twitter']['in_reply_to_status_id'] = array(
'title' => t('In reply to status ID'),
'help' => t('The ID of the Twitter status this message is replying to.'),
'field' => array(
'handler' => 'views_handler_field',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_numeric',
'allow empty' => TRUE,
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
// Twitter reply-to-status screen name
$data['twitter']['in_reply_to_screen_name'] = array(
'title' => t('In reply to user name'),
'help' => t('The login account of the Twitter user this message is replying to.'),
'field' => array(
'handler' => 'views_handler_field',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_string',
'allow empty' => TRUE,
),
'sort' => array(
'handler' => 'views_handler_sort',
),
'argument' => array(
'handler' => 'views_handler_argument_string',
),
);
// Twitter screen name
$data['twitter']['screen_name'] = array(
'title' => t('Login name'),
'help' => t('The login account of the Twitter user.'),
'field' => array(
'handler' => 'views_handler_field',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_string',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
'argument' => array(
'handler' => 'views_handler_argument_string',
),
);
// Twitter message timestamp
$data['twitter']['created_time'] = array(
'title' => t('Created time'),
'help' => t('The time the Twitter message was posted.'),
'field' => array(
'handler' => 'views_handler_field_date',
'click sortable' => TRUE,
),
'sort' => array(
'handler' => 'views_handler_sort',
),
'filter' => array(
'handler' => 'views_handler_filter_date',
),
);
// Twitter text
$data['twitter']['text'] = array(
'title' => t('Message text'),
'help' => t('The text of the Twitter message.'),
'field' => array(
'handler' => 'twitter_views_handler_field_xss',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_string',
),
);
// Twitter source
$data['twitter']['source'] = array(
'title' => t('Source'),
'help' => t('The name of the application that posted the Twitter message.'),
'field' => array(
'handler' => 'views_handler_field_xss',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_string',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
$data['twitter_account']['table']['group'] = t('Twitter');
$data['twitter_account']['table']['join'] = array(
'twitter' => array(
'left_field' => 'screen_name',
'field' => 'screen_name',
),
'users' => array(
'left_field' => 'uid',
'field' => 'uid',
// 'left_table' => 'twitter_user',
),
);
// Twitter screen name
$data['twitter_account']['screen_name'] = array(
'title' => t('Login name'),
'help' => t('The login account of the Twitter user.'),
'field' => array(
'handler' => 'views_handler_field',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_string',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
'argument' => array(
'handler' => 'views_handler_argument_string',
),
);
// Twitter account full name
$data['twitter_account']['name'] = array(
'title' => t('Full name'),
'help' => t('The full name Twitter account user.'),
'field' => array(
'handler' => 'views_handler_field',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_string',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
'argument' => array(
'handler' => 'views_handler_argument_string',
),
);
// Twitter account description
$data['twitter_account']['description'] = array(
'title' => t('Description'),
'help' => t('The description of the Twitter account.'),
'field' => array(
'handler' => 'views_handler_field',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_field_xss',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
// Twitter account location
$data['twitter_account']['location'] = array(
'title' => t('Location'),
'help' => t('The location of the Twitter account.'),
'field' => array(
'handler' => 'views_handler_field',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_field_xss',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
// Twitter account description
$data['twitter_account']['followers_count'] = array(
'title' => t('Followers'),
'help' => t('The number of users following this Twitter account.'),
'field' => array(
'handler' => 'views_handler_field_numeric',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_numeric',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
// Twitter account profile image
$data['twitter_account']['profile_image_url'] = array(
'title' => t('Profile image'),
'help' => t('The image used by the Twitter account.'),
'field' => array(
'handler' => 'twitter_views_handler_field_profile_image',
'click sortable' => TRUE,
),
);
// Twitter account url
$data['twitter_account']['url'] = array(
'title' => t('URL'),
'help' => t('The URL given by the Twitter account user.'),
'field' => array(
'handler' => 'views_handler_field_url',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_string',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
// Twitter account protected
$data['twitter_account']['protected'] = array(
'title' => t('Protected status'),
'help' => t('Whether posts from this Twitter account should be visible to the general public.'),
'field' => array(
'handler' => 'views_handler_field_boolean',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_boolean_operator',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
// Twitter message timestamp
$data['twitter_account']['last_refresh'] = array(
'title' => t('Last refresh'),
'help' => t('The time the Twitter account statuses were retrieved.'),
'field' => array(
'handler' => 'views_handler_field_date',
'click sortable' => TRUE,
),
'sort' => array(
'handler' => 'views_handler_sort',
),
'filter' => array(
'handler' => 'views_handler_filter_date',
),
);
// Twitter account description
$data['twitter_account']['uid'] = array(
'title' => t('User ID'),
'help' => t('The UID of the Twitter account.'),
);
// Twitter account protected
$data['twitter_account']['import'] = array(
'title' => t('Import status'),
'help' => t('Whether posts from this Twitter account should be imported automatically.'),
'field' => array(
'handler' => 'views_handler_field_boolean',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_boolean_operator',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
return $data;
}
/**
* @todo Please document this function.
* @see http://drupal.org/node/1354
*/
function twitter_views_data_alter(&$data) {
$data['users']['table']['join']['twitter'] = array(
'left_table' => 'twitter_account',
'left_field' => 'uid',
'field' => 'uid',
);
$data['users']['table']['join']['twitter_account'] = array(
// 'left_table' => 'twitter_user',
'left_field' => 'uid',
'field' => 'uid',
);
}
/**
* @}
*/