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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
|
<?php
/**
* @version $Header$
* @package tags
*
* @copyright Copyright (c) 2004-2006, bitweaver.org
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
*/
/**
* required setup
*/
require_once( KERNEL_PKG_PATH.'BitBase.php' );
/**
* @package tags
*/
class LibertyTag extends LibertyBase {
var $mContentId;
function LibertyTag( $pContentId=NULL ) {
LibertyBase::LibertyBase();
$this->mContentId = $pContentId;
}
/* Delete when package complete! -wjames5
* methods needed
*
* get all tags limited by content_id <- load
* get all tags <- getList
* get all content for tag_id <- getContentList
* get tags by map use count <- getList with map refs count
* get tags sorted by tagged date <- getList sorted by map tagged date
*
* store new tags from tags array
* store new tag-content map for content_id
* expunge tag and all tag-content maps
* expunge tag-content map for content_id
*
*/
/**
* Load all the tags for a given ContentId
* @param pParamHash be sure to pass by reference in case we need to make modifcations to the hash
**/
function load() {
if( $this->isValid() ) {
$query = "
SELECT tgc.*, tg.*
FROM `".BIT_DB_PREFIX."tags_content_map` tgc
INNER JOIN `".BIT_DB_PREFIX."tags` tg ON tg.`tag_id` = tgc.`tag_id`
WHERE tgc.`content_id`=?";
//$this->mInfo = $this->mDb->query( $query, array( $this->mContentId ) );
$result = $this->mDb->query( $query, array( $this->mContentId ) );
if ($result) {
$ret = array();
while ($res = $result->fetchRow()) {
//Add tag urls
$res['tag_url'] = LibertyTag::getDisplayUrlFromHash($res['tag']);
$ret[] = $res;
}
$this->mInfo['tags'] = $ret;
}
}
return( count( $this->mInfo ) );
}
function loadTag ( &$pParamHash ){
if( !empty( $pParamHash['tag_id'] ) && is_numeric( $pParamHash['tag_id'] )) {
$selectSql = ''; $joinSql = ''; $whereSql = '';
$bindVars = array();
$whereSql .= "WHERE tg.`tag_id` = ?";
$bindVars[] = $pParamHash['tag_id'];
$query = "
SELECT tg.*
FROM `".BIT_DB_PREFIX."tags` tg
$whereSql";
if ( $result = $this->mDb->getRow( $query, $bindVars ) ){
//Add tag url
$result['tag_url'] = LibertyTag::getDisplayUrlFromHash($result['tag']);
$this->mInfo = $result;
};
}
return( count( $this->mInfo ) );
}
/**
* Make sure the data is safe to store
* @param array pParams reference to hash of values that will be used to store the page, they will be modified where necessary
* @return bool TRUE on success, FALSE if verify failed. If FALSE, $this->mErrors will have reason why
* @access private
**/
function verify( &$pParamHash ) {
global $gBitUser, $gBitSystem;
$pParamHash['tag_store'] = array();
$pParamHash['tag_map_store'] = array();
if(!empty( $pParamHash['tag'])){
$pParamHash['tag_store']['tag'] = $pParamHash['tag'];
}
if( !empty( $pParamHash['tag_id']) && is_numeric( $pParamHash['tag_id'])){
// $pParamHash['tag_map_store']['tag_id'] = $pParamHash['tag_id'];
$pParamHash['tag_store']['tag_id'] = $pParamHash['tag_id'];
}
if( isset( $pParamHash['tagged_on']) ){
$pParamHash['tag_map_store']['tagged_on'] = $pParamHash['tagged_on'];
} else {
$pParamHash['tag_map_store']['tagged_on'] = $gBitSystem->getUTCTime();
}
if( @$this->verifyId( $pParamHash['content_id']) ){
$pParamHash['tag_map_store']['content_id'] = $pParamHash['content_id'];
}/* else {
$this->mErrors['content_id'] = "No content id specified.";
}*/
if( $gBitUser->mUserId ){
$pParamHash['tag_map_store']['tagger_id'] = $gBitUser->mUserId;
} else {
$this->mErrors['user_id'] = "No user id specified.";
}
return( count( $this->mErrors )== 0 );
}
/* check tag exists
*/
function verifyTag ( &$pParamHash ){
$ret = FALSE;
$selectSql = ''; $joinSql = ''; $whereSql = '';
$bindVars = array();
// Bounds checking on tag name length
if( !empty( $pParamHash['tag'] ) && strlen( $pParamHash['tag'] ) > 64 ) {
$pParamHash['tag'] = substr( $pParamHash['tag'], 0, 64 );
}
// if tag_id supplied, use that
if( !empty( $pParamHash['tag_id'] ) && is_numeric( $pParamHash['tag_id'] )) {
$whereSql .= "WHERE tg.`tag_id` = ?";
$bindVars[] = $pParamHash['tag_id'];
}elseif( isset( $pParamHash['tag'] ) ) {
$whereSql .= "WHERE tg.`tag` = ?";
$bindVars[] = $pParamHash['tag'];
}
$query = " SELECT tg.* FROM `".BIT_DB_PREFIX."tags` tg $whereSql";
if ( $result = $this->mDb->getRow( $query, $bindVars ) ){
$pParamHash['tag_id'] = $result['tag_id'];
$this->mTagId = $result['tag'];
$ret = TRUE;
};
return $ret;
}
/**
* @param array pParams hash of values that will be used to store the page
* @return bool TRUE on success, FALSE if store could not occur. If FALSE, $this->mErrors will have reason why
* @access public
**/
function store( &$pParamHash ) {
if( $this->verify( $pParamHash ) ) {
$this->mDb->StartTrans();
if (!empty($pParamHash['tag_store'])) {
$tagtable = BIT_DB_PREFIX."tags";
$maptable = BIT_DB_PREFIX."tags_content_map";
if( $this->verifyTag($pParamHash['tag_store']) ) {
$pParamHash['tag_map_store']['tag_id'] = $pParamHash['tag_store']['tag_id'];
$this->mDb->associateInsert( $maptable, $pParamHash['tag_map_store'] );
} else {
$pParamHash['tag_store']['tag_id'] = $this->mDb->GenID( 'tags_tag_id_seq' );
$this->mDb->associateInsert( $tagtable, $pParamHash['tag_store'] );
$this->mTagId = $pParamHash['tag_map_store']['tag_id'] = $pParamHash['tag_store']['tag_id'];
$this->mDb->associateInsert( $maptable, $pParamHash['tag_map_store'] );
}
}
$this->mDb->CompleteTrans();
// since we use store generally in a loop of several tags we should not load here
//$this->load();
}
return( count( $this->mErrors )== 0 );
}
function storeOneTag( &$pParamHash ) {
if( $this->verify( $pParamHash ) ) {
$this->mDb->StartTrans();
if (!empty($pParamHash['tag_store'])) {
$tagtable = BIT_DB_PREFIX."tags";
if( isset($pParamHash['tag_store']['tag_id']) ) {
//this is kind of ugly but it works right
$this->mDb->associateUpdate( $tagtable, array("tag" => $pParamHash['tag_store']['tag']), array( "tag_id" => $pParamHash['tag_id'] ) );
} else {
$pParamHash['tag_store']['tag_id'] = $this->mDb->GenID( 'tags_tag_id_seq' );
$this->mDb->associateInsert( $tagtable, $pParamHash['tag_store'] );
}
}
$this->mDb->CompleteTrans();
$this->loadTag( $pParamHash['tag_store'] );
}
return( count( $this->mErrors )== 0 );
}
function sanitizeTag($pTag) {
global $gBitSystem;
// We always trim tags
$pTag = trim($pTag);
if( $gBitSystem->isFeatureActive("tags_strip_spaces") ) {
$pTag = preg_replace('/\s+/', '', $pTag);
}
if( $gBitSystem->isFeatureActive("tags_strip_nonword") ) {
$pTag = preg_replace('/\W+/', '', $pTag);
}
if( $gBitSystem->isFeatureActive("tags_lowercase") ) {
$pTag = strtolower($pTag);
}
if( $gBitSystem->getConfig('tags_strip_regexp') ) {
$pTag = preg_replace($gBitSystem->getConfig('tags_strip_regexp', $pTag), $gBitSystem->getConfig('tags_strip_replace'), $pTag);
}
return $pTag;
}
/* make tag data is safe to store
*/
function verifyTagsMap( &$pParamHash ) {
global $gBitUser, $gBitSystem;
$pParamHash['tag_map_store'] = array();
//this is to set the time we add content to a tag.
$timeStamp = $gBitSystem->getUTCTime();
//need to break up this string
$tagMixed = isset($pParamHash['tags']) ? $pParamHash['tags'] : NULL;
if( !empty( $tagMixed )){
if (!is_array( $tagMixed ) && !is_numeric( $tagMixed ) ){
$tagIds = explode( ",", $tagMixed );
}else if ( is_array( $tagMixed ) ) {
$tagIds = $tagMixed;
}else if ( is_numeric( $tagMixed ) ) {
$tagIds = array( $tagMixed );
}
foreach( $tagIds as $value ) {
$value = trim($value);
/* Ignore empty tags like a trailing , generate */
if( !empty($value) ) {
$value = LibertyTag::sanitizeTag($value);
if ( !empty($value) ) {
array_push( $pParamHash['tag_map_store'], array(
'tag' => $value,
'tagged_on' => $timeStamp,
'content_id' => $this->mContentId,
'user_id' => $gBitUser->mUserId,
));
}
else {
$this->mErrors[$value] = "Invalid tag.";
}
}
}
}
return ( count( $this->mErrors ) == 0 );
}
/**
* @param array pParams hash includes mix of tags that will be storeded and associated with a ContentId used by service
* @return bool TRUE on success, FALSE if store could not occur. If FALSE, $this->mErrors will have reason why
* @access public
**/
function storeTags( &$pParamHash ){
global $gBitSystem;
if( $this->verifyTagsMap( $pParamHash ) ) {
if( $this->isValid() ) {
foreach ( $pParamHash['tag_map_store'] as $value) {
$result = $this->store( $value );
}
$this->load();
}
}
return ( count( $this->mErrors ) == 0 );
}
/**
* check if the mContentId is set and valid
*/
function isValid() {
return( @BitBase::verifyId( $this->mContentId ) );
}
/**
* This function removes a tag entry
**/
function expunge( $tag_id ) {
$ret = FALSE;
$this->mDb->StartTrans();
$query = "DELETE FROM `".BIT_DB_PREFIX."tags_content_map` WHERE `tag_id` = ?";
if ( $result = $this->mDb->query( $query, array( $tag_id ) ) ){
// remove all references to tag in tags_content_map
$query = "DELETE FROM `".BIT_DB_PREFIX."tags` WHERE `tag_id` = ?";
if ( $result = $this->mDb->query( $query, array( $tag_id ) ) ) {
$ret = TRUE;
}else{
//some rollback feature would be nice here
}
}
$this->mDb->CompleteTrans();
return $ret;
}
/**
* This function removes all references to contentid from tags_content_map
**/
function expungeContentFromTagMap(){
$ret = FALSE;
if( $this->isValid() ) {
$this->mDb->StartTrans();
$query = "DELETE FROM `".BIT_DB_PREFIX."tags_content_map` WHERE `content_id` = ?";
$result = $this->mDb->query( $query, array( $this->mContentId ) );
$this->mDb->CompleteTrans();
}
return $ret;
}
/**
* This function removes all references to contentid from tags_content_map
**/
function expungeMyContentFromTagMap( &$pObject ){
global $gBitUser;
$ret = FALSE;
if( $this->isValid() ) {
$this->mDb->StartTrans();
$whereSql = "";
$bindVars[] = $this->mContentId;
if( !$pObject->hasAdminPermission() ){
$whereSql .= " AND tagger_id = ?";
$bindVars[] = $gBitUser->mUserId;
}
$query = "DELETE FROM `".BIT_DB_PREFIX."tags_content_map` WHERE `content_id` = ? $whereSql";
$result = $this->mDb->query( $query, $bindVars );
$this->mDb->CompleteTrans();
}
return $ret;
}
/**
* The function removes one or more tag from a piece of content
*/
function expungeTags($pContentId, $pTagIdArray) {
if (LibertyContent::verifyId($pContentId)) {
$this->mDb->StartTrans();
$query = "DELETE FROM `".BIT_DB_PREFIX."tags_content_map` WHERE `content_id` = ? AND `tag_id` IN (".implode( ',',array_fill( 0,count( $pTagIdArray ),'?' ) )." )";
$bind[] = $pContentId;
$bind = array_merge($bind, $pTagIdArray);
$result = $this->mDb->query( $query, $bind );
foreach( $pTagIdArray as $tagId ) {
if( !$this->mDb->getOne( "SELECT COUNT(*) FROM `".BIT_DB_PREFIX."tags_content_map` WHERE `tag_id`=?", array( $tagId ) ) ) {
$this->expunge( $tagId );
}
}
$this->mDb->CompleteTrans();
}
}
function getDisplayUrl($tag){
global $gBitSystem;
if( $gBitSystem->isFeatureActive( 'pretty_urls' ) || $gBitSystem->isFeatureActive( 'pretty_urls_extended' ) ) {
$rewrite_tag = $gBitSystem->isFeatureActive( 'pretty_urls_extended' ) ? 'view/':'';
$tag_url = TAGS_PKG_URL.$rewrite_tag.urlencode( $tag );
} else {
$tag_url = TAGS_PKG_URL.'index.php?tags='.urlencode( $tag );
}
return $tag_url;
}
/**
* This function gets a list of tags
**/
function getList( &$pParamHash ) {
global $gBitUser, $gBitSystem;
$bindVars = array();
$joinSql = !empty($pParamHash['join_sql']) ? $pParamHash['join_sql'] : '';
if( !empty( $pParamHash['content_type_guid'] ) ) {
$bindVars[] = $pParamHash['content_type_guid'];
$joinSql = "INNER JOIN `".BIT_DB_PREFIX."liberty_content` lc ON (tgc.`content_id`=lc.`content_id` AND lc.`content_type_guid`=?) ";
}
$sort_mode_prefix = 'tg';
//Backward compatability for most popular sort method
if ( (isset($pParamHash['sort']) && $pParamHash['sort']=='mostpopular') ) {
$pParamHash['sort_mode'] = 'tag_count_desc';
}else if( empty( $pParamHash['sort_mode'] ) ) {
$pParamHash['sort_mode'] = 'tag_asc';
}
$sortHash = array(
'content_id_desc',
'content_id_asc',
'modifier_user_desc',
'modifier_user_asc',
'modifier_real_name_desc',
'modifier_real_name_asc',
'creator_user_desc',
'creator_user_asc',
'creator_real_name_desc',
'creator_real_name_asc',
'title_asc',
'title_desc',
'content_type_guid_asc',
'content_type_guid_desc',
'ip_asc',
'ip_desc',
'last_modified_asc',
'last_modified_desc',
'created_asc',
'created_desc',
);
if( empty( $pParamHash['sort_mode'] ) || in_array( $pParamHash['sort_mode'], $sortHash ) ) {
$pParamHash['sort_mode'] = 'tag_asc';
}
/**
* @TODO this all needs to go in in some other getList type method
* and these are just sketches - need to be different kinds of queries in most cases
**/
/*
// get tags by most hits on content
if ($pParamHash['sort_mode'] == 'hits_desc') {
$joinSql .= "LEFT OUTER JOIN `".BIT_DB_PREFIX."liberty_content_hits` lch ON lc.`content_id` = lch.`content_id`";
}
// get tags sorted by tagged date <- getList sorted by map tagged date
if ($pParamHash['sort_mode'] == 'tagged_on_desc') {
$sort_mode_prefix = 'tgc';
}
*/
$sort_mode = $this->mDb->convertSortmode( $pParamHash['sort_mode'] );
// get all tags
$query = "
SELECT tg.`tag_id`, tg.`tag`, COUNT(tgc.`content_id`) AS tag_count
FROM `".BIT_DB_PREFIX."tags` tg
INNER JOIN `".BIT_DB_PREFIX."tags_content_map` tgc ON ( tgc.`tag_id` = tg.`tag_id` )
$joinSql
GROUP BY tg.`tag_id`,tg.`tag`
ORDER BY $sort_mode";
$queryCount = "
SELECT COUNT( * )
FROM `".BIT_DB_PREFIX."tags` tg";
$result = $this->mDb->query( $query,$bindVars, ( !empty($pParamHash['max_records']) ? $pParamHash['max_records'] : NULL ) );
$cant = $this->mDb->getOne( $queryCount );
$ret = array();
while ($res = $result->fetchRow()) {
// this was really sucky, its now replaced by the slightly lesssucky subselect above. the subselect should prolly be replaced with a count table
// $res['tag_count'] = $this->getPopCount($res['tag_id']);
$res['tag_url'] = LibertyTag::getDisplayUrlFromHash($res['tag']);
$ret[] = $res;
}
//get keys for doing sorts
foreach ($ret as $key => $row) {
$popcant[$key] = $row['tag_count'];
$orderedcant[$key] = $row['tag_count'];
}
//this part creates the tag weight in a scale of 1-10
//get highest count and get lowest count
if (!empty($orderedcant)) {
sort($orderedcant);
$lowcant = $orderedcant[0];
$highcant = $orderedcant[ (count($orderedcant) - 1) ];
//hack to prevent us from dividing by zero - this whole weighting thing could use a slightly better formula
if ($highcant == $lowcant){$lowcant -= 1;}
//rescore
//1. High-low = x
$cantoffset = $highcant - $lowcant;
//2. ratio 10/x
if ($cantoffset > 9){
$tagscale = 9/$cantoffset;
}else{
//@todo make this more sophisticated if the spread is not big enough
$tagscale = 9/$cantoffset;
}
//3. (n - low+1)*ratio (n is # to be scaled)
foreach ($ret as $key => $row) {
$ret[$key]['tagscale'] = round((($row['tag_count'] - $lowcant) * $tagscale) + 1, 0);
}
}
//trim to max popular count if a limit is asked for
if ( isset($pParamHash["max_popular"]) && is_numeric($pParamHash["max_popular"])){
$max_popular = $ret;
array_multisort($popcant, SORT_DESC, $max_popular);
$max_popular = array_slice($max_popular, 0, $pParamHash["max_popular"]);
// preserve the sort requested by matching to the original list
$sorted_popular = array();
foreach ( $ret as $retkey => $retrow){
foreach ( $max_popular as $key => $row){
if ( $row['tag_id'] == $retrow['tag_id'] ){
$sorted_popular[] = $retrow;
break;
}
}
}
$ret = $sorted_popular;
}
$pParamHash["data"] = $ret;
$pParamHash["cant"] = $cant;
return $pParamHash;
}
/**
* This function gets the number of times a tag is used aka Popularity Count
**/
function getPopCount($tag_id){
$queryCount = "
SELECT COUNT( * )
FROM `".BIT_DB_PREFIX."tags_content_map` tgc
WHERE tgc.`tag_id` = ?";
$cant = $this->mDb->getOne($queryCount, array($tag_id) );
return $cant;
}
/**
* This function gets all content by matching to any tag passed in a group of tags, eliminates dupe records
**/
function assignContentList(&$pParamHash){
global $gBitSystem, $gBitSmarty;
$gBitSystem->verifyPermission( 'p_tags_view' );
// some content specific offsets and pagination settings
if( !empty( $pParamHash['sort_mode'] )) {
$content_sort_mode = $pParamHash['sort_mode'];
$gBitSmarty->assign( 'sort_mode', $content_sort_mode );
}
$max_content = ( !empty( $pParamHash['max_records'] )) ? $pParamHash['max_records'] : $gBitSystem->getConfig( 'max_records' );
$gBitSmarty->assign( 'user_id', @BitBase::verifyId( $pParamHash['user_id'] ) ? $pParamHash['user_id'] : NULL );
// now that we have all the offsets, we can get the content list
include_once( LIBERTY_PKG_PATH.'get_content_list_inc.php' );
$gBitSmarty->assign( 'contentSelect', $contentSelect );
$gBitSmarty->assign( 'contentTypes', $contentTypes );
$contentListHash['parameters']['content_type_guid'] = $contentSelect;
$gBitSmarty->assign( 'listInfo', $contentListHash );
$gBitSmarty->assign( 'content_type_guids', ( isset( $pParamHash['content_type_guid'] ) ? $pParamHash['content_type_guid'] : NULL ));
if ( isset($pParamHash['matchtags']) && $pParamHash['matchtags'] == 'all'){
//need some sort of matching function
} else {
//match on any tags
$distinctdata = $this->array_distinct( $contentList, 'content_id' );
$distinctdata = array_merge($distinctdata);
}
$gBitSmarty->assign_by_ref('contentList', $distinctdata);
}
/**
* Used by getContentList to strip out duplicate records in a list
* Lifted from http://us3.php.net/manual/en/function.array-unique.php#57006
*
* @param $array - nothing to say
* @param $group_keys - columns which have to be grouped - can be STRING or ARRAY (STRING, STRING[, ...])
* @param $sum_keys - columns which have to be summed - can be STRING or ARRAY (STRING, STRING[, ...])
* @param $count_key - must be STRING - count the grouped keys
*/
function array_distinct ($array, $group_keys, $sum_keys = NULL, $count_key = NULL){
if (!is_array ($group_keys)) $group_keys = array ($group_keys);
if (!is_array ($sum_keys)) $sum_keys = array ($sum_keys);
$existing_sub_keys = array ();
$output = array ();
foreach ($array as $key => $sub_array){
$puffer = NULL;
#group keys
foreach ($group_keys as $group_key){
$puffer .= $sub_array[$group_key];
}
$puffer = serialize ($puffer);
if (!in_array ($puffer, $existing_sub_keys)){
$existing_sub_keys[$key] = $puffer;
$output[$key] = $sub_array;
}
else{
$puffer = array_search ($puffer, $existing_sub_keys);
#sum keys
foreach ($sum_keys as $sum_key){
if (is_string ($sum_key)) $output[$puffer][$sum_key] += $sub_array[$sum_key];
}
#count grouped keys
if (!array_key_exists ($count_key, $output[$puffer])) $output[$puffer][$count_key] = 1;
if (is_string ($count_key)) $output[$puffer][$count_key]++;
}
}
return $output;
}
}
/********* SERVICE FUNCTIONS *********/
function tags_content_display( &$pObject ) {
global $gBitSystem, $gBitSmarty, $gBitUser;
if( method_exists( $pObject, 'getContentType' ) && $gBitSystem->isFeatureActive( 'tags_tag_'.$pObject->getContentType()) ){
if ( $gBitSystem->isPackageActive( 'tags' ) ) {
if( $gBitUser->hasPermission( 'p_tags_view' ) ) {
$tag = new LibertyTag( $pObject->mContentId );
if( $tag->load() ) {
$gBitSmarty->assign( 'tagData', !empty( $tag->mInfo['tags'] ) ? $tag->mInfo['tags'] : NULL );
}
}
}
}
}
/**
* filter the search with pigeonholes
* @param $pParamHash['tags']['filter'] - a tag or an array of tags
**/
function tags_content_list_sql( &$pObject, &$pParamHash = NULL ) {
global $gBitSystem;
$ret = array();
if (isset($pParamHash['tags']) && !empty($pParamHash['tags'])){
/* slated for removal - makes no sense since content likely has multiple tags */
// $ret['select_sql'] = ", tgc.`tag_id`, tgc.`tagger_id`, tgc.`tagged_on`";
$ret['join_sql'] = " INNER JOIN `".BIT_DB_PREFIX."tags_content_map` tgc ON ( lc.`content_id`=tgc.`content_id` )
INNER JOIN `".BIT_DB_PREFIX."tags` tg ON ( tg.`tag_id`=tgc.`tag_id` )";
$tagMixed = $pParamHash['tags']; //need to break up this string
if( !empty( $tagMixed )){
if (!is_array( $tagMixed ) && !is_numeric( $tagMixed ) ){
$tagIds = explode( ",", $tagMixed );
}else if ( is_array( $tagMixed ) ) {
$tagIds = $tagMixed;
}else if ( is_numeric( $tagMixed ) ) {
$tagIds = array( $tagMixed );
}
}
$tags = array();
// strip off whitespace
foreach( $tagIds as $value ){
// ignore empty ones created by trailing ,'s
$value = trim( $value );
if( !empty($value) ) {
$tags[] = $value;
}
}
$ret['where_sql'] = ' AND tg.`tag` IN ('.implode( ',', array_fill(0, count( $tags ), '?' ) ).')';
$ret['bind_vars'] = $tags;
// return the values sent for pagination / url purposes
$pParamHash['listInfo']['tags'] = $pParamHash['tags'];
$pParamHash['listInfo']['ihash']['tags'] = $pParamHash['tags'];
}
return $ret;
}
function tags_content_edit( $pObject=NULL ) {
global $gBitSystem, $gBitSmarty, $gBitUser;
if( method_exists( $pObject, 'getContentType' ) && $gBitSystem->isFeatureActive( 'tags_tag_'.$pObject->getContentType()) ){
if ( $gBitSystem->isPackageActive( 'tags' )) {
$tag = new LibertyTag( $pObject->mContentId );
if( $tag->load() && ($pObject->hasUserPermission( 'p_tags_create' ) || $gBitUser->hasPermission( 'p_tags_moderate' )) ) {
$tags = array();
foreach ($tag->mInfo['tags'] as $t) {
if ($t['tagger_id'] == $gBitUser->mUserId || $gBitUser->hasPermission('p_tags_admin') ) {
$tags[] = $t['tag'];
}
}
$pObject->setField( 'tags', implode(", ", $tags) );
$gBitSmarty->assign( 'loadTags', TRUE );
$gBitSmarty->assign( 'tagList', $pObject->getField( 'tags' ) );
$gBitSmarty->assign( 'tagData', $tag->getField( 'tags' ) );
}
}
}
}
/**
* @param includes a string or array of 'tags' and contentid for association.
**/
function tags_content_store( &$pObject, &$pParamHash ) {
global $gBitUser, $gBitSystem;
if( $gBitUser->hasPermission( 'p_tags_create' ) ) {
$errors = NULL;
// If a content access system is active, let's call it
if( $gBitSystem->isPackageActive( 'tags' ) && isset( $pParamHash['tags'] ) ) {
$tag = new LibertyTag( $pObject->mContentId );
if( $gBitUser->hasPermission('p_tags_create') ) {
$tag->expungeMyContentFromTagMap( $pObject );
}
if ( !$tag->storeTags( $pParamHash ) ) {
$errors=$tag->mErrors;
}
}
return( $errors );
}
}
function tags_content_preview( &$pObject) {
global $gBitUser, $gBitSystem, $gBitSmarty;
tags_content_edit( $pObject );
if( $gBitUser->hasPermission( 'p_tags_create' ) ) {
if ( $gBitSystem->isPackageActive( 'tags' ) ) {
if (isset($_REQUEST['tags'])) {
//$pObject->mInfo['tags'] = $_REQUEST['tags'];
$gBitSmarty->assign('tagList', $_REQUEST['tags']);
}
}
}
}
function tags_content_expunge( &$pObject ) {
$tag = new LibertyTag( $pObject->mContentId );
$tag->expungeContentFromTagMap();
}
// make sure all tags from a deleted user are nuked
function tags_user_expunge( &$pObject ) {
if( is_a( $pObject, 'BitUser' ) && !empty( $pObject->mUserId ) ) {
$pObject->mDb->StartTrans();
$pObject->mDb->query( "DELETE FROM `".BIT_DB_PREFIX."tags_content_map` WHERE tagger_id=?", array( $pObject->mUserId ) );
$pObject->mDb->CompleteTrans();
}
}
?>
|