source: ccr/trunk/p/C0CEWD.m@ 1586

Last change on this file since 1586 was 1586, checked in by Sam Habiel, 12 years ago

Changed license to AGPL. Some clean-up for XINDEX

  • Property svn:mergeinfo set to (toggle deleted branches)
    /ccr/branches/ohum/o-old/p/C0CEWD.m1290
    /ccr/branches/ohum/p/C0CEWD.m1291-1543
    /ccr/branches/ohum/p/p/C0CEWD.m1287-1289
File size: 2.3 KB
Line 
1C0CEWD ; CCDCCR/GPL - CCR EWD utilities; 1/6/11
2 ;;1.2;CCD/CCR GENERATION UTILITIES;;Oct 30, 2012;Build 50
3 ;
4 ;Copyright 2011 George Lilly.
5 ;
6 ; This program is free software: you can redistribute it and/or modify
7 ; it under the terms of the GNU Affero General Public License as
8 ; published by the Free Software Foundation, either version 3 of the
9 ; License, or (at your option) any later version.
10 ;
11 ; This program is distributed in the hope that it will be useful,
12 ; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ; GNU Affero General Public License for more details.
15 ;
16 ; You should have received a copy of the GNU Affero General Public License
17 ; along with this program. If not, see <http://www.gnu.org/licenses/>.
18 ;
19 Q
20 ;
21TOKEN() ; EXTRINSIC WHICH RETURNS A NEW RANDOM TOKEN
22 Q $$UUID^C0CUTIL ; USE THE UUID FUNCTION IN THE CCR PACKAGE
23 ;
24STORE(ZARY) ; STORE AN ARRAY OF VALUES INDEXED BY A NEW TOKEN
25 ; IN ^TMP("C0E","TOKEN") FOR LATER RETRIEVAL FROM INSIDE AN EWD SESSION
26 ; RETURNS THE TOKEN. ZARY IS PASSED BY NAME
27 N ZT
28 S ZT=$$TOKEN ; GET A NEW TOKEN
29 M ^TMP("C0E","TOKEN",ZT)=@ZARY ;
30 Q ZT
31 ;
32GET(C0ERTN,C0ETOKEN,NOKILL) ; RETRIEVE A STORED ARRAY INDEXED BY ZTOKEN
33 ; KILL THE ARRAY AFTER RETRIEVAL UNLESS NOKILL=1
34 ; C0ERTN IS PASSED BY NAME
35 I '$D(^TMP("C0E","TOKEN",C0ETOKEN)) D Q ; DOESN'T EXIST
36 . S @C0ERTN="" ; PASS BACK NULL
37 M @C0ERTN=^TMP("C0E","TOKEN",C0ETOKEN) ; RETRIEVE
38 I $G(NOKILL)'=1 K ^TMP("C0E","TOKEN",C0ETOKEN) ; DELETE
39 Q
40 ;
41URLTOKEN(sessid) ; EXTRINSIC WHICH RETRIEVES THE TOKEN PASSED ON THE URL
42 ; IN EWD EXAMPLE: https://example.com/ewd/myApp/index.ewd?token="12345"
43 N token
44 S token=""
45 s token=$$getRequestValue^%zewdAPI("token",sessid)
46 s token=$tr(token,"""") ; strip out quotes
47 Q token
48 ;
49cbTestMethod(prefix,seedValue,lastSeedValue,optionNo,options)
50 ;
51 n maxNo,noFound
52 ;
53 s maxNo=50
54 s noFound=0
55 f s seedValue=$o(^DPT("B",seedValue)) q:seedValue="" q:noFound=maxNo d
56 . s lastSeedValue=seedValue
57 . i prefix'="",$e(seedValue,1,$l(prefix))'=prefix q
58 . s optionNo=optionNo+1
59 . s noFound=noFound+1
60 . s options(optionNo)=seedValue
61 QUIT
62 ;
63set1 ;
64 s ^zewd("comboPlus","methodMap","test")="cbTestMethod^C0PEREW"
65 q
66 ;
67test1(sessid) ;
68 d setSessionValue^%zewdAPI("testing","ZZ",sessid)
69 q 0
70 ;
Note: See TracBrowser for help on using the repository browser.