| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- # IRIS Source Code
- # Copyright (C) 2024 - DFIR-IRIS
- # contact@dfir-iris.org
- #
- # This program is free software; you can redistribute it and/or
- # modify it under the terms of the GNU Lesser General Public
- # License as published by the Free Software Foundation; either
- # version 3 of the License, or (at your option) any later version.
- #
- # 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
- # Lesser General Public License for more details.
- #
- # You should have received a copy of the GNU Lesser General Public License
- # along with this program; if not, write to the Free Software Foundation,
- # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- from functools import wraps
- from flask import request
- from flask_wtf import FlaskForm
- from flask import Blueprint
- from flask_login import current_user
- from graphql_server.flask import GraphQLView
- from graphene import ObjectType
- from graphene import Schema
- from graphene import Float
- from graphene import Int
- from graphene import Field
- from graphene import String
- from graphene_sqlalchemy import SQLAlchemyConnectionField
- from app.datamgmt.manage.manage_cases_db import build_filter_case_query
- from app.blueprints.access_controls import is_user_authenticated
- from app.blueprints.responses import response_error
- from app.models.authorization import CaseAccessLevel
- from app.blueprints.graphql.cases import CaseObject
- from app.blueprints.graphql.iocs import IOCObject
- from app.blueprints.graphql.iocs import IOCCreate
- from app.blueprints.graphql.iocs import IOCUpdate
- from app.blueprints.graphql.iocs import IOCDelete
- from app.blueprints.graphql.cases import CaseCreate
- from app.blueprints.graphql.cases import CaseDelete
- from app.blueprints.graphql.cases import CaseUpdate
- from app.blueprints.graphql.cases import CaseConnection
- from app.business.cases import cases_get_by_identifier
- from app.business.iocs import iocs_get
- from app.blueprints.graphql.permissions import permissions_check_current_user_has_some_case_access
- import warnings
- # Ignore all UserWarnings
- warnings.filterwarnings("ignore", category=UserWarning)
- class Query(ObjectType):
- """This is the IRIS GraphQL queries documentation!"""
- cases = SQLAlchemyConnectionField(CaseConnection, classification_id=Float(), client_id=Float(), state_id=Int(),
- owner_id=Float(), open_date=String(), name=String(), soc_id=String(),
- severity_id=Int(), tags=String(), open_since=Int())
- case = Field(CaseObject, case_id=Float(), description='Retrieve a case by its identifier')
- ioc = Field(IOCObject, ioc_id=Float(), description='Retrieve an ioc by its identifier')
- @staticmethod
- def resolve_cases(root, info, classification_id=None, client_id=None, state_id=None, owner_id=None, open_date=None, name=None, soc_id=None,
- severity_id=None, tags=None, open_since=None, **kwargs):
- return build_filter_case_query(current_user.id, start_open_date=open_date, end_open_date=None, case_customer_id=client_id, case_ids=None,
- case_name=name, case_description=None, case_classification_id=classification_id, case_owner_id=owner_id,
- case_opening_user_id=None, case_severity_id=severity_id, case_state_id=state_id, case_soc_id=soc_id,
- case_tags=tags, case_open_since=open_since)
- @staticmethod
- def resolve_case(root, info, case_id):
- permissions_check_current_user_has_some_case_access(case_id, [CaseAccessLevel.read_only, CaseAccessLevel.full_access])
- return cases_get_by_identifier(case_id)
- @staticmethod
- def resolve_ioc(root, info, ioc_id):
- ioc = iocs_get(ioc_id)
- permissions_check_current_user_has_some_case_access(ioc.case_id, [CaseAccessLevel.read_only, CaseAccessLevel.full_access])
- return ioc
- class Mutation(ObjectType):
- ioc_create = IOCCreate.Field()
- ioc_update = IOCUpdate.Field()
- ioc_delete = IOCDelete.Field()
- case_create = CaseCreate.Field()
- case_delete = CaseDelete.Field()
- case_update = CaseUpdate.Field()
- def _check_authentication_wrapper(f):
- @wraps(f)
- def wrap(*args, **kwargs):
- if request.method == 'POST':
- cookie_session = request.cookies.get('session')
- if cookie_session:
- form = FlaskForm()
- if not form.validate():
- return response_error('Invalid CSRF token')
- elif request.is_json:
- request.json.pop('csrf_token')
- if not is_user_authenticated(request):
- return response_error('Authentication required', status=401)
- return f(*args, **kwargs)
- return wrap
- def _create_blueprint():
- schema = Schema(query=Query, mutation=Mutation)
- graphql_view = GraphQLView.as_view('graphql', schema=schema)
- graphql_view_with_authentication = _check_authentication_wrapper(graphql_view)
- blueprint = Blueprint('graphql', __name__)
- blueprint.add_url_rule('/graphql', view_func=graphql_view_with_authentication, methods=['POST'])
- return blueprint
- graphql_blueprint = _create_blueprint()
|