-
Notifications
You must be signed in to change notification settings - Fork 11
/
userlinktable.php
142 lines (126 loc) · 5.5 KB
/
userlinktable.php
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
<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
require_once(__DIR__.'/../../config.php');
require_once($CFG->dirroot.'/course/lib.php');
require_once($CFG->libdir.'/adminlib.php');
require_once($CFG->libdir.'/tablelib.php');
require_once(__DIR__."/lib.php");
if (!is_callable('groups_get_activity_group')) {
$adminroot = admin_get_root();
admin_externalpage_setup('managemodules',$adminroot);
} else {
admin_externalpage_setup('managemodules');
}
$param_pseudo = optional_param('pseudo', null, PARAM_INT); // module
$param_displaystart = optional_param('iDisplayStart', null, PARAM_INT); // displaystart
$param_displaylength = optional_param('iDisplayLength', null, PARAM_INT); // displaylength
$aColumns = array( 'tu.userid', 'tu.turnitin_uid', 'tu.turnitin_utp', 'mu.firstname', 'mu.lastname', 'mu.email' );
$sQuery = 'SELECT
tu.id AS id,
tu.userid AS userid,
tu.turnitin_uid AS turnitin_uid,
tu.turnitin_utp AS turnitin_utp,
mu.firstname AS firstname,
mu.lastname AS lastname,
mu.email AS email
FROM '.$CFG->prefix.'turnitintool_users tu
LEFT JOIN
'.$CFG->prefix.'user mu ON tu.userid = mu.id';
$sCountQuery = 'SELECT
tu.id AS id
FROM
'.$CFG->prefix.'turnitintool_users tu';
$param_sortcol[0] = optional_param('iSortCol_0', null, PARAM_INT); // sortcol
$param_sortingcols = optional_param('iSortingCols', 0, PARAM_INT); // sortingcols
$sOrder = "";
if ( !is_null( $param_sortcol[0] ) ) {
$sOrder = " ORDER BY ";
$startOrder = $sOrder;
for ( $i=0; $i < intval( $param_sortingcols ); $i++ ) {
$param_sortcol[$i] = optional_param('iSortCol_'.$i, null, PARAM_INT); // sortcol
$param_sortable[$i] = optional_param('bSortable_'.$param_sortcol[$i], null, PARAM_TEXT); // sortable
$param_sortdir[$i] = optional_param('sSortDir_'.$i, null, PARAM_TEXT); // sortdir
if ( $param_sortable[$i] == "true" ) {
$sOrder .= $aColumns[ $param_sortcol[$i] ] . " " . $param_sortdir[$i] . ", ";
}
}
if ( $sOrder == $startOrder ) {
$sOrder = "";
} else {
$sOrder = substr_replace( $sOrder, "", -2 );
}
}
$param_search = optional_param('sSearch', null, PARAM_TEXT); // sortingcols
$start = true;
$sWhere = ' WHERE ( ';
$bracket = false;
for ( $i=0; $i < count($aColumns); $i++ ) {
$param_searchable[$i] = optional_param('bSearchable_'.$i, null, PARAM_TEXT);
$param_search_n[$i] = optional_param('sSearch_'.$i, null, PARAM_TEXT);
if ( !is_null($param_searchable[$i]) && $param_searchable[$i] == "true" && ( $param_search != '' OR $param_search_n[$i] != '' ) ) {
if ( !$start ) $sWhere .= " OR ";
if ( $aColumns[$i] == 'tu.turnitin_uid' AND $param_search_n[$i] == '##linked##' ) {
if ( $sWhere != ' WHERE ( ' ) {
$sWhere = substr_replace( $sWhere, "", -3 );
$sWhere = $sWhere . ' ) AND ( ';
}
$sWhere .= "tu.turnitin_uid = 0";
if ( $bracket ) $sWhere .= " )";
} else if ( $aColumns[$i] != ' ' ) {
// If using postgres, cast as VARCHAR rather than CHAR
if ( ( is_callable( array($DB,'get_dbfamily') ) ) && ( $DB->get_dbfamily() == 'postgres' ) ) {
$sWhere .= "CAST(" . $aColumns[$i] . " AS VARCHAR) LIKE '%" . $param_search . "%'";
} else {
$sWhere .= "CAST(" . $aColumns[$i] . " AS CHAR) LIKE '%" . $param_search . "%'";
}
$start = false;
}
}
}
if ( $sWhere == ' WHERE ( ' ) {
$sWhere = "";
} else {
$sWhere .= " )";
}
$sLimit = "";
if ( !is_null( $param_displaystart ) && $param_displaylength != '-1' ) {
$limitfrom = $param_displaystart;
$limitnum = $param_displaylength;
} else {
$limitfrom = ( isset($DB) AND is_callable(array($DB,'get_records_sql')) ) ? 0 : '';
$limitnum = ( isset($DB) AND is_callable(array($DB,'get_records_sql')) ) ? 0 : '';
}
$sQuery .= $sWhere;
$cResult = ( isset($DB) AND is_callable(array($DB,'get_records_sql')) ) ? $DB->get_records_sql( $sQuery, array() ) : get_records_sql( $sQuery );
$iTotal = count( $cResult );
$sQuery .= $sOrder . $sLimit;
$rResult = ( isset($DB) AND is_callable(array($DB,'get_records_sql')) )
? $DB->get_records_sql( $sQuery, array(), $limitfrom, $limitnum )
: get_records_sql( $sQuery, $limitfrom, $limitnum );
$iFilteredTotal = $iTotal; //count( $rResult );
$param_echo = optional_param('sEcho', 0, PARAM_INT); // echo
$output = array(
"sEcho" => $param_echo,
"iTotalRecords" => $iTotal,
"iTotalDisplayRecords" => $iFilteredTotal,
"aaData" => array()
);
$rResult = ( !is_array( $rResult ) ) ? array() : $rResult;
$i = 0;
foreach ( $rResult as $result ) {
// 'cs.fullname', 'tu.name', 'fl.filename', 'us.firstname', 'us.lastname', 'us.email', 'fl.timecreated'
$row = array();
$row[] = '<input type="checkbox" id="userlinks_'.$i.'" name="userlinks[]" value="'.$result->id.'" />';
$row[] = ( $result->turnitin_uid == 0 ) ? '' : $result->turnitin_uid;
$row[] = ' ';
$row[] = ( !is_null( $result->firstname ) ) ? '<a href="'.$CFG->wwwroot.'/user/view.php?id='.$result->userid.'">' .$result->lastname . ', ' . $result->firstname . '</a> (' . $result->email . ')'
: get_string( 'nonmoodleuser', 'turnitintool' );
$row[] = ( $result->turnitin_utp == 1 ) ? turnitintool_pseudoemail( $result->email ) : '-';
$row[] = ' ';
$output['aaData'][] = $row;
$i++;
}
echo json_encode( $output );