aboutsummaryrefslogtreecommitdiff
path: root/vendor/oauth-php/library/store/OAuthStoreOracle.php
blob: ea905a291fa302a35d19bfd3fde5c504d9615e56 (plain)
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
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
<?php

/**

 * Added by Vinay Kant Sahu.

 * Replaced all the MySQL queries with Oracle SPs. (ref: OAuthStoreSQL.php)

 * vinaykant.sahu@gmail.com

 *

 * Storage container for the oauth credentials, both server and consumer side.

 * Based on Oracle

 *

 * @author Vinay Kant Sahu <vinaykant.sahu@gmail.com>

 * @date  Aug 6, 2010

 * 

 * The MIT License

 * 

 * Permission is hereby granted, free of charge, to any person obtaining a copy

 * of this software and associated documentation files (the "Software"), to deal

 * in the Software without restriction, including without limitation the rights

 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

 * copies of the Software, and to permit persons to whom the Software is

 * furnished to do so, subject to the following conditions:

 * 

 * The above copyright notice and this permission notice shall be included in

 * all copies or substantial portions of the Software.

 * 

 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR

 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,

 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER

 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,

 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN

 * THE SOFTWARE.

 */

require_once dirname(__FILE__) . '/OAuthStoreAbstract.class.php';

abstract class OAuthStoreOracle extends OAuthStoreAbstract {
    /**

     * Maximum delta a timestamp may be off from a previous timestamp.

     * Allows multiple consumers with some clock skew to work with the same token.

     * Unit is seconds, default max skew is 10 minutes.

     */
    protected $max_timestamp_skew = MAX_TIMESTAMP_SKEW;

    /**

     * Default ttl for request tokens

     */
    protected $max_request_token_ttl = MAX_REQUEST_TOKEN_TIME;


    /**

     * Construct the OAuthStoreMySQL.

     * In the options you have to supply either:

     * - server, username, password and database (for a mysql_connect)

     * - conn (for the connection to be used)

     *

     * @param array options

     */
    function __construct ( $options = array() ) {
        if (isset($options['conn'])) {
            $this->conn = $options['conn'];
        }
        else {
            $this->conn=oci_connect(DBUSER,DBPASSWORD,DBHOST);

            if ($this->conn === false) {
                throw new OAuthException2('Could not connect to database');
            }

            // $this->query('set character set utf8');

        }
    }

	/**

	 * Find stored credentials for the consumer key and token. Used by an OAuth server

	 * when verifying an OAuth request.

	 * 

	 * @param string consumer_key

	 * @param string token

	 * @param string token_type		false, 'request' or 'access'

	 * @exception OAuthException2 when no secrets where found

	 * @return array	assoc (consumer_secret, token_secret, osr_id, ost_id, user_id)

	 */
	public function getSecretsForVerify ($consumer_key, $token, $token_type = 'access' ) {
            $sql = "BEGIN SP_GET_SECRETS_FOR_VERIFY(:P_CONSUMER_KEY, :P_TOKEN, :P_TOKEN_TYPE, :P_ROWS, :P_RESULT); END;";

            // parse sql

            $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');
            
            // Bind In and Out Variables

            oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $consumer_key, 255);
            oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
            oci_bind_by_name($stmt, ':P_TOKEN_TYPE', $token_type, 255);
            oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

            //Bind the ref cursor

            $p_row = oci_new_cursor($this->conn);
            oci_bind_by_name($stmt, ':P_ROWS', $p_row, -1, OCI_B_CURSOR);

            //Execute the statement

            oci_execute($stmt);

            // treat the ref cursor as a statement resource

            oci_execute($p_row, OCI_DEFAULT);
            oci_fetch_all($p_row, $getSecretsForVerifyList, null, null, OCI_FETCHSTATEMENT_BY_ROW);

            $rs =$getSecretsForVerifyList;
            if (empty($rs)) {
                throw new OAuthException2('The consumer_key "'.$consumer_key.'" token "'.$token.'" combination does not exist or is not enabled.');
            }
 
            return $rs[0];
        }


	/**

	 * Find the server details for signing a request, always looks for an access token.

	 * The returned credentials depend on which local user is making the request.

	 * 

	 * The consumer_key must belong to the user or be public (user id is null)

	 * 

	 * For signing we need all of the following:

	 * 

	 * consumer_key			consumer key associated with the server

	 * consumer_secret		consumer secret associated with this server

	 * token				access token associated with this server

	 * token_secret			secret for the access token

	 * signature_methods	signing methods supported by the server (array)

	 * 

	 * @todo filter on token type (we should know how and with what to sign this request, and there might be old access tokens)

	 * @param string uri	uri of the server

	 * @param int user_id	id of the logged on user

	 * @param string name	(optional) name of the token (case sensitive)

	 * @exception OAuthException2 when no credentials found

	 * @return array

	 */
	public function getSecretsForSignature ( $uri, $user_id, $name = '' ) {
            // Find a consumer key and token for the given uri

            $ps     = parse_url($uri);
            $host   = isset($ps['host']) ? $ps['host'] : 'localhost';
            $path   = isset($ps['path']) ? $ps['path'] : '';

            if (empty($path) || substr($path, -1) != '/') {
                $path .= '/';
            }
            //

            $sql = "BEGIN SP_GET_SECRETS_FOR_SIGNATURE(:P_HOST, :P_PATH, :P_USER_ID, :P_NAME, :P_ROWS, :P_RESULT); END;";

            // parse sql

            $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

            // Bind In and Out Variables

            oci_bind_by_name($stmt, ':P_HOST', $host, 255);
            oci_bind_by_name($stmt, ':P_PATH', $path, 255);
            oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 20);
            oci_bind_by_name($stmt, ':P_NAME', $name, 255);
            oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

            //Bind the ref cursor

            $p_row = oci_new_cursor($this->conn);
            oci_bind_by_name($stmt, ':P_ROWS', $p_row, -1, OCI_B_CURSOR);

            //Execute the statement

            oci_execute($stmt);

            // treat the ref cursor as a statement resource

            oci_execute($p_row, OCI_DEFAULT);
            oci_fetch_all($p_row, $getSecretsForSignatureList, null, null, OCI_FETCHSTATEMENT_BY_ROW);
            $secrets  = $getSecretsForSignatureList[0];
            //

            // The owner of the consumer_key is either the user or nobody (public consumer key)

            /*$secrets = $this->query_row_assoc('

					SELECT	ocr_consumer_key		as consumer_key,

							ocr_consumer_secret		as consumer_secret,

							oct_token				as token,

							oct_token_secret		as token_secret,

							ocr_signature_methods	as signature_methods

					FROM oauth_consumer_registry

						JOIN oauth_consumer_token ON oct_ocr_id_ref = ocr_id

					WHERE ocr_server_uri_host = \'%s\'

					  AND ocr_server_uri_path = LEFT(\'%s\', LENGTH(ocr_server_uri_path))

					  AND (ocr_usa_id_ref = %s OR ocr_usa_id_ref IS NULL)

					  AND oct_usa_id_ref	  = %d

					  AND oct_token_type      = \'access\'

					  AND oct_name			  = \'%s\'

					  AND oct_token_ttl       >= NOW()

					ORDER BY ocr_usa_id_ref DESC, ocr_consumer_secret DESC, LENGTH(ocr_server_uri_path) DESC

					LIMIT 0,1

					', $host, $path, $user_id, $user_id, $name

					);

            */
            if (empty($secrets)) {
                throw new OAuthException2('No server tokens available for '.$uri);
            }
            $secrets['signature_methods'] = explode(',', $secrets['signature_methods']);
            return $secrets;
        }


	/**

	 * Get the token and token secret we obtained from a server.

	 * 

	 * @param string	consumer_key

	 * @param string 	token

	 * @param string	token_type

	 * @param int		user_id			the user owning the token

	 * @param string	name			optional name for a named token

	 * @exception OAuthException2 when no credentials found

	 * @return array

	 */
	public function getServerTokenSecrets ($consumer_key,$token,$token_type,$user_id,$name = '')
	{
		if ($token_type != 'request' && $token_type != 'access')
		{
			throw new OAuthException2('Unkown token type "'.$token_type.'", must be either "request" or "access"');
		}
                //

                $sql = "BEGIN SP_GET_SERVER_TOKEN_SECRETS(:P_CONSUMER_KEY, :P_TOKEN, :P_TOKEN_TYPE, :P_USER_ID, :P_ROWS, :P_RESULT); END;";

                // parse sql

                $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');
                
                // Bind In and Out Variables

                oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $consumer_key, 255);
                oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
                oci_bind_by_name($stmt, ':P_TOKEN_TYPE', $token_type, 20);
                oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 255);
                oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

                //Bind the ref cursor

                $p_row = oci_new_cursor($this->conn);
                oci_bind_by_name($stmt, ':P_ROWS', $p_row, -1, OCI_B_CURSOR);

                //Execute the statement

                oci_execute($stmt);

                // treat the ref cursor as a statement resource

                oci_execute($p_row, OCI_DEFAULT);
                oci_fetch_all($p_row, $getServerTokenSecretsList, null, null, OCI_FETCHSTATEMENT_BY_ROW);
                $r=$getServerTokenSecretsList[0];
                //

		// Take the most recent token of the given type

		/*$r = $this->query_row_assoc('

					SELECT	ocr_consumer_key		as consumer_key,

							ocr_consumer_secret		as consumer_secret,

							oct_token				as token,

							oct_token_secret		as token_secret,

							oct_name				as token_name,

							ocr_signature_methods	as signature_methods,

							ocr_server_uri			as server_uri,

							ocr_request_token_uri	as request_token_uri,

							ocr_authorize_uri		as authorize_uri,

							ocr_access_token_uri	as access_token_uri,

							IF(oct_token_ttl >= \'9999-12-31\', NULL, UNIX_TIMESTAMP(oct_token_ttl) - UNIX_TIMESTAMP(NOW())) as token_ttl

					FROM oauth_consumer_registry

							JOIN oauth_consumer_token

							ON oct_ocr_id_ref = ocr_id

					WHERE ocr_consumer_key = \'%s\'

					  AND oct_token_type   = \'%s\'

					  AND oct_token        = \'%s\'

					  AND oct_usa_id_ref   = %d

					  AND oct_token_ttl    >= NOW()

					', $consumer_key, $token_type, $token, $user_id

					);*/
					
		if (empty($r))
		{
			throw new OAuthException2('Could not find a "'.$token_type.'" token for consumer "'.$consumer_key.'" and user '.$user_id);
		}
		if (isset($r['signature_methods']) && !empty($r['signature_methods']))
		{
			$r['signature_methods'] = explode(',',$r['signature_methods']);
		}
		else
		{
			$r['signature_methods'] = array();
		}
		return $r;		
	}


	/**

	 * Add a request token we obtained from a server.

	 * 

	 * @todo remove old tokens for this user and this ocr_id

	 * @param string consumer_key	key of the server in the consumer registry

	 * @param string token_type		one of 'request' or 'access'

	 * @param string token

	 * @param string token_secret

	 * @param int 	 user_id			the user owning the token

	 * @param array  options			extra options, name and token_ttl

	 * @exception OAuthException2 when server is not known

	 * @exception OAuthException2 when we received a duplicate token

	 */
	public function addServerToken ( $consumer_key, $token_type, $token, $token_secret, $user_id, $options = array() )
	{
		if ($token_type != 'request' && $token_type != 'access')
		{
			throw new OAuthException2('Unknown token type "'.$token_type.'", must be either "request" or "access"');
		}

		// Maximum time to live for this token

		if (isset($options['token_ttl']) && is_numeric($options['token_ttl']))
		{
			$ttl = intval($options['token_ttl']);
		}
		else if ($token_type == 'request')
		{
			$ttl =intval($this->max_request_token_ttl);
		}
		else
		{
			$ttl = NULL;
		}
		
		
		
		// Named tokens, unique per user/consumer key

		if (isset($options['name']) && $options['name'] != '')
		{
			$name = $options['name'];
		}
		else
		{
			$name = '';
		}
                //

                $sql = "BEGIN SP_ADD_SERVER_TOKEN(:P_CONSUMER_KEY, :P_USER_ID, :P_NAME, :P_TOKEN_TYPE, :P_TOKEN, :P_TOKEN_SECRET, :P_TOKEN_INTERVAL_IN_SEC, :P_RESULT); END;";

                // parse sql

                $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

                // Bind In and Out Variables

                oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $consumer_key, 255);
                oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 40);
                oci_bind_by_name($stmt, ':P_NAME', $name, 255);
                oci_bind_by_name($stmt, ':P_TOKEN_TYPE', $token_type, 20);
                oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
                oci_bind_by_name($stmt, ':P_TOKEN_SECRET', $token_secret, 255);
                oci_bind_by_name($stmt, ':P_TOKEN_INTERVAL_IN_SEC', $ttl, 40);
                oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

                //Execute the statement

                oci_execute($stmt);
                //


              
		
		if (!$result)
		{
			throw new OAuthException2('Received duplicate token "'.$token.'" for the same consumer_key "'.$consumer_key.'"');
		}
	}


	/**

	 * Delete a server key.  This removes access to that site.

	 * 

	 * @param string consumer_key

	 * @param int user_id	user registering this server

	 * @param boolean user_is_admin

	 */
	public function deleteServer ( $consumer_key, $user_id, $user_is_admin = false )
	{
		
            $sql = "BEGIN SP_DELETE_SERVER(:P_CONSUMER_KEY, :P_USER_ID, :P_USER_IS_ADMIN, :P_RESULT); END;";

                // parse sql

                $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

                // Bind In and Out Variables

                oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $consumer_key, 255);
                oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 40);
                oci_bind_by_name($stmt, ':P_USER_IS_ADMIN', $user_is_admin, 255);
                oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

                //Execute the statement

                oci_execute($stmt);
	}
	
	
	/**

	 * Get a server from the consumer registry using the consumer key

	 * 

	 * @param string consumer_key

	 * @param int user_id

	 * @param boolean user_is_admin (optional)

	 * @exception OAuthException2 when server is not found

	 * @return array

	 */	
	public function getServer ( $consumer_key, $user_id, $user_is_admin = false )
	{
		
                //

                $sql = "BEGIN SP_GET_SERVER(:P_CONSUMER_KEY, :P_USER_ID, :P_ROWS, :P_RESULT); END;";

                // parse sql

                $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

                // Bind In and Out Variables

                oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $consumer_key, 255);                
                oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 40);
                oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

                //Bind the ref cursor

                $p_row = oci_new_cursor($this->conn);
                oci_bind_by_name($stmt, ':P_ROWS', $p_row, -1, OCI_B_CURSOR);

                //Execute the statement

                oci_execute($stmt);

                // treat the ref cursor as a statement resource

                oci_execute($p_row, OCI_DEFAULT);
                oci_fetch_all($p_row, $getServerList, null, null, OCI_FETCHSTATEMENT_BY_ROW);
                $r = $getServerList;
                //

		if (empty($r))
		{
			throw new OAuthException2('No server with consumer_key "'.$consumer_key.'" has been registered (for this user)');
		}
			
		if (isset($r['signature_methods']) && !empty($r['signature_methods']))
		{
			$r['signature_methods'] = explode(',',$r['signature_methods']);
		}
		else
		{
			$r['signature_methods'] = array();
		}
		return $r;
	}



	/**

	 * Find the server details that might be used for a request

	 * 

	 * The consumer_key must belong to the user or be public (user id is null)

	 * 

	 * @param string uri	uri of the server

	 * @param int user_id	id of the logged on user

	 * @exception OAuthException2 when no credentials found

	 * @return array

	 */
	public function getServerForUri ( $uri, $user_id )
	{
		// Find a consumer key and token for the given uri

		$ps	= parse_url($uri);
		$host	= isset($ps['host']) ? $ps['host'] : 'localhost';
		$path	= isset($ps['path']) ? $ps['path'] : '';
		
		if (empty($path) || substr($path, -1) != '/')
		{
			$path .= '/';
		}

		
                //

                $sql = "BEGIN SP_GET_SERVER_FOR_URI(:P_HOST, :P_PATH,:P_USER_ID, :P_ROWS, :P_RESULT); END;";

                // parse sql

                $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

                // Bind In and Out Variables

                oci_bind_by_name($stmt, ':P_HOST', $host, 255);
                oci_bind_by_name($stmt, ':P_PATH', $path, 255);
                oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 40);
                oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

                //Bind the ref cursor

                $p_row = oci_new_cursor($this->conn);
                oci_bind_by_name($stmt, ':P_ROWS', $p_row, -1, OCI_B_CURSOR);

                //Execute the statement

                oci_execute($stmt);

                // treat the ref cursor as a statement resource

                oci_execute($p_row, OCI_DEFAULT);
                oci_fetch_all($p_row, $getServerForUriList, null, null, OCI_FETCHSTATEMENT_BY_ROW);
                $server = $getServerForUriList;
                //		

		if (empty($server))
		{
			throw new OAuthException2('No server available for '.$uri);
		}
		$server['signature_methods'] = explode(',', $server['signature_methods']);
		return $server;
	}


	/**

	 * Get a list of all server token this user has access to.

	 * 

	 * @param int usr_id

	 * @return array

	 */
	public function listServerTokens ( $user_id )
	{
		
                $sql = "BEGIN SP_LIST_SERVER_TOKENS(:P_USER_ID, :P_ROWS, :P_RESULT); END;";

                // parse sql

                $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

                // Bind In and Out Variables                

                oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 40);
                oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

                //Bind the ref cursor

                $p_row = oci_new_cursor($this->conn);
                oci_bind_by_name($stmt, ':P_ROWS', $p_row, -1, OCI_B_CURSOR);

                //Execute the statement

                oci_execute($stmt);

                // treat the ref cursor as a statement resource

                oci_execute($p_row, OCI_DEFAULT);
                oci_fetch_all($p_row, $listServerTokensList, null, null, OCI_FETCHSTATEMENT_BY_ROW);
                $ts = $listServerTokensList;
		return $ts;
	}


	/**

	 * Count how many tokens we have for the given server

	 * 

	 * @param string consumer_key

	 * @return int

	 */
	public function countServerTokens ( $consumer_key )
	{
		
                //

                $count =0;
                $sql = "BEGIN SP_COUNT_SERVICE_TOKENS(:P_CONSUMER_KEY, :P_COUNT, :P_RESULT); END;";

                // parse sql

                $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

                // Bind In and Out Variables

                oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $consumer_key, 255);
                oci_bind_by_name($stmt, ':P_COUNT', $count, 40);
                oci_bind_by_name($stmt, ':P_RESULT', $result, 20);
                
                //Execute the statement

                oci_execute($stmt);                
                //

		return $count;
	}


	/**

	 * Get a specific server token for the given user

	 * 

	 * @param string consumer_key

	 * @param string token

	 * @param int user_id

	 * @exception OAuthException2 when no such token found

	 * @return array

	 */
	public function getServerToken ( $consumer_key, $token, $user_id )
	{
		
                $sql = "BEGIN SP_GET_SERVER_TOKEN(:P_CONSUMER_KEY, :P_USER_ID,:P_TOKEN, :P_ROWS, :P_RESULT); END;";

                // parse sql

                $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

                // Bind In and Out Variables

                oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $consumer_key, 255);
                oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 40);
                oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
                oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

                //Bind the ref cursor

                $p_row = oci_new_cursor($this->conn);
                oci_bind_by_name($stmt, ':P_ROWS', $p_row, -1, OCI_B_CURSOR);

                //Execute the statement

                oci_execute($stmt);

                // treat the ref cursor as a statement resource

                oci_execute($p_row, OCI_DEFAULT);
                oci_fetch_all($p_row, $getServerTokenList, null, null, OCI_FETCHSTATEMENT_BY_ROW);
                $ts = $getServerTokenList;
                //

		
		if (empty($ts))
		{
			throw new OAuthException2('No such consumer key ('.$consumer_key.') and token ('.$token.') combination for user "'.$user_id.'"');
		}
		return $ts;
	}


	/**

	 * Delete a token we obtained from a server.

	 * 

	 * @param string consumer_key

	 * @param string token

	 * @param int user_id

	 * @param boolean user_is_admin

	 */
	public function deleteServerToken ( $consumer_key, $token, $user_id, $user_is_admin = false )
	{
		
                //

                $sql = "BEGIN SP_DELETE_SERVER_TOKEN(:P_CONSUMER_KEY, :P_USER_ID,:P_TOKEN, :P_USER_IS_ADMIN, :P_RESULT); END;";

                // parse sql

                $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

                // Bind In and Out Variables

                oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $consumer_key, 255);
                oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 40);
                oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
                oci_bind_by_name($stmt, ':P_USER_IS_ADMIN', $user_is_admin, 40);
                oci_bind_by_name($stmt, ':P_RESULT', $result, 20);                

                //Execute the statement

                oci_execute($stmt);
                //


        }


	/**

	 * Set the ttl of a server access token.  This is done when the

	 * server receives a valid request with a xoauth_token_ttl parameter in it.

	 * 

	 * @param string consumer_key

	 * @param string token

	 * @param int token_ttl

	 */
	public function setServerTokenTtl ( $consumer_key, $token, $token_ttl, $server_uri = NULL )
	{
		if ($token_ttl <= 0)
		{
			// Immediate delete when the token is past its ttl

			$this->deleteServerToken($consumer_key, $token, 0, true);
		}
		else if ( $server_uri ) 
		{
			// TODO

			throw new OAuthException2('server_uri not implemented in Oracle yet, sorry');	
		}
		else
		{
			// Set maximum time to live for this token


			//

			$sql = "BEGIN SP_SET_SERVER_TOKEN_TTL(:P_TOKEN_TTL, :P_CONSUMER_KEY, :P_TOKEN, :P_RESULT); END;";
			
			// parse sql

			$stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');
			
			// Bind In and Out Variables

			oci_bind_by_name($stmt, ':P_TOKEN_TTL', $token_ttl, 40);
			oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $consumer_key, 255);
			oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
			oci_bind_by_name($stmt, ':P_RESULT', $result, 20);                         
			
			//Execute the statement

			oci_execute($stmt);
//                    

		}
	}


	/**

	 * Get a list of all consumers from the consumer registry.

	 * The consumer keys belong to the user or are public (user id is null)

	 * 

	 * @param string q	query term

	 * @param int user_id

	 * @return array

	 */	
	public function listServers ( $q = '', $user_id )
	{
		$q    = trim(str_replace('%', '', $q));
		$args = array();

		
                //

                $sql = "BEGIN SP_LIST_SERVERS(:P_Q, :P_USER_ID, :P_ROWS, :P_RESULT); END;";

                // parse sql

                $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

                // Bind In and Out Variables

                oci_bind_by_name($stmt, ':P_Q', $q, 255);
                oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 40);
                oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

                //Bind the ref cursor

                $p_row = oci_new_cursor($this->conn);
                oci_bind_by_name($stmt, ':P_ROWS', $p_row, -1, OCI_B_CURSOR);

                //Execute the statement

                oci_execute($stmt);

                // treat the ref cursor as a statement resource

                oci_execute($p_row, OCI_DEFAULT);
                oci_fetch_all($p_row, $listServersList, null, null, OCI_FETCHSTATEMENT_BY_ROW);
                $servers = $listServersList;
                //


		return $servers;
	}


	/**

	 * Register or update a server for our site (we will be the consumer)

	 * 

	 * (This is the registry at the consumers, registering servers ;-) )

	 * 

	 * @param array server

	 * @param int user_id	user registering this server

	 * @param boolean user_is_admin

	 * @exception OAuthException2 when fields are missing or on duplicate consumer_key

	 * @return consumer_key

	 */
        public function updateServer ( $server, $user_id, $user_is_admin = false ) {
            foreach (array('consumer_key', 'server_uri') as $f) {
                if (empty($server[$f])) {
                    throw new OAuthException2('The field "'.$f.'" must be set and non empty');
                }
            }
            $parts = parse_url($server['server_uri']);
            $host  = (isset($parts['host']) ? $parts['host'] : 'localhost');
            $path  = (isset($parts['path']) ? $parts['path'] : '/');

            if (isset($server['signature_methods'])) {
                if (is_array($server['signature_methods'])) {
                    $server['signature_methods'] = strtoupper(implode(',', $server['signature_methods']));
                }
            }
            else {
                $server['signature_methods'] = '';
            }
            // When the user is an admin, then the user can update the user_id of this record

            if ($user_is_admin && array_key_exists('user_id', $server)) {
                $flag=1;
            }
            if($flag) {
                if (is_null($server['user_id'])) {
                    $ocr_usa_id_ref= NULL;
                }
                else {
                    $ocr_usa_id_ref = $server['user_id'];
                }
            }
            else {
                $flag=0;
                $ocr_usa_id_ref=$user_id;
            }
            //sp

            $sql = "BEGIN SP_UPDATE_SERVER(:P_CONSUMER_KEY, :P_USER_ID, :P_OCR_ID, :P_USER_IS_ADMIN,

                 :P_OCR_CONSUMER_SECRET, :P_OCR_SERVER_URI, :P_OCR_SERVER_URI_HOST, :P_OCR_SERVER_URI_PATH,

                 :P_OCR_REQUEST_TOKEN_URI, :P_OCR_AUTHORIZE_URI, :P_OCR_ACCESS_TOKEN_URI, :P_OCR_SIGNATURE_METHODS,

                 :P_OCR_USA_ID_REF, :P_UPDATE_P_OCR_USA_ID_REF_FLAG, :P_RESULT); END;";

            // parse sql

            $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');
            $server['request_token_uri'] = isset($server['request_token_uri']) ? $server['request_token_uri'] : '';
            $server['authorize_uri'] = isset($server['authorize_uri'])     ? $server['authorize_uri']     : '';
            $server['access_token_uri'] = isset($server['access_token_uri'])  ? $server['access_token_uri']  : '';
            // Bind In and Out Variables

            oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $server['consumer_key'], 255);
            oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 40);
            oci_bind_by_name($stmt, ':P_OCR_ID', $server['id'], 40);
            oci_bind_by_name($stmt, ':P_USER_IS_ADMIN', $user_is_admin, 40);
            oci_bind_by_name($stmt, ':P_OCR_CONSUMER_SECRET', $server['consumer_secret'], 255);
            oci_bind_by_name($stmt, ':P_OCR_SERVER_URI', $server['server_uri'], 255);
            oci_bind_by_name($stmt, ':P_OCR_SERVER_URI_HOST', strtolower($host), 255);
            oci_bind_by_name($stmt, ':P_OCR_SERVER_URI_PATH', $path, 255);
            oci_bind_by_name($stmt, ':P_OCR_REQUEST_TOKEN_URI', $server['request_token_uri'], 255);
            oci_bind_by_name($stmt, ':P_OCR_AUTHORIZE_URI', $server['authorize_uri'], 255);
            oci_bind_by_name($stmt, ':P_OCR_ACCESS_TOKEN_URI', $server['access_token_uri'], 255);
            oci_bind_by_name($stmt, ':P_OCR_SIGNATURE_METHODS', $server['signature_methods'], 255);
            oci_bind_by_name($stmt, ':P_OCR_USA_ID_REF', $ocr_usa_id_ref, 40);
            oci_bind_by_name($stmt, ':P_UPDATE_P_OCR_USA_ID_REF_FLAG', $flag, 40);
            oci_bind_by_name($stmt, ':P_RESULT', $result, 20);
            
            //Execute the statement

            oci_execute($stmt);

            return $server['consumer_key'];
        }

	/**

	 * Insert/update a new consumer with this server (we will be the server)

	 * When this is a new consumer, then also generate the consumer key and secret.

	 * Never updates the consumer key and secret.

	 * When the id is set, then the key and secret must correspond to the entry

	 * being updated.

	 * 

	 * (This is the registry at the server, registering consumers ;-) )

	 * 

	 * @param array consumer

	 * @param int user_id	user registering this consumer

	 * @param boolean user_is_admin

	 * @return string consumer key

	 */
	public function updateConsumer ( $consumer, $user_id, $user_is_admin = false ) {
            $consumer_key = $this->generateKey(true);
            $consumer_secret = $this->generateKey();
			
 $consumer['callback_uri'] = isset($consumer['callback_uri'])? $consumer['callback_uri']: '';
            $consumer['application_uri'] = isset($consumer['application_uri'])? $consumer['application_uri']: '';
            $consumer['application_title'] = isset($consumer['application_title'])? $consumer['application_title']: '';
            $consumer['application_descr'] = isset($consumer['application_descr'])? $consumer['application_descr']: '';
            $consumer['application_notes'] = isset($consumer['application_notes'])? $consumer['application_notes']: '';
            $consumer['application_type'] = isset($consumer['application_type'])? $consumer['application_type']: '';
            $consumer['application_commercial'] = isset($consumer['application_commercial'])?$consumer['application_commercial']:0;
			
            //sp

            $sql = "BEGIN SP_UPDATE_CONSUMER(:P_OSR_USA_ID_REF, :P_OSR_CONSUMER_KEY, :P_OSR_CONSUMER_SECRET, :P_OSR_REQUESTER_NAME, :P_OSR_REQUESTER_EMAIL, :P_OSR_CALLBACK_URI, :P_OSR_APPLICATION_URI, :P_OSR_APPLICATION_TITLE  , :P_OSR_APPLICATION_DESCR, :P_OSR_APPLICATION_NOTES, :P_OSR_APPLICATION_TYPE, :P_OSR_APPLICATION_COMMERCIAL, :P_RESULT); END;";

            // parse sql

            $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');
			
           
            // Bind In and Out Variables

            oci_bind_by_name($stmt, ':P_OSR_USA_ID_REF', $user_id, 40);
            oci_bind_by_name($stmt, ':P_OSR_CONSUMER_KEY', $consumer_key, 255);
            oci_bind_by_name($stmt, ':P_OSR_CONSUMER_SECRET', $consumer_secret, 255);
            oci_bind_by_name($stmt, ':P_OSR_REQUESTER_NAME', $consumer['requester_name'], 255);
            oci_bind_by_name($stmt, ':P_OSR_REQUESTER_EMAIL', $consumer['requester_email'], 255);
            oci_bind_by_name($stmt, ':P_OSR_CALLBACK_URI', $consumer['callback_uri'], 255);
            oci_bind_by_name($stmt, ':P_OSR_APPLICATION_URI', $consumer['application_uri'], 255);
            oci_bind_by_name($stmt, ':P_OSR_APPLICATION_TITLE', $consumer['application_title'], 255);
            oci_bind_by_name($stmt, ':P_OSR_APPLICATION_DESCR', $consumer['application_descr'], 255);
            oci_bind_by_name($stmt, ':P_OSR_APPLICATION_NOTES', $consumer['application_notes'], 255);
            oci_bind_by_name($stmt, ':P_OSR_APPLICATION_TYPE', $consumer['application_type'], 255);
            oci_bind_by_name($stmt, ':P_OSR_APPLICATION_COMMERCIAL', $consumer['application_commercial'], 40);
            oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

            //Execute the statement

            oci_execute($stmt);
			echo $result;
            return $consumer_key;
        }



	/**

	 * Delete a consumer key.  This removes access to our site for all applications using this key.

	 * 

	 * @param string consumer_key

	 * @param int user_id	user registering this server

	 * @param boolean user_is_admin

	 */
	public function deleteConsumer ( $consumer_key, $user_id, $user_is_admin = false )
	{
		
                //

                $sql = "BEGIN SP_DELETE_CONSUMER(:P_CONSUMER_KEY, :P_USER_ID, :P_USER_IS_ADMIN, :P_RESULT); END;";

                // parse sql

                $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

                // Bind In and Out Variables

                oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $consumer_key, 255);
                oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 40);
                oci_bind_by_name($stmt, ':P_USER_IS_ADMIN', $user_is_admin, 40);
                oci_bind_by_name($stmt, ':P_RESULT', $result, 20);               

                //Execute the statement

                oci_execute($stmt);
                //

        }
	
	
	
	/**

	 * Fetch a consumer of this server, by consumer_key.

	 * 

	 * @param string consumer_key

	 * @param int user_id

	 * @param boolean user_is_admin (optional)

	 * @exception OAuthException2 when consumer not found

	 * @return array

	 */
	public function getConsumer ( $consumer_key, $user_id, $user_is_admin = false ) {
           
            $sql = "BEGIN SP_GET_CONSUMER(:P_CONSUMER_KEY, :P_ROWS, :P_RESULT); END;";

            // parse sql

            $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

            // Bind In and Out Variables

            oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $consumer_key, 255);
            oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

            //Bind the ref cursor

            $p_row = oci_new_cursor($this->conn);
            oci_bind_by_name($stmt, ':P_ROWS', $p_row, -1, OCI_B_CURSOR);

            //Execute the statement

            oci_execute($stmt);

            // treat the ref cursor as a statement resource

            oci_execute($p_row, OCI_DEFAULT);
            oci_fetch_all($p_row, $getConsumerList, null, null, OCI_FETCHSTATEMENT_BY_ROW);

            $consumer = $getConsumerList;
           
		    if (!is_array($consumer)) {
                throw new OAuthException2('No consumer with consumer_key "'.$consumer_key.'"');
            }

            $c = array();
            foreach ($consumer as $key => $value) {
                $c[substr($key, 4)] = $value;
            }
            $c['user_id'] = $c['usa_id_ref'];

            if (!$user_is_admin && !empty($c['user_id']) && $c['user_id'] != $user_id) {
                throw new OAuthException2('No access to the consumer information for consumer_key "'.$consumer_key.'"');
            }
            return $c;
        }


	/**

	 * Fetch the static consumer key for this provider.  The user for the static consumer 

	 * key is NULL (no user, shared key).  If the key did not exist then the key is created.

	 * 

	 * @return string

	 */
	public function getConsumerStatic ()
	{
		
		 //

		$sql = "BEGIN SP_GET_CONSUMER_STATIC_SELECT(:P_OSR_CONSUMER_KEY, :P_RESULT); END;";

		// parse sql

		$stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

		// Bind In and Out Variables

		oci_bind_by_name($stmt, ':P_OSR_CONSUMER_KEY', $consumer, 255);
		oci_bind_by_name($stmt, ':P_RESULT', $result, 20);               

		//Execute the statement

		oci_execute($stmt);

		if (empty($consumer))
		{
			$consumer_key = 'sc-'.$this->generateKey(true);
			
			$sql = "BEGIN SP_CONSUMER_STATIC_SAVE(:P_OSR_CONSUMER_KEY, :P_RESULT); END;";

			// parse sql

			$stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

			// Bind In and Out Variables

			oci_bind_by_name($stmt, ':P_OSR_CONSUMER_KEY', $consumer_key, 255);
			oci_bind_by_name($stmt, ':P_RESULT', $result, 20);               

			//Execute the statement

			oci_execute($stmt);
			
			
			// Just make sure that if the consumer key is truncated that we get the truncated string

			$consumer = $consumer_key;
		}
		return $consumer;
	}


	/**

	 * Add an unautorized request token to our server.

	 * 

	 * @param string consumer_key

	 * @param array options		(eg. token_ttl)

	 * @return array (token, token_secret)

	 */
	public function addConsumerRequestToken ( $consumer_key, $options = array() )
	{
		$token  = $this->generateKey(true);
		$secret = !isset($options['secret']) ? $this->generateKey() : $options['secret'];
		 

		if (isset($options['token_ttl']) && is_numeric($options['token_ttl']))
		{
			$ttl = intval($options['token_ttl']);
		}
		else
		{
			$ttl = $this->max_request_token_ttl;
		}

		if (!isset($options['oauth_callback'])) {
	 		// 1.0a Compatibility : store callback url associated with request token

			$options['oauth_callback']='oob';
 		}
		$options_oauth_callback =$options['oauth_callback'];
		$sql = "BEGIN SP_ADD_CONSUMER_REQUEST_TOKEN(:P_TOKEN_TTL, :P_CONSUMER_KEY, :P_TOKEN, :P_TOKEN_SECRET, :P_CALLBACK_URL, :P_RESULT); END;";

			// parse sql

		$stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');
 
		// Bind In and Out Variables

		oci_bind_by_name($stmt, ':P_TOKEN_TTL', $ttl, 20);
		oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $consumer_key, 255);
		oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
		oci_bind_by_name($stmt, ':P_TOKEN_SECRET', $secret, 255);
		oci_bind_by_name($stmt, ':P_CALLBACK_URL', $options_oauth_callback, 255);
		oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

		//Execute the statement

		oci_execute($stmt);
		

		$returnArray= array('token'=>$token, 'token_secret'=>$secret, 'token_ttl'=>$ttl);
		return $returnArray;
	}
	
	
	/**

	 * Fetch the consumer request token, by request token.

	 * 

	 * @param string token

	 * @return array  token and consumer details

	 */
	public function getConsumerRequestToken ( $token )
	{
		 
		$sql = "BEGIN SP_GET_CONSUMER_REQUEST_TOKEN(:P_TOKEN, :P_ROWS, :P_RESULT); END;";

            // parse sql

            $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

            // Bind In and Out Variables

            oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
            oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

            //Bind the ref cursor

            $p_row = oci_new_cursor($this->conn);
            oci_bind_by_name($stmt, ':P_ROWS', $p_row, -1, OCI_B_CURSOR);

            //Execute the statement

            oci_execute($stmt);

            // treat the ref cursor as a statement resource

            oci_execute($p_row, OCI_DEFAULT);
			  
            oci_fetch_all($p_row, $rs, null, null, OCI_FETCHSTATEMENT_BY_ROW);
 
		return $rs[0];
	}
	

	/**

	 * Delete a consumer token.  The token must be a request or authorized token.

	 * 

	 * @param string token

	 */
	public function deleteConsumerRequestToken ( $token )
	{
		 
		$sql = "BEGIN SP_DEL_CONSUMER_REQUEST_TOKEN(:P_TOKEN, :P_RESULT); END;";

			// parse sql

		$stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

		// Bind In and Out Variables

		oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
		oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

		//Execute the statement

		oci_execute($stmt);
	}
	

	/**

	 * Upgrade a request token to be an authorized request token.

	 * 

	 * @param string token

	 * @param int	 user_id  user authorizing the token

	 * @param string referrer_host used to set the referrer host for this token, for user feedback

	 */
	public function authorizeConsumerRequestToken ( $token, $user_id, $referrer_host = '' )
	{
 		// 1.0a Compatibility : create a token verifier

 		$verifier = substr(md5(rand()),0,10);
		
		$sql = "BEGIN SP_AUTH_CONSUMER_REQ_TOKEN(:P_USER_ID, :P_REFERRER_HOST, :P_VERIFIER, :P_TOKEN, :P_RESULT); END;";

			// parse sql

		$stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

		// Bind In and Out Variables

		oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 255);
		oci_bind_by_name($stmt, ':P_REFERRER_HOST', $referrer_host, 255);
		oci_bind_by_name($stmt, ':P_VERIFIER', $verifier, 255);
		oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
		oci_bind_by_name($stmt, ':P_RESULT', $result, 20);


		//Execute the statement

		oci_execute($stmt);

		return $verifier;
	}


	/**

	 * Count the consumer access tokens for the given consumer.

	 * 

	 * @param string consumer_key

	 * @return int

	 */
	public function countConsumerAccessTokens ( $consumer_key )
	{
		/*$count = $this->query_one('

					SELECT COUNT(ost_id)

					FROM oauth_server_token

							JOIN oauth_server_registry

							ON ost_osr_id_ref = osr_id

					WHERE ost_token_type   = \'access\'

					  AND osr_consumer_key = \'%s\'

					  AND ost_token_ttl    >= NOW()

					', $consumer_key);

		*/
		$sql = "BEGIN SP_COUNT_CONSUMER_ACCESS_TOKEN(:P_CONSUMER_KEY, :P_COUNT, :P_RESULT); END;";

			// parse sql

		$stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

		// Bind In and Out Variables

		oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $consumer_key, 255);
		oci_bind_by_name($stmt, ':P_COUNT', $count, 20);
		oci_bind_by_name($stmt, ':P_RESULT', $result, 20);


		//Execute the statement

		oci_execute($stmt);

		return $count;
	}


	/**

	 * Exchange an authorized request token for new access token.

	 * 

	 * @param string token

	 * @param array options		options for the token, token_ttl

	 * @exception OAuthException2 when token could not be exchanged

	 * @return array (token, token_secret)

	 */
	public function exchangeConsumerRequestForAccessToken ( $token, $options = array() )
	{
		$new_token  = $this->generateKey(true);
		$new_secret = $this->generateKey();
		
		$sql = "BEGIN SP_EXCH_CONS_REQ_FOR_ACC_TOKEN(:P_TOKEN_TTL, :P_NEW_TOKEN, :P_TOKEN, :P_TOKEN_SECRET, :P_VERIFIER, :P_OUT_TOKEN_TTL, :P_RESULT); END;";

			// parse sql

		$stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

		// Bind In and Out Variables

		oci_bind_by_name($stmt, ':P_TOKEN_TTL', $options['token_ttl'], 255);
		oci_bind_by_name($stmt, ':P_NEW_TOKEN', $new_token, 255);
		oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
		oci_bind_by_name($stmt, ':P_TOKEN_SECRET', $new_secret, 255);
		oci_bind_by_name($stmt, ':P_VERIFIER', $options['verifier'], 255);
		oci_bind_by_name($stmt, ':P_OUT_TOKEN_TTL', $ttl, 255);
		oci_bind_by_name($stmt, ':P_RESULT', $result, 20);


		//Execute the statement

		oci_execute($stmt);

		$ret = array('token' => $new_token, 'token_secret' => $new_secret);
		if (is_numeric($ttl))
		{
			$ret['token_ttl'] = intval($ttl);
		}
		return $ret;
	}


	/**

	 * Fetch the consumer access token, by access token.

	 * 

	 * @param string token

	 * @param int user_id

	 * @exception OAuthException2 when token is not found

	 * @return array  token and consumer details

	 */
	public function getConsumerAccessToken ( $token, $user_id )
	{
		 
		$sql = "BEGIN SP_GET_CONSUMER_ACCESS_TOKEN(:P_USER_ID, :P_TOKEN, :P_ROWS :P_RESULT); END;";

            // parse sql

            $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

            // Bind In and Out Variables

            oci_bind_by_name($stmt, ':P_USER_ID',$user_id, 255);
            oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
			oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

            //Bind the ref cursor

            $p_row = oci_new_cursor($this->conn);
            oci_bind_by_name($stmt, ':P_ROWS', $p_row, -1, OCI_B_CURSOR);

            //Execute the statement

            oci_execute($stmt);

            // treat the ref cursor as a statement resource

            oci_execute($p_row, OCI_DEFAULT);
            oci_fetch_all($p_row, $rs, null, null, OCI_FETCHSTATEMENT_BY_ROW);
		if (empty($rs))
		{
			throw new OAuthException2('No server_token "'.$token.'" for user "'.$user_id.'"');
		}
		return $rs;
	}


	/**

	 * Delete a consumer access token.

	 * 

	 * @param string token

	 * @param int user_id

	 * @param boolean user_is_admin

	 */
	public function deleteConsumerAccessToken ( $token, $user_id, $user_is_admin = false )
	{
		/*if ($user_is_admin)

		{

			$this->query('

						DELETE FROM oauth_server_token

						WHERE ost_token 	 = \'%s\'

						  AND ost_token_type = \'access\'

						', $token);

		}

		else

		{

			$this->query('

						DELETE FROM oauth_server_token

						WHERE ost_token 	 = \'%s\'

						  AND ost_token_type = \'access\'

						  AND ost_usa_id_ref = %d

						', $token, $user_id);

		}*/
		$sql = "BEGIN SP_DEL_CONSUMER_ACCESS_TOKEN(:P_USER_ID, :P_TOKEN, :P_USER_IS_ADMIN, :P_RESULT); END;";

			// parse sql

		$stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

		// Bind In and Out Variables

		oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 255);
		oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
		oci_bind_by_name($stmt, ':P_USER_IS_ADMIN', $user_is_admin, 20);
		oci_bind_by_name($stmt, ':P_RESULT', $result, 20);


		//Execute the statement

		oci_execute($stmt);
	}


	/**

	 * Set the ttl of a consumer access token.  This is done when the

	 * server receives a valid request with a xoauth_token_ttl parameter in it.

	 * 

	 * @param string token

	 * @param int ttl

	 */
	public function setConsumerAccessTokenTtl ( $token, $token_ttl )
	{
		if ($token_ttl <= 0)
		{
			// Immediate delete when the token is past its ttl

			$this->deleteConsumerAccessToken($token, 0, true);
		}
		else
		{
			// Set maximum time to live for this token

			 
			
			$sql = "BEGIN SP_SET_CONSUMER_ACC_TOKEN_TTL(:P_TOKEN, :P_TOKEN_TTL, :P_RESULT); END;";

			// parse sql

			$stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

			// Bind In and Out Variables

			oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
			oci_bind_by_name($stmt, ':P_TOKEN_TTL', $token_ttl, 20);
			oci_bind_by_name($stmt, ':P_RESULT', $result, 20);


			//Execute the statement

			oci_execute($stmt);
		}
	}


	/**

	 * Fetch a list of all consumer keys, secrets etc.

	 * Returns the public (user_id is null) and the keys owned by the user

	 * 

	 * @param int user_id

	 * @return array

	 */
	public function listConsumers ( $user_id )
	{

		$sql = "BEGIN SP_LIST_CONSUMERS(:P_USER_ID, :P_ROWS, :P_RESULT); END;";

		// parse sql

		$stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

		// Bind In and Out Variables

		oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 255);
		oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

		//Bind the ref cursor

		$p_row = oci_new_cursor($this->conn);
		oci_bind_by_name($stmt, ':P_ROWS', $p_row, -1, OCI_B_CURSOR);

		//Execute the statement

		oci_execute($stmt);

		// treat the ref cursor as a statement resource

		oci_execute($p_row, OCI_DEFAULT);
		oci_fetch_all($p_row, $rs, null, null, OCI_FETCHSTATEMENT_BY_ROW);

		return $rs;
	}

	/**

	 * List of all registered applications. Data returned has not sensitive 

	 * information and therefore is suitable for public displaying.

	 * 

	 * @param int $begin

	 * @param int $total

	 * @return array

	 */
	public function listConsumerApplications($begin = 0, $total = 25) 
	{
		// TODO

		return array();
	}

	/**

	 * Fetch a list of all consumer tokens accessing the account of the given user.

	 * 

	 * @param int user_id

	 * @return array

	 */
	public function listConsumerTokens ( $user_id )
	{
	 
		$sql = "BEGIN SP_LIST_CONSUMER_TOKENS(:P_USER_ID, :P_ROWS, :P_RESULT); END;";

		// parse sql

		$stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

		// Bind In and Out Variables

		oci_bind_by_name($stmt, ':P_USER_ID', $user_id, 255);
		oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

		//Bind the ref cursor

		$p_row = oci_new_cursor($this->conn);
		oci_bind_by_name($stmt, ':P_ROWS', $p_row, -1, OCI_B_CURSOR);

		//Execute the statement

		oci_execute($stmt);

		// treat the ref cursor as a statement resource

		oci_execute($p_row, OCI_DEFAULT);
		oci_fetch_all($p_row, $rs, null, null, OCI_FETCHSTATEMENT_BY_ROW);

		return $rs;
	}


	/**

	 * Check an nonce/timestamp combination.  Clears any nonce combinations

	 * that are older than the one received.

	 * 

	 * @param string	consumer_key

	 * @param string 	token

	 * @param int		timestamp

	 * @param string 	nonce

	 * @exception OAuthException2	thrown when the timestamp is not in sequence or nonce is not unique

	 */
	public function checkServerNonce ( $consumer_key, $token, $timestamp, $nonce )
	{
		
		 $sql = "BEGIN SP_CHECK_SERVER_NONCE(:P_CONSUMER_KEY, :P_TOKEN, :P_TIMESTAMP, :P_MAX_TIMESTAMP_SKEW, :P_NONCE, :P_RESULT); END;";

			// parse sql

		$stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

		// Bind In and Out Variables

		oci_bind_by_name($stmt, ':P_CONSUMER_KEY', $consumer_key, 255);
		oci_bind_by_name($stmt, ':P_TOKEN', $token, 255);
		oci_bind_by_name($stmt, ':P_TIMESTAMP', $timestamp, 255);
		oci_bind_by_name($stmt, ':P_MAX_TIMESTAMP_SKEW', $this->max_timestamp_skew, 20);
		oci_bind_by_name($stmt, ':P_NONCE', $nonce, 255);
		oci_bind_by_name($stmt, ':P_RESULT', $result, 20);


		//Execute the statement

		oci_execute($stmt);
		
	}


	/**

	 * Add an entry to the log table

	 * 

	 * @param array keys (osr_consumer_key, ost_token, ocr_consumer_key, oct_token)

	 * @param string received

	 * @param string sent

	 * @param string base_string

	 * @param string notes

	 * @param int (optional) user_id

	 */
	public function addLog ( $keys, $received, $sent, $base_string, $notes, $user_id = null )
	{
		$args = array();
		$ps   = array();
		foreach ($keys as $key => $value)
		{
			$args[] = $value;
			$ps[]   = "olg_$key = '%s'";
		}

		if (!empty($_SERVER['REMOTE_ADDR']))
		{
			$remote_ip = $_SERVER['REMOTE_ADDR'];
		}	
		else if (!empty($_SERVER['REMOTE_IP']))
		{
			$remote_ip = $_SERVER['REMOTE_IP'];
		}
		else
		{
			$remote_ip = '0.0.0.0';
		}

		// Build the SQL

		$olg_received = $this->makeUTF8($received);
		$olg_sent = $this->makeUTF8($sent);
		$olg_base_string = $base_string;
		$olg_notes = $this->makeUTF8($notes);
		$olg_usa_id_ref = $user_id;
		$olg_remote_ip = $remote_ip;

		 

		$sql = "BEGIN SP_ADD_LOG(:P_RECEIVED, :P_SENT, :P_BASE_STRING, :P_NOTES, :P_USA_ID_REF, :P_REMOTE_IP, :P_RESULT); END;";

			// parse sql

		$stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

		// Bind In and Out Variables

		oci_bind_by_name($stmt, ':P_RECEIVED', $olg_received, 255);
		oci_bind_by_name($stmt, ':P_SENT', $olg_sent, 255);
		oci_bind_by_name($stmt, ':P_BASE_STRING', $olg_base_string, 255);
		oci_bind_by_name($stmt, ':P_NOTES', $olg_notes, 255);
		oci_bind_by_name($stmt, ':P_USA_ID_REF', $olg_usa_id_ref, 255);
		oci_bind_by_name($stmt, ':P_REMOTE_IP', $olg_remote_ip, 255);
		oci_bind_by_name($stmt, ':P_RESULT', $result, 20);


		//Execute the statement

		oci_execute($stmt);
	}
	
	
	/**

	 * Get a page of entries from the log.  Returns the last 100 records

	 * matching the options given.

	 * 

	 * @param array options

	 * @param int user_id	current user

	 * @return array log records

	 */
	public function listLog ( $options, $user_id )
	{
		
		 if (empty($options))
		{
			$optionsFlag=NULL;
			
		}
		else
		{
			$optionsFlag=1;
			
		}
	
		$sql = "BEGIN SP_LIST_LOG(:P_OPTION_FLAG, :P_USA_ID, :P_OSR_CONSUMER_KEY, :P_OCR_CONSUMER_KEY, :P_OST_TOKEN, :P_OCT_TOKEN, :P_ROWS, :P_RESULT); END;";

            // parse sql

            $stmt = oci_parse($this->conn, $sql) or die ('Can not parse query');

            // Bind In and Out Variables

            oci_bind_by_name($stmt, ':P_OPTION_FLAG', $optionsFlag, 255);
            oci_bind_by_name($stmt, ':P_USA_ID', $user_id, 40);
			oci_bind_by_name($stmt, ':P_OSR_CONSUMER_KEY', $options['osr_consumer_key'], 255);
            oci_bind_by_name($stmt, ':P_OCR_CONSUMER_KEY', $options['ocr_consumer_key'], 255);
			oci_bind_by_name($stmt, ':P_OST_TOKEN', $options['ost_token'], 255);
            oci_bind_by_name($stmt, ':P_OCT_TOKEN', $options['oct_token'], 255);
            oci_bind_by_name($stmt, ':P_RESULT', $result, 20);

            //Bind the ref cursor

            $p_row = oci_new_cursor($this->conn);
            oci_bind_by_name($stmt, ':P_ROWS', $p_row, -1, OCI_B_CURSOR);

            //Execute the statement

            oci_execute($stmt);

            // treat the ref cursor as a statement resource

            oci_execute($p_row, OCI_DEFAULT);
            oci_fetch_all($p_row, $rs, null, null, OCI_FETCHSTATEMENT_BY_ROW);

		return $rs;
	}

	/**

	 * Initialise the database

	 */
	public function install ()
	{
		require_once dirname(__FILE__) . '/oracle/install.php';
	}
}


/* vi:set ts=4 sts=4 sw=4 binary noeol: */

?>