blob: b221f9534c07171e79c10d8ce5ea7e62ed5e0409 [file]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
########################################################################
# OPENAPI-URI: /api/code/sloc
########################################################################
# get:
# responses:
# '200':
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Sloc'
# description: 200 Response
# default:
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Error'
# description: unexpected error
# security:
# - cookieAuth: []
# summary: Shows a breakdown of lines of code for one or more sources
# post:
# requestBody:
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/defaultWidgetArgs'
# responses:
# '200':
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Sloc'
# description: 200 Response
# default:
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Error'
# description: unexpected error
# security:
# - cookieAuth: []
# summary: Shows a breakdown of lines of code for one or more sources
#
########################################################################
"""
This is the SLoC renderer for Kibble
"""
import json
def run(API, environ, indata, session):
# We need to be logged in for this!
if not session.user:
raise API.exception(403, "You must be logged in to use this API endpoint! %s")
# First, fetch the view if we have such a thing enabled
viewList = []
if indata.get("view"):
viewList = session.getView(indata.get("view"))
if indata.get("subfilter"):
viewList = session.subFilter(indata.get("subfilter"), view=viewList)
# Fetch all sources for default org
dOrg = session.user["defaultOrganisation"] or "apache"
query = {
"query": {
"bool": {
"must": [
{"terms": {"type": ["git", "svn", "github"]}},
{"term": {"organisation": dOrg}},
]
}
}
}
# Source-specific or view-specific??
if indata.get("source"):
query["query"]["bool"]["must"].append(
{"term": {"sourceID": indata.get("source")}}
)
elif viewList:
query["query"]["bool"]["must"].append({"terms": {"sourceID": viewList}})
res = session.DB.ES.search(
index=session.DB.dbname, doc_type="source", size=5000, body=query
)
languages = {}
years = 0
for hit in res["hits"]["hits"]:
doc = hit["_source"]
if "sloc" in doc:
sloc = doc["sloc"]
years += sloc["years"]
for k, v in sloc["languages"].items():
languages[k] = languages.get(k, {"code": 0, "comment": 0, "blank": 0})
languages[k]["code"] += v.get("code", 0)
languages[k]["comment"] += v.get("comment", 0)
languages[k]["blank"] += v.get("blank", 0)
JSON_OUT = {"languages": languages, "okay": True, "years": years}
yield json.dumps(JSON_OUT)