@leansdk/leanrc
Version:
LeanRC is a MVC framework for creating graceful applications
60 lines (46 loc) • 2.08 kB
text/coffeescript
# This file is part of LeanRC.
#
# LeanRC 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.
#
# LeanRC 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 LeanRC. If not, see <https://www.gnu.org/licenses/>.
# методы `parseQuery` и `executeQuery` должны быть реализованы в миксинах в отдельных подлючаемых npm-модулях т.к. будут содержать некоторый платформозависимый код.
module.exports = (Module)->
{
FuncG, UnionG, MaybeG
QueryInterface
CursorInterface
Interface
} = Module::
class QueryableCollectionInterface extends Interface
()
Module
deleteBy: FuncG Object
destroyBy: FuncG Object
# NOTE: обращается к БД
removeBy: FuncG Object
findBy: FuncG [Object, MaybeG Object], CursorInterface
# NOTE: обращается к БД
takeBy: FuncG [Object, MaybeG Object], CursorInterface
updateBy: FuncG [Object, Object]
# NOTE: обращается к БД
patchBy: FuncG [Object, Object]
exists: FuncG Object, Boolean
query: FuncG [UnionG Object, QueryInterface], CursorInterface
parseQuery: FuncG(
[UnionG Object, QueryInterface]
UnionG Object, String, QueryInterface
)
executeQuery: FuncG(
[UnionG Object, String, QueryInterface]
CursorInterface
)
()