Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90433432
Withdraw_Approval_Request.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 15:06
Size
19 KB
Mime Type
text/x-python
Expires
Sun, Nov 3, 15:06 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22072850
Attached To
R3600 invenio-infoscience
Withdraw_Approval_Request.py
View Options
## $Id$
## This file is part of CDS Invenio.
## Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 CERN.
##
## CDS Invenio is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2 of the
## License, or (at your option) any later version.
##
## CDS Invenio 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
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with CDS Invenio; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
"""At the time of a "withdraw approval request " submission, register the
withdrawal of the request in the WebSubmit "Approvals" DB (sbmAPPROVAL).
"""
__revision__
=
"$Id$"
import
time
import
sre_constants
import
os
import
cgi
import
re
import
os.path
from
invenio.websubmit_dblayer
import
get_simple_approval_status
,
\
update_approval_request_status
from
invenio.websubmit_functions.ParamFile
import
ParamFromFile
from
invenio.websubmit_config
import
InvenioWebSubmitFunctionError
,
\
InvenioWebSubmitFunctionStop
from
invenio.errorlib
import
register_exception
from
invenio.config
import
CFG_SITE_SUPPORT_EMAIL
def
Withdraw_Approval_Request
(
parameters
,
curdir
,
form
,
user_info
=
None
):
"""This function is used in a "withdraw approval request" submission
in order to register the withdral of the request in the WebSubmit
"Approvals" DB (sbmAPPROVAL).
At the time of the approval request withdrawal, the document could be
in one of several different approval "states" and depending upon that
state, the action taken by this function differs. The states are as
follows:
* Approval of the document has previously been requested and it is
still in the "waiting" state.
-> In this case, the status of the document in the sbmAPPROVAL
table is set to "withdrawn".
* Approval for the document has never been requested.
-> In this case, there is nothing to do.
* Approval of the document has previously been requested, but the
document was rejected.
-> In this case, it's too late to withdraw the approval request
and there is nothing left to do.
* Approval of the document has previously been requested and it has
been approved.
-> In this case, it's too late to withdraw the approval request
and there is nothing left to do.
* Approval of the document has previously been requested, but the
request withdrawn.
-> In this case, there is nothing to do.
@param categ_file_withd: (string) - some document types are
separated into different categories, each of which has its own
referee(s).
In such document types, it's necessary to know the document-
type's category in order to choose the referee.
This parameter provides a means by which the category information
can be extracted from a file in the current submission's working
directory. It should therefore be a filename.
@param categ_rnseek_withd: (string) - some document types are
separated into different categories, each of which has its own
referee(s).
In such document types, it's necessary to know the document-
type's category in order to choose the referee.
This parameter provides a means by which the category information
can be extracted from the document's reference number.
It is infact a string that will be compiled into a regexp and
an attempt will be made to match it agains the document's reference
number starting from the left-most position.
The only pre-requisite is that the segment in which the category is
sought should be indicated with <CATEGORY>.
Thus, an example might be as follows:
ATL(-COM)?-<CATEGORY>-.+
This would allow "PHYS" in the following reference number to be
recognised as the category:
ATL-COM-PHYS-2008-001
@return: (string) - a message for the user.
@Exceptions raised: + InvenioWebSubmitFunctionStop when the submission
should be halted.
+ InvenioWebSubmitFunctionError when an unexpected
error has been encountered and execution cannot
continue.
"""
## Get the reference number (as global rn - sorry!) and the document type:
global
rn
doctype
=
form
[
'doctype'
]
## A string variable to contain any information that should be displayed
## in the user's browser:
info_out
=
""
########
## Get the parameters from the list:
########
## Get the name of the category file:
#######
try
:
## If it has been provided, get the name of the file in which the
## category is stored:
category_file
=
parameters
[
"categ_file_withd"
]
except
KeyError
:
## No value given for the category file:
category_file
=
None
else
:
if
category_file
is
not
None
:
category_file
=
str
(
category_file
)
category_file
=
os
.
path
.
basename
(
category_file
)
.
strip
()
if
category_file
==
""
:
category_file
=
None
########
## Get the regexp that is used to find the category in the report number:
########
try
:
## If it has been provided, get the regexp used for identifying
## a document-type's category from its reference number:
category_rn_regexp
=
parameters
[
"categ_rnseek_withd"
]
except
KeyError
:
## No value given for the category regexp:
category_rn_regexp
=
None
else
:
if
category_rn_regexp
is
not
None
:
category_rn_regexp
=
str
(
category_rn_regexp
)
.
strip
()
if
category_rn_regexp
==
""
:
category_rn_regexp
=
None
#######
## Resolve the document type's category:
##
## This is a long process. The end result is that the category is extracted
## either from a file in curdir, or from the report number.
## If it's taken from the report number, the admin must configure the
## function to accept a regular expression that is used to find the
## category in the report number.
##
if
category_file
is
not
None
and
category_rn_regexp
is
not
None
:
## It is not valid to have both a category file and a pattern
## describing how to extract the category from a report number.
## raise an InvenioWebSubmitFunctionError
msg
=
"Error in Withdraw_Approval_Request function: received "
\
"instructions to search for the document's category in "
\
"both its report number AND in a category file. Could "
\
"not determine which to use - please notify "
\
"%(suppt-email)s."
\
%
{
'suppt-email'
:
cgi
.
escape
(
CFG_SITE_SUPPORT_EMAIL
),
}
raise
InvenioWebSubmitFunctionError
(
msg
)
elif
category_file
is
not
None
:
## Attempt to recover the category information from a file in the
## current submission's working directory:
category
=
ParamFromFile
(
"
%s
/
%s
"
%
(
curdir
,
category_file
))
if
category
is
not
None
:
category
=
category
.
strip
()
if
category
in
(
None
,
""
):
## The category cannot be resolved.
msg
=
"Error in Withdraw_Approval_Request function: received "
\
"instructions to search for the document's category in "
\
"a category file, but could not recover the category "
\
"from that file. The approval request therefore cannot "
\
"be withdrawn for the document. Please report this "
\
"problem to %(suppt-email)s."
\
%
{
'suppt-email'
:
cgi
.
escape
(
CFG_SITE_SUPPORT_EMAIL
),
}
raise
InvenioWebSubmitFunctionError
(
msg
)
elif
category_rn_regexp
is
not
None
:
## Attempt to recover the category information from the document's
## reference number using the regexp in category_rn_regexp:
##
## Does the category regexp contain the key-phrase "<CATEG>"?
if
category_rn_regexp
.
find
(
"<CATEG>"
)
!=
-
1
:
## Yes. Replace "<CATEG>" with "(?P<category>.+?)".
## For example, this:
## ATL(-COM)?-<CATEG>-
## Will be transformed into this:
## ATL(-COM)?-(?P<category>.+?)-
category_rn_final_regexp
=
\
category_rn_regexp
.
replace
(
"<CATEG>"
,
r"(?P<category>.+?)"
,
1
)
else
:
## The regexp for category didn't contain "<CATEG>", but this is
## mandatory.
msg
=
"Error in Withdraw_Approval_Request function: The "
\
"[
%(doctype)s
] submission has been configured to search "
\
"for the document type's category in its reference number, "
\
"using a poorly formed search expression (no marker for "
\
"the category was present.) Since the document's category "
\
"therefore cannot be retrieved, its approval request "
\
"cannot be withdrawn. Please report this problem to "
\
"%(suppt-email)s."
\
%
{
'doctype'
:
cgi
.
escape
(
doctype
),
'suppt-email'
:
cgi
.
escape
(
CFG_SITE_SUPPORT_EMAIL
),
}
raise
InvenioWebSubmitFunctionError
(
msg
)
##
try
:
## Attempt to compile the regexp for finding the category:
re_categ_from_rn
=
re
.
compile
(
category_rn_final_regexp
)
except
sre_constants
.
error
:
## The expression passed to this function could not be compiled
## into a regexp. Register this exception and raise an
## InvenioWebSubmitFunctionError:
exception_prefix
=
"Error in Withdraw_Approval_Request function: "
\
"The [
%(doctype)s
] submission has been "
\
"configured to search for the document type's "
\
"category in its reference number, using the "
\
"following regexp: /
%(regexp)s
/. This regexp, "
\
"however, could not be compiled correctly "
\
"(created it from %(categ-search-term)s.)"
\
%
{
'doctype'
:
doctype
,
\
'regexp'
:
category_rn_final_regexp
,
\
'categ-search-term'
:
category_rn_regexp
,
}
register_exception
(
prefix
=
exception_prefix
)
msg
=
"Error in Withdraw_Approval_Request function: The "
\
"[
%(doctype)s
] submission has been configured to search "
\
"for the document type's category in its reference number, "
\
"using a poorly formed search expression. Since the "
\
"document's category therefore cannot be retrieved, its "
\
"approval request cannot be withdrawn. Please "
\
"report this problem to %(suppt-email)s."
\
%
{
'doctype'
:
cgi
.
escape
(
doctype
),
'suppt-email'
:
cgi
.
escape
(
CFG_SITE_SUPPORT_EMAIL
),
}
raise
InvenioWebSubmitFunctionError
(
msg
)
else
:
## Now attempt to recover the category from the RN string:
m_categ_from_rn
=
re_categ_from_rn
.
match
(
rn
)
if
m_categ_from_rn
is
not
None
:
## The pattern matched in the string.
## Extract the category from the match:
try
:
category
=
m_categ_from_rn
.
group
(
"category"
)
except
IndexError
:
## There was no "category" group. That group is mandatory.
exception_prefix
=
\
"Error in Withdraw_Approval_Request function: The "
\
"[
%(doctype)s
] submission has been configured to "
\
"search for the document type's category in its "
\
"reference number using the following regexp: "
\
"/
%(regexp)s
/. The search produced a match, but "
\
"there was no
\"
category
\"
group in the match "
\
"object although this group is mandatory. The "
\
"regexp was compiled from the following string: "
\
"[%(categ-search-term)s]."
\
%
{
'doctype'
:
doctype
,
\
'regexp'
:
category_rn_final_regexp
,
\
'categ-search-term'
:
category_rn_regexp
,
}
register_exception
(
prefix
=
exception_prefix
)
msg
=
"Error in Withdraw_Approval_Request function: The "
\
"[
%(doctype)s
] submission has been configured to "
\
"search for the document type's category in its "
\
"reference number, using a poorly formed search "
\
"expression (there was no category marker). Since "
\
"the document's category therefore cannot be "
\
"retrieved, its approval request cannot be "
\
"withdrawn. Please report this problem to "
\
"%(suppt-email)s."
\
%
{
'doctype'
:
cgi
.
escape
(
doctype
),
'suppt-email'
:
\
cgi
.
escape
(
CFG_SITE_SUPPORT_EMAIL
),}
raise
InvenioWebSubmitFunctionError
(
msg
)
else
:
category
=
category
.
strip
()
if
category
==
""
:
msg
=
"Error in Withdraw_Approval_Request function: "
\
"The [
%(doctype)s
] submission has been "
\
"configured to search for the document type's "
\
"category in its reference number, but no "
\
"category was found. The request for approval "
\
"cannot be withdrawn. Please report this "
\
"problem to %(suppt-email)s."
\
%
{
'doctype'
:
cgi
.
escape
(
doctype
),
'suppt-email'
:
\
cgi
.
escape
(
CFG_SITE_SUPPORT_EMAIL
),}
raise
InvenioWebSubmitFunctionError
(
msg
)
else
:
## No match. Cannot find the category and therefore cannot
## continue:
msg
=
"Error in Withdraw_Approval_Request function: The "
\
"[
%(doctype)s
] submission has been configured to "
\
"search for the document type's category in its "
\
"reference number, but no match was made. The request "
\
"for approval cannot be withdrawn. Please report "
\
"this problem to %(suppt-email)s."
\
%
{
'doctype'
:
cgi
.
escape
(
doctype
),
'suppt-email'
:
cgi
.
escape
(
CFG_SITE_SUPPORT_EMAIL
),}
raise
InvenioWebSubmitFunctionError
(
msg
)
else
:
## The document type has no category.
category
=
""
##
## End of category recovery
#######
#######
##
## Query the "approvals" DB table to determine whether approval of this
## document has already been requested:
approval_status
=
get_simple_approval_status
(
doctype
,
rn
)
if
approval_status
is
None
:
## Approval has never been requested for this document.
## One cannot withdraw an approval request that was never made.
msg
=
"""
<br />
<div>
<span style="color: red;">Note:</span> A request for the approval of the
document [%s] has never been made.<br />
There is nothing to do.
</div>
"""
%
cgi
.
escape
(
rn
)
raise
InvenioWebSubmitFunctionStop
(
msg
)
elif
approval_status
.
lower
()
==
"approved"
:
## This document has already been approved. It's too late to withdraw
## the approval request.
msg
=
"""
<br />
<div>
<span style="color: red;">Note:</span> The document [%s] has already been
approved.<br />
It is too late to withdraw the approval request.<br />
If you believe this to be an error, please contact %s, quoting the<br />
document's report-number [%s] and describing the problem.
</div>
"""
%
(
cgi
.
escape
(
rn
),
cgi
.
escape
(
CFG_SITE_SUPPORT_EMAIL
),
cgi
.
escape
(
rn
))
raise
InvenioWebSubmitFunctionStop
(
msg
)
elif
approval_status
.
lower
()
==
"rejected"
:
## This document has already been rejected. It's too late to withdraw
## the approval request.
msg
=
"""
<br />
<div>
<span style="color: red;">Note:</span> The document [%s] has already been
rejected.<br />
It is too late to withdraw the approval request.<br />
If you believe this to be an error, please contact %s, quoting the<br />
document's report-number [%s] and describing the problem.
</div>
"""
%
(
cgi
.
escape
(
rn
),
cgi
.
escape
(
CFG_SITE_SUPPORT_EMAIL
),
cgi
.
escape
(
rn
))
raise
InvenioWebSubmitFunctionStop
(
msg
)
elif
approval_status
.
lower
()
==
"withdrawn"
:
## The approval request for this document has already been withdrawn.
msg
=
"""
<br />
<div>
<span style="color: red;">Note:</span> The approval request for the document
[%s] has already been withdrawn.<br />
There is nothing to do.
</div>
"""
%
cgi
.
escape
(
rn
)
raise
InvenioWebSubmitFunctionStop
(
msg
)
elif
approval_status
.
lower
()
==
"waiting"
:
## Mark the approval request as withdrawn:
note
=
"Withdrawn by [
%s
]:
%s
\n\n
"
\
%
(
cgi
.
escape
(
user_info
[
'email'
]),
\
cgi
.
escape
(
time
.
strftime
(
"
%d
/%m/%Y %H:%M:%S"
,
\
time
.
localtime
())))
update_approval_request_status
(
doctype
,
\
rn
,
\
note
=
note
,
\
status
=
"withdrawn"
)
info_out
+=
"""
<br />
<div>
The approval request for the document [%s] has been withdrawn.
</div>
"""
%
cgi
.
escape
(
rn
)
else
:
## The document had an unrecognised "status". Raise an error.
msg
=
"Error in Withdraw_Approval_Request function: The "
\
"[
%(reportnum)s
] document has an unknown approval status "
\
"(
%(status)s
). Unable to withdraw the request for its "
\
"approval. Please report this problem to the %(suppt-email)s."
\
%
{
'reportnum'
:
cgi
.
escape
(
rn
),
'status'
:
cgi
.
escape
(
approval_status
),
'suppt-email'
:
cgi
.
escape
(
CFG_SITE_SUPPORT_EMAIL
),
}
raise
InvenioWebSubmitFunctionError
(
msg
)
##
## Finished - return any message to be displayed on the user's screen.
return
info_out
Event Timeline
Log In to Comment