2012-10-01 21:32:46 -04:00
|
|
|
C0CMAIL3 ; Communications for MIME Documents and MultiMIME ; 3110420 ; rcr/rcr ; 5/10/12 2:51pm
|
2012-10-30 13:11:02 -04:00
|
|
|
;;1.2;CCD/CCR GENERATION UTILITIES;;Oct 30, 2012;Build 50
|
2012-10-01 21:32:46 -04:00
|
|
|
;Copyright 2011 Chris Richardson, Richardson Computer Research
|
|
|
|
; Modified 3110619@2038
|
|
|
|
; rcr@rcresearch.us
|
|
|
|
;
|
2012-10-30 13:11:02 -04:00
|
|
|
; This program is free software: you can redistribute it and/or modify
|
|
|
|
; it under the terms of the GNU Affero General Public License as
|
|
|
|
; published by the Free Software Foundation, either version 3 of the
|
|
|
|
; License, or (at your option) any later version.
|
2012-10-01 21:32:46 -04:00
|
|
|
;
|
2012-10-30 13:11:02 -04:00
|
|
|
; This program is distributed in the hope that it will be useful,
|
|
|
|
; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
; GNU Affero General Public License for more details.
|
2012-10-01 21:32:46 -04:00
|
|
|
;
|
2012-10-30 13:11:02 -04:00
|
|
|
; You should have received a copy of the GNU Affero General Public License
|
|
|
|
; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2012-10-01 21:32:46 -04:00
|
|
|
;
|
|
|
|
; ------------------
|
|
|
|
;Entry Points
|
|
|
|
; DETAIL^C0CMAIL(.C0CDATA,IEN) --> Get details of the Mail Message and Attachments
|
|
|
|
; GETMSG^C0CMAIL(.C0CDATA,.C0CINPUT)
|
|
|
|
; Input:
|
|
|
|
; C0CINPUT = "DUZ;MAILBOX_Name[or IEN for box (comma Separated);MALL
|
|
|
|
; or "*" for all boxes, default is "IN" if missing]"
|
|
|
|
; $P(C0CINPUT,";",3)=MALL, default=NUL means "New only",
|
|
|
|
; "*" for All or 9,999 maximum
|
|
|
|
; MALL?1.n = that number of the n most recent
|
|
|
|
; Internally:
|
|
|
|
; BNAM = Box Name
|
|
|
|
; Output:
|
|
|
|
; C0CDATA
|
|
|
|
; = (BNAM,"NUMBER") = Number of NEW Emails in Basket
|
|
|
|
; (BNAM,"MSG",C0CIEN,"FROM")=Name
|
|
|
|
; (BNAM,"MSG",C0CIEN,"TO",n)=DUZ, or EMAIL Address
|
|
|
|
; (BNAM,"MSG",C0CIEN,"TO NAME",n)=Names or EMAIL Address
|
|
|
|
; (BNAM,"MSG",C0CIEN,"TITLE")=EMAIL Title
|
|
|
|
; (BNAM,"MSG",C0CIEN[for File 3.9])=Number of Attachments
|
|
|
|
; (BNAM,"MSG",C0CIEN,num,"CONT") = Free Text
|
|
|
|
; (BNAM,"MSG",C0CIEN,num,"LINES") = Number of Lines of Text
|
|
|
|
; (BNAM,"MSG",C0CIEN,num,"SIZE") = Size of the Message in Bytes
|
|
|
|
; (BNAM,"MSG",C0CIEN,num,"TXT",LINE#) = Message Data (No Attachment)
|
|
|
|
; (BNAM,"MSG",C0CIEN,"SEG",NUM) = First Line^Last Line
|
|
|
|
; (BNAM,"MSG",C0CIEN,"SEG",NUM,"CONT",type) = Message Details
|
|
|
|
; (BNAM,"MSG",C0CIEN,"SEG",NUM,LINE#) = Message Data
|
|
|
|
;
|
|
|
|
; DO DETAIL^C0CMAIL(.OUTBF,D0) ; For each Email Message and Attachments
|
|
|
|
; Input;
|
|
|
|
; D0 - The IEN for the message in file 3.9, MESSAGE global
|
|
|
|
; Output
|
|
|
|
; OUTBF - The array of your choice to save the expanded and decoded message.
|
|
|
|
;
|
|
|
|
GETMSG(C0CDATA,C0CINPUT) ; Common Entry Point for Mailbox Data
|
|
|
|
K:'$G(C0CDATA("KEEP")) C0CDATA
|
|
|
|
N U
|
|
|
|
S U="^"
|
|
|
|
D:$G(C0CINPUT)
|
|
|
|
. N BF,DUZ,I,INPUT,J,L,LST,MBLST,MALL
|
|
|
|
. S INPUT=C0CINPUT
|
|
|
|
. S DUZ=+INPUT
|
|
|
|
. I $D(^VA(200,DUZ))=0!('$D(^VA(200,DUZ,0))) D ERROR("ER06") Q
|
|
|
|
. ;
|
|
|
|
. D:$D(^XMB(3.7,DUZ,0))#2
|
|
|
|
. . S MBLST=$P(INPUT,";",2)
|
|
|
|
. . S MALL=$P(INPUT,";",3) ; New or All Mail Flag
|
|
|
|
. . S:MALL["*" MALL=99999
|
|
|
|
. . ; Only one of these can be correct
|
|
|
|
. . D
|
|
|
|
. . . ; If nul, make it "IN" only
|
|
|
|
. . . I MBLST="" D QUIT
|
|
|
|
. . . . S MBLST("IN")=0,I=0
|
|
|
|
. . . . D GATHER(DUZ,"IN",.LST)
|
|
|
|
. . . .QUIT
|
|
|
|
. . . ;
|
|
|
|
. . . ; If "*", Get all Mailboxes and look for New Messages
|
|
|
|
. . . I MBLST["*" D QUIT
|
|
|
|
. . . . N NAM,NUM
|
|
|
|
. . . . S NUM=0
|
|
|
|
. . . . F S NUM=$O(^XMB(3.7,DUZ,2,NUM)) Q:'NUM D
|
|
|
|
. . . . . S NAM=$P(^XMB(3.7,DUZ,2,NUM,0),U)
|
|
|
|
. . . . . D GATHER(DUZ,NAM,.LST)
|
|
|
|
. . . . .QUIT
|
|
|
|
. . . .QUIT
|
|
|
|
. . . ;
|
|
|
|
. . . ; If comma separated, look for mailboxes with new messages
|
|
|
|
. . . I $L(MBLST,",")>1 D QUIT
|
|
|
|
. . . . S NAM=""
|
|
|
|
. . . . N TN,V
|
|
|
|
. . . . F TN=1:1:$L(MBLST,",") S V=$P(MBLST,",",TN) D
|
|
|
|
. . . . . I $L(V) D QUIT
|
|
|
|
. . . . . . I V S NAM=$P($G(^XMB(3.7,DUZ,2,V,0)),U)
|
|
|
|
. . . . . . S:NAM="" NAM=V
|
|
|
|
. . . . . . D GATHER(DUZ,NAM,.LST)
|
|
|
|
. . . . . .QUIT
|
|
|
|
. . . . . ;
|
|
|
|
. . . . . D ERROR("ER08")
|
|
|
|
. . . . .QUIT
|
|
|
|
. . . .QUIT
|
|
|
|
. . . ;
|
|
|
|
. . . ; If only 1 mailbox named, go get it
|
|
|
|
. . . I $L(MBLST) D QUIT
|
|
|
|
. . . . I $D(^XMB(3.7,DUZ,2,"B",MBLST)) D GATHER(DUZ,MBLST,.LST) QUIT
|
|
|
|
. . . . ;
|
|
|
|
. . . . D ERROR("ER07")
|
|
|
|
. . .QUIT
|
|
|
|
. . MERGE C0CDATA=LST
|
|
|
|
. .QUIT
|
|
|
|
.QUIT
|
|
|
|
QUIT
|
|
|
|
; ===================
|
|
|
|
GATHER(DUZ,NAM,LST) ; Gather Data about the Baskets and their mail
|
|
|
|
N I,J,K,L
|
|
|
|
S (I,K)=0
|
|
|
|
S J=$O(^XMB(3.7,DUZ,2,"B",NAM,""))
|
|
|
|
F S I=$O(^XMB(3.7,DUZ,2,J,1,I)) Q:'I D
|
|
|
|
. S L=$P(^XMB(3.7,DUZ,2,J,1,I,0),U,3)
|
|
|
|
. D ; :L
|
|
|
|
. . S:L K=K+1,LST(NAM,"MSG",I,"NEW")="" ; Flag NEW emails
|
|
|
|
. . S LST(NAM,"MSG",I)=L
|
|
|
|
. . D GETTYP(I)
|
|
|
|
. .QUIT
|
|
|
|
.QUIT
|
|
|
|
S LST(NAM,"NUMBER")=K
|
|
|
|
QUIT
|
|
|
|
; ===================
|
|
|
|
; D0 is the IEN into the Message Global ^XMB(3.9,D0)
|
|
|
|
; The products of these emails are scanned to identify
|
|
|
|
; the number of documents stored in the MIME package.
|
|
|
|
; The protocol runs like this;
|
|
|
|
; Line 1 is the --separator
|
|
|
|
; Line 2 thru n >Look for Content-[detail type:]Description ; Next CMD
|
|
|
|
; Line n+2 thru t-1 where t does NOT have "Content-"
|
|
|
|
; Line t is Next Section Terminator, or Message Terminator, --separator
|
|
|
|
; Line t+1 should not exist in the data set if Message Terminator
|
|
|
|
; CON = "Content-"
|
|
|
|
; FLG = "--"
|
|
|
|
; SEP = FLG+7 or more characters ; Separator
|
|
|
|
; END = SEP+FLG
|
|
|
|
; SGC = Segment Count
|
|
|
|
; Note: separator is a string of specific characters of
|
|
|
|
; indeterminate length
|
|
|
|
; LST() the transfer array
|
|
|
|
; LST(NAM,"MSG",C0CIEN,"SEG",SGN)=Starting Line^Ending Line
|
|
|
|
; LST(NAM,"MSG",C0CIEN,"SEG",SGN,1:n)=Decoded Message Data
|
|
|
|
;
|
|
|
|
GETTYP(D0) ; Look for the goodies in the Mail
|
|
|
|
N I,J,N,BCN,CON,CNT,D1,END,FLG,SEP,SGC,XX,XXNM
|
|
|
|
S CON="Content-"
|
|
|
|
S FLG="--"
|
|
|
|
S SEP="" ; Start SEP as null, so we can use this to help identify the type
|
|
|
|
S (BCN,CNT,D1,END,SGC)=0
|
|
|
|
S XX=$G(^XMB(3.9,D0,0))
|
|
|
|
S LST(NAM,"MSG",D0,"TITLE")=$P($G(^XMB(3.9,D0,0)),U,1)
|
|
|
|
S LST(NAM,"MSG",D0,"CREATED")=$G(^XMB(3.9,D0,.6))
|
|
|
|
F I=4,2 S XXNM=$P(XX,U,I) Q:$L(XXNM)
|
|
|
|
S LST(NAM,"MSG",D0,"FROM")=$$NAME(XXNM)
|
|
|
|
S LST(NAM,"MSG",D0,"SENT")=$$TIME($P(XX,U,3))
|
|
|
|
; Get the folks the email is sent to.
|
|
|
|
S D1=0
|
|
|
|
F S D1=$O(^XMB(3.9,D0,1,D1)) Q:'D1 D
|
|
|
|
. N T
|
|
|
|
. S T=+$G(^XMB(3.9,D0,1,D1,0))
|
|
|
|
. S:T T=$P($G(^VA(200,+T,0)),"^")
|
|
|
|
. S LST("TO",D1)=T
|
|
|
|
. S T=$G(^XMB(3.9,D0,6,D1,0))
|
|
|
|
. S:T T=$P($G(^VA(200,+T,0)),"^")
|
|
|
|
. S:T="" T="<Unknown>"
|
|
|
|
. S LST("TO NAME",D1)=T
|
|
|
|
.QUIT
|
|
|
|
; Preload first Segment (0) with beginning on Line 1
|
|
|
|
; if not a 64bit
|
|
|
|
S LST(NAM,"MSG",D0,"SEG",0)=1
|
|
|
|
S D1=.9999,SEP="@@"
|
|
|
|
F S D1=$O(^XMB(3.9,D0,2,D1)) Q:'D1 D
|
|
|
|
. ; Clear any control characters (cr/lf/ff) off
|
|
|
|
. S X=$TR($G(^XMB(3.9,D0,2,D1,0)),$C(10,12,13))
|
|
|
|
. ; Enter once to set the SEP to capture the separator
|
|
|
|
. I SEP=FLG&($E(X,1,2)=FLG)&($L(X,FLG)=2)&($L($P(X,FLG,2)>5)) D Q
|
|
|
|
. . S SEP=X,END=X_FLG
|
|
|
|
. . S (CNT,SGC)=1,BCN=0
|
|
|
|
. . S LST(NAM,"MSG",D0,"SEG",SGC)=D1
|
|
|
|
. .QUIT
|
|
|
|
. ;
|
|
|
|
. ; A new separator is set, process original
|
|
|
|
. I X=SEP D QUIT
|
|
|
|
. . S LST(NAM,"MSG",D0,SGC,"SIZE")=BCN+$L(BF)
|
|
|
|
. . S LST(NAM,"MSG",D0,"SEG",SGC)=$G(LST(NAM,"MSG",D0,"SEG",SGC))_"^"_(D1-1)
|
|
|
|
. . S SGC=SGC+1,BCN=0
|
|
|
|
. . S LST(NAM,"MSG",D0,"SEG",SGC)=D1
|
|
|
|
. .QUIT
|
|
|
|
. ;
|
|
|
|
. S BCN=BCN+$L(X)
|
|
|
|
. I X[CON D Q
|
|
|
|
. . S J=$P($P(X,";"),CON,2)
|
|
|
|
. . S LST(NAM,"MSG",D0,"SEG",SGC,"CONT",CNT,$P(J,":"))=$P(J,":",2)
|
|
|
|
. .QUIT
|
|
|
|
. ;
|
|
|
|
. ; S LST(NAM,"MSG",D0,"SEG",D1)=X
|
|
|
|
.QUIT
|
|
|
|
QUIT
|
|
|
|
; ===================
|
|
|
|
NAME(NM) ; Return the name of the Sender
|
|
|
|
N NAME
|
|
|
|
S NAME="<Unknown Sender>"
|
|
|
|
D
|
|
|
|
. ; Look first for a value to use with the NEW PERSON file
|
|
|
|
. ;
|
|
|
|
. I NM=+NM S NAME=$P(^VA(200,NM,0),U,1) Q
|
|
|
|
. ;
|
|
|
|
. I $L(NM) S NAME=NM Q
|
|
|
|
. ;
|
|
|
|
. ; Else, pull the data from the message and display the foreign source
|
|
|
|
. ; of the message.
|
|
|
|
. N T
|
|
|
|
. S VAL=$G(^XMB(3.9,D0,.7))
|
|
|
|
. S:VAL T=$P(^VA(200,VAL,0),U)
|
|
|
|
. I $L($G(T)) S NAME=T Q
|
|
|
|
. ;
|
|
|
|
.QUIT
|
|
|
|
QUIT NAME
|
|
|
|
; ===================
|
|
|
|
TIME(Y) ; The time and date of the sending
|
|
|
|
X ^DD("DD")
|
|
|
|
QUIT Y
|
|
|
|
; ===================
|
|
|
|
; Segments in Message need to be identified and decoded properly
|
|
|
|
; D DETAIL^C0CMAIL(.ARRAY,D0) ; Call One for each message
|
|
|
|
; ARRAY will have the details of this one call
|
|
|
|
;
|
|
|
|
; Inputs;
|
|
|
|
; C0CINPUT - The IEN of the message to expand
|
|
|
|
; Outputs;
|
|
|
|
; C0CDATA - Carrier for the returned structure of the Message
|
|
|
|
; C0CDATA(D0,"SEG")=number of SEGMENTS
|
|
|
|
; C0CDATA(D0,"SEG",0:n)=SEGMENT n details; First;Last;Type
|
|
|
|
; C0CDATA(D0,"SEG",0:n,"CONTENT",type)=Content details
|
|
|
|
; C0CDATA(D0,"SEG",0:n,"MSG",D3)=Content details
|
|
|
|
; C0CDATA(D0,"SEG",0:n,"HTML",D3)=Content details
|
|
|
|
;
|
|
|
|
DETAIL(C0CDATA,C0CINPUT) ; Message Detail Delivery
|
|
|
|
N LST,D0,D1,U
|
|
|
|
S U="^"
|
|
|
|
S D0=+$G(C0CINPUT)
|
|
|
|
I D0 D QUIT
|
|
|
|
. I $D(^XMB(3.9,D0))<10 D ERROR("ER01") QUIT
|
|
|
|
. ;
|
|
|
|
. D GETTYP2(D0)
|
|
|
|
. I $D(LST) M C0CDATA(D0)=LST Q
|
|
|
|
. ;
|
|
|
|
. D ERROR("ER02")
|
|
|
|
.QUIT
|
|
|
|
QUIT
|
|
|
|
; ===================
|
|
|
|
; End note if needed
|
|
|
|
; MSK - Set of characters that do not exist in 64 bit encoding
|
|
|
|
GETTYP2(D0) ; Try to get the types and MSK for the
|
|
|
|
N I,J,K,N,BCN,BF,CON,CNT,D1,END,FLG,MSK,SEP,SGC,U,XX,ZN,XXNM
|
|
|
|
S CON="Content-",U="^"
|
|
|
|
S FLG="--",MSK=" !""#$%&'()*,-.:;<>?@[\]^_`{|}~"
|
|
|
|
S (BF,SEP)="" ; Start SEP as null, so we can use this to help identify the type
|
|
|
|
S (BCN,CNT,D1,END,SGC)=0
|
|
|
|
S XX=$G(^XMB(3.9,D0,0))
|
|
|
|
; S K=$P(^XMB(3.9,D0,2,0),U,3)
|
|
|
|
S LST("TITLE")=$P($G(^XMB(3.9,D0,0)),U,1)
|
|
|
|
S LST("CREATED")=$$TIME($P(XX,U,3))
|
|
|
|
F I=4,2 S XXNM=$P(XX,U,I) Q:$L(XXNM)
|
|
|
|
S LST("FROM")=$$NAME(XXNM)
|
|
|
|
; Get the folks the email is sent to.
|
|
|
|
S D1=0
|
|
|
|
F S D1=$O(^XMB(3.9,D0,1,D1)) Q:'D1 D Q:D1=""
|
|
|
|
. N I,T
|
|
|
|
. S T=$P($G(^XMB(3.9,D0,1,D1,0)),U)
|
|
|
|
. S:T T=$P($G(^VA(200,T,0)),"^")
|
|
|
|
. S LST("TO",+D1)=T
|
|
|
|
. S T=$G(^XMB(3.9,D0,6,+D1,0))
|
|
|
|
. S:T="" T=$P($G(^VA(200,+T,0)),"^")
|
|
|
|
. S:T="" T="<Unknown>"
|
|
|
|
. S LST("TO NAME",D1)=T
|
|
|
|
.QUIT
|
|
|
|
; Get the Header for the message and store as "HDR"
|
|
|
|
S D1=0,SGC=0
|
|
|
|
F I=1:1 S D1=$O(^XMB(3.9,D0,2,D1)) Q:D1="" Q:(D1>.99999) D
|
|
|
|
. S LST("HDR",I)=$G(^XMB(3.9,D0,2,D1,0))
|
|
|
|
.QUIT
|
|
|
|
N BNDRY,STKL,SEG
|
|
|
|
S STKL=0,SEG=0
|
|
|
|
; Find boundaries and map them
|
|
|
|
S D1=0
|
|
|
|
F S D1=$O(^XMB(3.9,D0,2,D1)) Q:'D1 D
|
|
|
|
. ; Clear any control characters (cr/lf/ff) off
|
|
|
|
. S X=$TR($G(^XMB(3.9,D0,2,D1,0)),$C(10,12,13))
|
|
|
|
. ; Look for " boundary=" in the various parts. Map the establishment and the
|
|
|
|
. ; terminator markers and the actual boundary markers.
|
|
|
|
. I X[" boundary=" D Q
|
|
|
|
. . S SEP=$P(X," boundary=",2)
|
|
|
|
. . S:$E(SEP)="""" SEP=$TR(SEP,"""")
|
|
|
|
. . S STKL=STKL+1
|
|
|
|
. . S END=SEP_FLG
|
|
|
|
. . S BNDRY(STKL,SEP)=0
|
|
|
|
. . S BNDRX(SEP)=STKL,BNDRZ(END)=0
|
|
|
|
. .QUIT
|
|
|
|
. ;
|
|
|
|
. ; Look for information as to how amy boudaries are present and where
|
|
|
|
. ; they terminate
|
|
|
|
. D:X'=""&($E(X,1,2)="--")&($E(X,$L(X)-1,9999)'="--")
|
|
|
|
. . ; Boundary Found
|
|
|
|
. . I $D(BNDRX(X)) D Q
|
|
|
|
. . . S SEG=SEG+1
|
|
|
|
. . . S BNDRE(X)=$G(BNDRE(X))_D1_";"
|
|
|
|
. . . S BND1(D1)=STKL_";B;"_SEG_";"_X
|
|
|
|
. . . S BNDR(X,D1,"B")=STKL
|
|
|
|
. . . I BNDRX(X)=X D ERROR("ER13")
|
|
|
|
. . .QUIT
|
|
|
|
. . ;
|
|
|
|
. . ; Boundary Terminator
|
|
|
|
. . I $D(BNDRZ(X)) D Q
|
|
|
|
. . . S BNDR(X,D1,"E")=STKL
|
|
|
|
. . . S BNDRZ(X)=BNDRZ(X)+1
|
|
|
|
. . . S BND1(D1)=STKL_";E;"_SEG_";"_X
|
|
|
|
. . . S SEG=SEG+1
|
|
|
|
. . . I BNDRX(X)=X D ERROR("ER14")
|
|
|
|
. . . S STKL=STKL-1
|
|
|
|
. . .QUIT
|
|
|
|
. .QUIT
|
|
|
|
.QUIT
|
|
|
|
; Start walking the TEXT/XML/64-BIT ENCODING sections of the message
|
|
|
|
N A,B,C,STACK,STYP,SEG,AX
|
|
|
|
S D1=.99999,SGC=0
|
|
|
|
F S D1=$O(^XMB(3.9,D0,2,D1)) Q:'D1 D
|
|
|
|
. ; Clear any control characters (cr/lf/ff) off
|
|
|
|
. S X=$TR($G(^XMB(3.9,D0,2,D1,0)),$C(10,12,13))
|
|
|
|
. ;
|
|
|
|
. D
|
|
|
|
. . I $D(BND1(D1)) D BOUNDARY(X) QUIT
|
|
|
|
. . ;
|
|
|
|
. . S DX=$O(BND1(D1))
|
|
|
|
. . I DX="" D ERROR("ER15") Q
|
|
|
|
. . ;
|
|
|
|
. . ; Good situation, extract the parts for the section
|
|
|
|
. . S A=$G(BND1(DX))
|
|
|
|
. . S STACK=+A,STYP=$P(A,";",2),SGC=$P(A,";",3),AX=$P(A,";",4,999)
|
|
|
|
. .QUIT
|
|
|
|
. ; Enter once to set the SEP to capture the separator
|
|
|
|
. ;
|
|
|
|
. ; A new SEGMENT separator is set, process original
|
|
|
|
. I $D(BND1(X)) D QUIT
|
|
|
|
. . ; Save Current Values
|
|
|
|
. . S LST("SEG",SGC,"SIZE")=BCN+$L(BF)
|
|
|
|
. . ; Close this Segment and prepare to start a New Segment
|
|
|
|
. . S $P(LST("SEG",SGC),"^",1,2)=$P($G(LST("SEG",SGC)),"^",1)_"^"_(D1-1)
|
|
|
|
. . ; Put the result in LST("SEG",SGC,"XML")
|
|
|
|
. . I $L(BF) D
|
|
|
|
. . . S ZN=1
|
|
|
|
. . . N I,T,TBF
|
|
|
|
. . . S TBF=BF
|
|
|
|
. . . F I=1:1:($L(TBF,"=")) D
|
|
|
|
. . . . S BF=$P(TBF,"=",I)_"="
|
|
|
|
. . . . I "="'[BF D DECODER(.BF,.TYP)
|
|
|
|
. . . .QUIT
|
|
|
|
. . . S BF=""
|
|
|
|
. . .QUIT
|
|
|
|
. . S SGC=SGC+1,BCN=0
|
|
|
|
. . ; Incriment SGC to start a new Segment
|
|
|
|
. . S LST("SEG",SGC)=D1
|
|
|
|
. .QUIT
|
|
|
|
. ;
|
|
|
|
. ; Accumulate the 64 bit encoding, no spaces, or other non-64bit characters
|
|
|
|
. I X=$TR(X,MSK)&$L(X) S BF=BF_X QUIT
|
|
|
|
. ;
|
|
|
|
. ; Ending Condition, close out the Segment
|
|
|
|
. I $D(BNDRZ(X)) D QUIT
|
|
|
|
. . S $P(LST("SEG",SGC),"^",2)=D1-1
|
|
|
|
. . I $L(BF) S ZN=1 D DECODER(.BF,.TYP) S BF="" Q
|
|
|
|
. .QUIT
|
|
|
|
. ;
|
|
|
|
. ; Accumulate the content lines of the message
|
|
|
|
. S BCN=BCN+$L(X)
|
|
|
|
. ; Split out the Content Info
|
|
|
|
. I X[CON D Q
|
|
|
|
. . S J=$P(X,CON,2)
|
|
|
|
. . S TYP="CONTENT"
|
|
|
|
. . S LST("SEG",SGC,TYP,$P(J,":"))=$P(J,":",2,9)
|
|
|
|
. . D CONTENT(D1)
|
|
|
|
. .QUIT
|
|
|
|
. ;
|
|
|
|
. ; Everything else is Text, Check for CCR/CCD.
|
|
|
|
. N KK,UBF
|
|
|
|
. D
|
|
|
|
. . S UBF=$$UPPER(X)
|
|
|
|
. . I UBF["<CONTINUITYOFCARERECORD" S $P(LST("SEG",SGC),U,3)="CCR" Q
|
|
|
|
. . ;
|
|
|
|
. . I UBF["<CLINICALDOCUMENT" S $P(LST("SEG",SGC),U,3)="CCD" Q
|
|
|
|
. .QUIT
|
|
|
|
. ; Look for directives in the text before it gets published
|
|
|
|
. ; Look for "=3D" and replace it with a single "=". I can do more parsing
|
|
|
|
. ; but there may be situations where the line has been wrapped.
|
|
|
|
. D:X["=3D"
|
|
|
|
. . F KK=1:1 S X=$P(X,"=3D",1)_"="_$P(X,"=3D",2,999) Q:X'["=3D"
|
|
|
|
. .QUIT
|
|
|
|
. S LST("SEG",SGC,TYP,D1)=X
|
|
|
|
.QUIT
|
|
|
|
QUIT
|
|
|
|
; ===================
|
|
|
|
CONTENT(D1) ; Try pulling Content Statements
|
|
|
|
N J,UP,X
|
|
|
|
S X=$G(^XMB(3.9,D0,2,D1,0))
|
|
|
|
S J=$P(X,CON,2)
|
|
|
|
S UP=$TR($$UPPER(X),"""")
|
|
|
|
S:$G(TYP)="" TYP="TXT"
|
|
|
|
D
|
|
|
|
. I UP["NAME=",($L(UP,".")>1) S TYP=$P(UP,".",2) Q
|
|
|
|
. I UP["XML" S TYP="XML" Q
|
|
|
|
. I UP["P7S" S TYP="P7S" Q
|
|
|
|
. I J[" boundary=" D BOUNDARY(J)
|
|
|
|
.QUIT
|
|
|
|
S LIS("CON",SGC,D1)=X
|
|
|
|
S LIS("CON",SGC,D1,"TYP")=TYP
|
|
|
|
; If there is a follow-on, look for another line after this.
|
|
|
|
I $E($RE(X),1)=";" D CONTENT(D1+1)
|
|
|
|
QUIT
|
|
|
|
; ===================
|
|
|
|
BOUNDARY(X) ; Set an additional BOUNDARY, and activate another stack level
|
|
|
|
S SEP=$P($P(X," boundary=",2),"""",2),END=SEP_FLG
|
|
|
|
Q:SEP?2"-".ANP
|
|
|
|
;
|
|
|
|
D ERROR("ER11")
|
|
|
|
Q:SEP'[" "
|
|
|
|
;
|
|
|
|
D ERROR("ER12")
|
|
|
|
QUIT
|
|
|
|
; ===================
|
|
|
|
; Break down the Buffer Array so it can be saved.
|
|
|
|
; BF is passed in.
|
|
|
|
; TYP is the type of
|
|
|
|
DECODER(BF,TYP) ;
|
|
|
|
N RCNT,TBF,UBF,ZBF,ZI,ZJ,ZK,ZSIZE
|
|
|
|
S:$G(TYP)="" TYP="XML"
|
|
|
|
S ZBF=BF
|
|
|
|
; Full Buffer, BF, now check for Encryption and Unpack
|
|
|
|
F RCNT=1:1:$L(ZBF,"=") D
|
|
|
|
. N BF
|
|
|
|
. S BF=$P(ZBF,"=",RCNT)
|
|
|
|
. ; Unpacking the 64 bit encoding
|
|
|
|
. S TBF=$TR($$DECODE^RGUTUU(BF),$C(10,12,13))
|
|
|
|
. D:$L(TBF)
|
|
|
|
. . N C,OK,OKCNT,KK,XBF,UBF
|
|
|
|
. . D
|
|
|
|
. . . S UBF=$$UPPER(TBF)
|
|
|
|
. . . I UBF["<CONTINUITYOFCARERECORD XMLNS=" S $P(LST("SEG",SGC),U,3)="CCR" Q
|
|
|
|
. . . ;
|
|
|
|
. . . I UBF["<CLINICALDOCUMENT XMLNS=" S $P(LST("SEG",SGC),U,3)="CCD" Q
|
|
|
|
. . .QUIT
|
|
|
|
. . ; Check for Bad Signature Decoding, after 100 bad characters
|
|
|
|
. . S OK=1,OKCNT=0
|
|
|
|
. . F KK=1:1:$L(UBF) S C=$A(UBF,KK) S:C>126 OKCNT=OKCNT+1 I OKCNT>100 S OK=0 Q
|
|
|
|
. . ;
|
|
|
|
. . D
|
|
|
|
. . . I 'OK S (BF,UBF,TBF,XBF)="<Crypto-Signature redacted>" Q
|
|
|
|
. . . ;
|
|
|
|
. . . S BF=BF_"="
|
|
|
|
. . . D NORMAL(.XBF,.TBF)
|
|
|
|
. . .QUIT
|
|
|
|
. . M LST("SEG",SGC,TYP,RCNT)=XBF
|
|
|
|
. .QUIT
|
|
|
|
.QUIT
|
|
|
|
QUIT
|
|
|
|
; ===================
|
|
|
|
; OUTXML = OUTBF = OUT = OUTPUT ARRAY TO BE BUILT
|
|
|
|
; BF = INXML = INPUT ARRAY TO PROVIDE INPUT
|
|
|
|
; >D NORMAL^C0CMAIL(.OUT,BF)
|
|
|
|
NORMAL(OUTXML,INXML) ;NORMALIZES AN XML STRING PASSED BY NAME IN INXML
|
|
|
|
; INTO AN XML ARRAY RETURNED IN OUTXML, ALSO PASSED BY NAME
|
|
|
|
;
|
|
|
|
N ZN,OUTBF,XX,ZSEP
|
|
|
|
S INXML=$TR(INXML,$C(10,12,13))
|
|
|
|
S ZN=1,ZSEP=">"
|
|
|
|
S OUTBF(1)=$P(INXML,"><",1)_ZSEP,XX="<"_$P(INXML,"><",2)_ZSEP,ZN=2,ZL=1
|
|
|
|
F ZN=ZN+1:1:$L(INXML,"><") D Q:XX=""
|
|
|
|
. S XX=$P(INXML,"><",ZN)
|
|
|
|
. S:$E($RE(XX))=">" ZSEP=""
|
|
|
|
. Q:XX=""
|
|
|
|
. ;
|
|
|
|
. S XX="<"_XX_ZSEP
|
|
|
|
. D
|
|
|
|
. . I $L(XX)<4000 S OUTBF(ZL)=XX,XX=$P(INXML,"><",ZN),ZL=ZL+1 Q
|
|
|
|
. . ;
|
|
|
|
. . D ERROR("ER05")
|
|
|
|
. . F ZL=ZL+1:1 D Q:XX=""
|
|
|
|
. . . N XL
|
|
|
|
. . . S XL=$E(XX,1,4000)
|
|
|
|
. . . S $E(XX,1,4000)="" ; S XX=$E(XX,4001,999999) ; Remove 4K characters
|
|
|
|
. . . S OUTBF(ZL)=XL
|
|
|
|
. . .QUIT
|
|
|
|
. .QUIT
|
|
|
|
.QUIT
|
|
|
|
M OUTXML=OUTBF
|
|
|
|
QUIT
|
|
|
|
; ===================
|
|
|
|
UPPER(X) ; Convert any lowercase letters to Uppercase letters
|
|
|
|
QUIT $TR(X,"abcdefghijklmnopqrstuvwxyz","ABCDEFGHIJKLMNOPQRSTUVWXYZ")
|
|
|
|
; ===================
|
|
|
|
; EN is a counter that remains between error events
|
|
|
|
ERROR(ER) ; Error Handler
|
|
|
|
N TXXQ,XXXQ
|
|
|
|
S XXXQ="Unknown Error Encountered = "_ER
|
|
|
|
S TXXQ=$P($T(@(ER_"^"_$T(+0))),";;",2,99)
|
|
|
|
I TXXQ'="" D
|
|
|
|
. I TXXQ["_" X "S TXXQ="_TXXQ
|
|
|
|
. S XXXQ=TXXQ
|
|
|
|
.QUIT
|
|
|
|
S EN(ER)=$G(EN(ER))+1
|
|
|
|
S LST("ERR",ER,EN(ER))=XXXQ
|
|
|
|
QUIT
|
|
|
|
; ===================
|
|
|
|
ER01 ;;Message Missing
|
|
|
|
ER02 ;;Message Text Missing
|
|
|
|
ER03 ;;Message Not Identifiable
|
|
|
|
ER04 ;;Segment is too large
|
|
|
|
ER05 ;;Mailbox Missing
|
|
|
|
ER06 ;;"User Missing = "_$G(DUZ)
|
|
|
|
ER07 ;;"Bad DUZ = "_DUZ
|
|
|
|
ER08 ;;"Bad Basket ID = "_MBLST_" >> "_$G(TN)
|
|
|
|
ER10 ;;"Bad Separator found = "_X
|
|
|
|
ER11 ;;"Non-Standard Separator Found:>"_$G(J)
|
|
|
|
ER12 ;;"Spaces are not allowed in Separators:>"_$G(J)
|
|
|
|
ER13 ;;"Bad Stack Level Detected >"_STKL_":"_BNDRY(X)_":"_X
|
|
|
|
; vvvvvvvvvvvvvvv Not Needed vvvvvvvvvvvvvvvvvvvvvvvvvv
|
|
|
|
; End note if needed
|
|
|
|
QUIT
|
|
|
|
; ===================
|