2021-11-04 19:08:33 +03:00
|
|
|
module Hasura.Backends.MSSQL.DDL.BoolExp
|
|
|
|
( parseBoolExpOperations,
|
|
|
|
)
|
|
|
|
where
|
2021-02-23 20:37:27 +03:00
|
|
|
|
2021-09-24 01:56:37 +03:00
|
|
|
import Data.Aeson qualified as J
|
|
|
|
import Data.HashMap.Strict qualified as Map
|
|
|
|
import Data.Text qualified as T
|
|
|
|
import Data.Text.Extended (dquote, toTxt, (<<>))
|
|
|
|
import Hasura.Backends.MSSQL.Types hiding (ColumnType)
|
|
|
|
import Hasura.Base.Error
|
|
|
|
import Hasura.Prelude
|
|
|
|
import Hasura.RQL.IR.BoolExp
|
|
|
|
import Hasura.RQL.Types.Column
|
|
|
|
import Hasura.RQL.Types.SchemaCache
|
|
|
|
import Hasura.SQL.Backend
|
|
|
|
import Hasura.SQL.Types
|
|
|
|
|
|
|
|
parseBoolExpOperations ::
|
|
|
|
forall m v.
|
|
|
|
(MonadError QErr m) => -- , TableCoreInfoRM 'MSSQL m)
|
|
|
|
ValueParser 'MSSQL m v ->
|
|
|
|
TableName ->
|
|
|
|
FieldInfoMap (FieldInfo 'MSSQL) ->
|
|
|
|
ColumnReference 'MSSQL ->
|
|
|
|
J.Value ->
|
|
|
|
m [OpExpG 'MSSQL v]
|
2021-07-28 11:09:32 +03:00
|
|
|
parseBoolExpOperations rhsParser _table _fields columnRef value =
|
|
|
|
withPathK (toTxt columnRef) $ parseOperations (columnReferenceType columnRef) value
|
2021-02-23 20:37:27 +03:00
|
|
|
where
|
|
|
|
parseWithTy ty = rhsParser (CollectableTypeScalar ty)
|
|
|
|
|
|
|
|
parseOperations :: ColumnType 'MSSQL -> J.Value -> m [OpExpG 'MSSQL v]
|
|
|
|
parseOperations columnType = \case
|
|
|
|
J.Object o -> mapM (parseOperation columnType) $ Map.toList o
|
2021-09-24 01:56:37 +03:00
|
|
|
v -> pure . AEQ False <$> parseWithTy columnType v
|
2021-02-23 20:37:27 +03:00
|
|
|
|
|
|
|
parseOperation :: ColumnType 'MSSQL -> (Text, J.Value) -> m (OpExpG 'MSSQL v)
|
|
|
|
parseOperation columnType (opStr, val) = withPathK opStr $
|
|
|
|
case opStr of
|
2021-09-24 01:56:37 +03:00
|
|
|
"_eq" -> parseEq
|
|
|
|
"$eq" -> parseEq
|
|
|
|
"_neq" -> parseNeq
|
|
|
|
"$neq" -> parseNeq
|
|
|
|
"$in" -> parseIn
|
|
|
|
"_in" -> parseIn
|
|
|
|
"$nin" -> parseNin
|
|
|
|
"_nin" -> parseNin
|
|
|
|
"_gt" -> parseGt
|
|
|
|
"$gt" -> parseGt
|
|
|
|
"_lt" -> parseLt
|
|
|
|
"$lt" -> parseLt
|
|
|
|
"_gte" -> parseGte
|
|
|
|
"$gte" -> parseGte
|
|
|
|
"_lte" -> parseLte
|
|
|
|
"$lte" -> parseLte
|
|
|
|
"$like" -> parseLike
|
|
|
|
"_like" -> parseLike
|
|
|
|
"$nlike" -> parseNlike
|
|
|
|
"_nlike" -> parseNlike
|
|
|
|
"_st_contains" -> ABackendSpecific <$> parseGeometryOrGeographyOp ASTContains
|
|
|
|
"$st_contains" -> ABackendSpecific <$> parseGeometryOrGeographyOp ASTContains
|
|
|
|
"_st_equals" -> ABackendSpecific <$> parseGeometryOrGeographyOp ASTEquals
|
|
|
|
"$st_equals" -> ABackendSpecific <$> parseGeometryOrGeographyOp ASTEquals
|
2021-03-25 20:50:08 +03:00
|
|
|
"_st_intersects" -> ABackendSpecific <$> parseGeometryOrGeographyOp ASTIntersects
|
|
|
|
"$st_intersects" -> ABackendSpecific <$> parseGeometryOrGeographyOp ASTIntersects
|
2021-09-24 01:56:37 +03:00
|
|
|
"_st_overlaps" -> ABackendSpecific <$> parseGeometryOrGeographyOp ASTOverlaps
|
|
|
|
"$st_overlaps" -> ABackendSpecific <$> parseGeometryOrGeographyOp ASTOverlaps
|
|
|
|
"_st_within" -> ABackendSpecific <$> parseGeometryOrGeographyOp ASTWithin
|
|
|
|
"$st_within" -> ABackendSpecific <$> parseGeometryOrGeographyOp ASTWithin
|
|
|
|
"_st_crosses" -> ABackendSpecific <$> parseGeometryOp ASTCrosses
|
|
|
|
"$st_crosses" -> ABackendSpecific <$> parseGeometryOp ASTCrosses
|
|
|
|
"_st_touches" -> ABackendSpecific <$> parseGeometryOp ASTTouches
|
|
|
|
"$st_touches" -> ABackendSpecific <$> parseGeometryOp ASTTouches
|
|
|
|
x -> throw400 UnexpectedPayload $ "Unknown operator : " <> x
|
2021-02-23 20:37:27 +03:00
|
|
|
where
|
2021-07-28 11:09:32 +03:00
|
|
|
colTy = columnReferenceType columnRef
|
2021-03-19 15:42:09 +03:00
|
|
|
|
2021-02-23 20:37:27 +03:00
|
|
|
parseOne = parseWithTy columnType val
|
2021-03-19 15:42:09 +03:00
|
|
|
parseManyWithType ty = rhsParser (CollectableTypeArray ty) val
|
2021-02-23 20:37:27 +03:00
|
|
|
|
2021-09-24 01:56:37 +03:00
|
|
|
parseEq = AEQ False <$> parseOne
|
|
|
|
parseNeq = ANE False <$> parseOne
|
|
|
|
parseIn = AIN <$> parseManyWithType colTy
|
|
|
|
parseNin = ANIN <$> parseManyWithType colTy
|
|
|
|
parseGt = AGT <$> parseOne
|
|
|
|
parseLt = ALT <$> parseOne
|
|
|
|
parseGte = AGTE <$> parseOne
|
|
|
|
parseLte = ALTE <$> parseOne
|
|
|
|
parseLike = guardType stringTypes >> ALIKE <$> parseOne
|
2021-03-19 19:39:37 +03:00
|
|
|
parseNlike = guardType stringTypes >> ANLIKE <$> parseOne
|
2021-03-19 15:42:09 +03:00
|
|
|
|
2021-03-24 16:43:40 +03:00
|
|
|
parseGeometryOp f =
|
|
|
|
guardType [GeometryType] >> f <$> parseOneNoSess colTy val
|
|
|
|
parseGeometryOrGeographyOp f =
|
|
|
|
guardType geoTypes >> f <$> parseOneNoSess colTy val
|
|
|
|
parseOneNoSess ty = rhsParser (CollectableTypeScalar ty)
|
|
|
|
|
2021-09-24 01:56:37 +03:00
|
|
|
guardType validTys =
|
|
|
|
unless (isScalarColumnWhere (`elem` validTys) colTy) $
|
|
|
|
throwError $ buildMsg colTy validTys
|
2021-03-19 15:42:09 +03:00
|
|
|
|
2021-09-24 01:56:37 +03:00
|
|
|
buildMsg ty expTys =
|
|
|
|
err400 UnexpectedPayload $
|
|
|
|
" is of type " <> ty <<> "; this operator works only on columns of type "
|
|
|
|
<> T.intercalate "/" (map dquote expTys)
|