-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2269 from DOAJ/feature/3568_new_script
new script to generate report for number of applications per year
- Loading branch information
Showing
1 changed file
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
from portality import models | ||
import csv | ||
|
||
"""This script generates a report of the status of applications in the DOAJ. The output is a CSV file with number | ||
of applications in each status(new, accepted, rejected) for each year.""" | ||
|
||
|
||
def date_applied_query(date_year): | ||
return { | ||
"query": { | ||
"bool": { | ||
"must": [ | ||
{ | ||
"term": { | ||
"admin.application_type.exact": "new_application" | ||
} | ||
}, | ||
{ | ||
"range": { | ||
"admin.date_applied": { | ||
"gte": str(date_year) + "-01-01", | ||
"lte": str(date_year) + "-12-31" | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
|
||
|
||
def status_query(date_year, status): | ||
return { | ||
"query": { | ||
"bool": { | ||
"must": [ | ||
{ | ||
"term": { | ||
"action": "status:" + status | ||
} | ||
}, | ||
{ | ||
"range": { | ||
"created_date": { | ||
"gte": str(date_year) + "-01-01", | ||
"lte": str(date_year) + "-12-31" | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
|
||
|
||
if __name__ == "__main__": | ||
|
||
import argparse | ||
|
||
parser = argparse.ArgumentParser() | ||
parser.add_argument("-o", "--out", help="output file path") | ||
parser.add_argument("-y", "--year", help="year to filter by") | ||
args = parser.parse_args() | ||
|
||
if not args.out: | ||
print("Please specify an output file path with the -o option") | ||
parser.print_help() | ||
exit() | ||
|
||
if not args.year: | ||
print("Please specify a year to filter the applications with the -y option") | ||
parser.print_help() | ||
exit() | ||
|
||
with open(args.out, "w", encoding="utf-8") as f: | ||
writer = csv.writer(f) | ||
|
||
res = models.Application.query(q=date_applied_query(args.year), size=0) | ||
writer.writerow(["Submitted", res.get("hits", {}).get("total", {}).get("value", 0)]) | ||
|
||
res = models.Provenance.query(q=status_query(args.year, "accepted"), size=0) | ||
writer.writerow(["Accepted", res.get("hits", {}).get("total", {}).get("value", 0)]) | ||
|
||
res = models.Provenance.query(q=status_query(args.year, "rejected"), size=0) | ||
writer.writerow(["Rejected", res.get("hits", {}).get("total", {}).get("value", 0)]) |