Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
haskell-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
145
Issues
145
List
Board
Labels
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
haskell-gargantext
Commits
0d5ca418
Verified
Commit
0d5ca418
authored
May 18, 2023
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[utils] functions to upload document to ethercalc and codimd
parent
044ae180
Pipeline
#4019
failed with stage
in 30 minutes and 9 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
146 additions
and
2 deletions
+146
-2
gargantext.cabal
gargantext.cabal
+5
-1
Upload.hs
src/Gargantext/Core/Text/Upload.hs
+123
-0
Servant.hs
src/Gargantext/Utils/Servant.hs
+18
-1
No files found.
gargantext.cabal
View file @
0d5ca418
...
...
@@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack
name: gargantext
version: 0.0.6.9.9.4.6
version:
0.0.6.9.9.4.6
synopsis: Search, map, share
description: Please see README.md
category: Data
...
...
@@ -56,6 +56,7 @@ library
Gargantext.Core.Text.Corpus.Parsers
Gargantext.Core.Text.Corpus.Parsers.CSV
Gargantext.Core.Text.Corpus.Parsers.Date.Parsec
Gargantext.Core.Text.Corpus.Parsers.JSON
Gargantext.Core.Text.List.Formats.CSV
Gargantext.Core.Text.Metrics
Gargantext.Core.Text.Metrics.CharByChar
...
...
@@ -230,6 +231,7 @@ library
Gargantext.Core.Text.Terms.Multi.Group
Gargantext.Core.Text.Terms.Multi.PosTagging
Gargantext.Core.Text.Terms.Multi.PosTagging.Types
Gargantext.Core.Text.Upload
Gargantext.Core.Types.Phylo
Gargantext.Core.Types.Search
Gargantext.Core.Utils.DateUtils
...
...
@@ -425,6 +427,7 @@ library
, http-conduit
, http-media
, http-types
, HTTP
, hxt
, ihaskell
, ini
...
...
@@ -483,6 +486,7 @@ library
, servant-blaze
, servant-cassava
, servant-client
, servant-client-core
, servant-ekg
, servant-flatten
, servant-job
...
...
src/Gargantext/Core/Text/Upload.hs
0 → 100644
View file @
0d5ca418
{-# LANGUAGE TypeOperators #-}
module
Gargantext.Core.Text.Upload
(
Host
(
..
)
,
DocId
(
..
)
,
Data
(
..
)
,
ContentType
(
..
)
,
ethercalc
,
codimd
)
where
import
qualified
Data.Map.Strict
as
Map
import
qualified
Data.Text
as
T
import
qualified
Data.Text.Encoding
as
TE
import
Gargantext.Utils.Servant
(
CSV
,
Markdown
)
import
Network.HTTP.Client
(
newManager
,
Request
(
..
))
import
Network.HTTP.Client.TLS
(
tlsManagerSettings
)
import
Protolude
import
Servant.API
import
Servant.Client
newtype
Host
=
Host
{
fromHost
::
Text
}
newtype
DocId
=
DocId
{
fromDocId
::
Text
}
newtype
Data
=
Data
{
fromData
::
Text
}
data
ContentType
a
=
CTPlain
a
|
CTCSV
a
-- TODO SocialCalc, Excel XML ?
instance
MimeRender
CSV
Data
where
mimeRender
p
(
Data
d
)
=
mimeRender
p
d
instance
MimeRender
PlainText
Data
where
mimeRender
p
(
Data
d
)
=
mimeRender
p
d
instance
ToHttpApiData
DocId
where
toUrlPiece
(
DocId
docId
)
=
docId
-- https://github.com/audreyt/ethercalc/blob/master/API.md
type
EthercalcAPI
=
"_"
:>
(
-- plain text
ReqBody
'[
P
lainText
]
Data
:>
Post
'[
P
lainText
]
Text
:<|>
Capture
"docId"
DocId
:>
ReqBody
'[
P
lainText
]
Data
:>
Put
'[
P
lainText
]
Text
-- csv
:<|>
ReqBody
'[
C
SV
]
Data
:>
Post
'[
C
SV
]
Text
:<|>
Capture
"docId"
DocId
:>
ReqBody
'[
C
SV
]
Data
:>
Put
'[
C
SV
]
Text
)
ethercalcAPI
::
Proxy
EthercalcAPI
ethercalcAPI
=
Proxy
ethercalcNewPlain
::
Data
->
ClientM
Text
ethercalcUpdatePlain
::
DocId
->
Data
->
ClientM
Text
ethercalcNewCSV
::
Data
->
ClientM
Text
ethercalcUpdateCSV
::
DocId
->
Data
->
ClientM
Text
ethercalcNewPlain
:<|>
ethercalcUpdatePlain
:<|>
ethercalcNewCSV
:<|>
ethercalcUpdateCSV
=
client
ethercalcAPI
------------------------------
-- | Create new or update existing Ethercalc document (depending on
-- `Maybe DocId` constructor). `Data` can be in various formats (CSV,
-- etc).
ethercalc
::
Host
->
Maybe
DocId
->
ContentType
Data
->
IO
(
Either
ClientError
Text
)
ethercalc
(
Host
host
)
mDocId
ctD
=
do
manager'
<-
newManager
tlsManagerSettings
let
env
=
mkClientEnv
manager'
(
BaseUrl
Https
(
T
.
unpack
host
)
443
""
)
case
(
mDocId
,
ctD
)
of
(
Nothing
,
CTPlain
d
)
->
runClientM
(
ethercalcNewPlain
d
)
env
(
Nothing
,
CTCSV
d
)
->
runClientM
(
ethercalcNewCSV
d
)
env
(
Just
docId
,
CTPlain
d
)
->
runClientM
(
ethercalcUpdatePlain
docId
d
)
env
(
Just
docId
,
CTCSV
d
)
->
runClientM
(
ethercalcUpdateCSV
docId
d
)
env
-----------------------------------
type
CodiMDAPI
=
"new"
:>
(
ReqBody
'[
M
arkdown
]
Data
:>
Post
'[
M
arkdown
]
Text
)
instance
MimeRender
Markdown
Data
where
mimeRender
p
(
Data
d
)
=
mimeRender
p
d
codimdAPI
::
Proxy
CodiMDAPI
codimdAPI
=
Proxy
codimdAPINew
::
Data
->
ClientM
Text
codimdAPINew
=
client
codimdAPI
-- | Create a new CodiMD document (with Markdown contents). Please
-- note that AFAIK CodiMD update is not supported, see
-- https://github.com/hackmdio/codimd/issues/1013
codimd
::
Host
->
Data
->
IO
(
Either
Text
Text
)
codimd
(
Host
host
)
d
=
do
manager'
<-
newManager
tlsManagerSettings
let
env'
=
mkClientEnv
manager'
(
BaseUrl
Https
(
T
.
unpack
host
)
443
""
)
let
env
=
env'
{
makeClientRequest
=
\
burl
req
->
(
defaultMakeClientRequest
burl
req
)
{
redirectCount
=
0
}
}
eRes
<-
runClientM
(
codimdAPINew
d
)
env
pure
$
case
eRes
of
-- NOTE We actually expect a redirect here (a 302 with the new
-- page's URL). Hence we expect a `Left FailureResponse` because
-- we have set `redirectCount = 0` above.
Left
(
FailureResponse
_req
(
Response
{
responseHeaders
}))
->
case
Map
.
lookup
"location"
(
Map
.
fromList
$
toList
responseHeaders
)
of
Nothing
->
Left
"Cannot find 'Location' header in response"
Just
loc
->
Right
$
TE
.
decodeUtf8
loc
err
->
Left
$
"Error creating codimd document: "
<>
show
err
src/Gargantext/Utils/Servant.hs
View file @
0d5ca418
...
...
@@ -4,6 +4,7 @@ import qualified Data.ByteString.Lazy.Char8 as BSC
import
Data.Csv
(
defaultEncodeOptions
,
encodeByNameWith
,
encodeDefaultOrderedByName
,
header
,
namedRecord
,
(
.=
),
DefaultOrdered
,
EncodeOptions
(
..
),
NamedRecord
,
Quoting
(
QuoteNone
),
ToNamedRecord
)
import
qualified
Data.Map.Strict
as
Map
import
qualified
Data.Text
as
T
import
qualified
Data.Text.Encoding
as
TE
import
Gargantext.API.Ngrams.Types
(
mSetToList
,
NgramsRepoElement
(
..
),
NgramsTableMap
,
NgramsTerm
(
..
),
unNgramsTerm
)
import
Gargantext.Core.Types.Main
(
ListType
(
..
))
import
Network.HTTP.Media
((
//
),
(
/:
))
...
...
@@ -18,7 +19,10 @@ instance Accept CSV where
contentType
_
=
"text"
//
"csv"
/:
(
"charset"
,
"utf-8"
)
instance
(
DefaultOrdered
a
,
ToNamedRecord
a
)
=>
MimeRender
CSV
[
a
]
where
mimeRender
_
val
=
encodeDefaultOrderedByName
val
mimeRender
_
=
encodeDefaultOrderedByName
instance
MimeRender
CSV
T
.
Text
where
mimeRender
_
=
BSC
.
fromStrict
.
TE
.
encodeUtf8
-- CSV:
-- header: status\tlabel\tforms
...
...
@@ -49,3 +53,16 @@ instance Read a => MimeUnrender CSV a where
--instance ToNamedRecord a => MimeRender CSV [a] where
-- mimeRender _ val = encode val
----------------------------
data
Markdown
=
Markdown
instance
Accept
Markdown
where
contentType
_
=
"text"
//
"markdown"
instance
MimeRender
Markdown
T
.
Text
where
mimeRender
_
=
BSC
.
fromStrict
.
TE
.
encodeUtf8
instance
MimeUnrender
Markdown
T
.
Text
where
mimeUnrender
_
=
Right
.
TE
.
decodeUtf8
.
BSC
.
toStrict
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment