{-# LANGUAGE PatternSynonyms #-} {-# LANGUAGE ForeignFunctionInterface #-} {-# LANGUAGE JavaScriptFFI #-} -- For HasCallStack compatibility {-# LANGUAGE ImplicitParams, ConstraintKinds, KindSignatures #-} module GHCJS.DOM.JSFFI.Generated.SecurityPolicy (js_allowsConnectionTo, allowsConnectionTo, allowsConnectionTo_, js_allowsFontFrom, allowsFontFrom, allowsFontFrom_, js_allowsFormAction, allowsFormAction, allowsFormAction_, js_allowsFrameFrom, allowsFrameFrom, allowsFrameFrom_, js_allowsImageFrom, allowsImageFrom, allowsImageFrom_, js_allowsMediaFrom, allowsMediaFrom, allowsMediaFrom_, js_allowsObjectFrom, allowsObjectFrom, allowsObjectFrom_, js_allowsPluginType, allowsPluginType, allowsPluginType_, js_allowsScriptFrom, allowsScriptFrom, allowsScriptFrom_, js_allowsStyleFrom, allowsStyleFrom, allowsStyleFrom_, js_getAllowsEval, getAllowsEval, js_getAllowsInlineScript, getAllowsInlineScript, js_getAllowsInlineStyle, getAllowsInlineStyle, js_getIsActive, getIsActive, js_getReportURIs, getReportURIs, getReportURIsUnsafe, getReportURIsUnchecked, SecurityPolicy(..), gTypeSecurityPolicy) where import Prelude ((.), (==), (>>=), return, IO, Int, Float, Double, Bool(..), Maybe, maybe, fromIntegral, round, fmap, Show, Read, Eq, Ord) import qualified Prelude (error) import Data.Typeable (Typeable) import GHCJS.Types (JSVal(..), JSString) import GHCJS.Foreign (jsNull) import GHCJS.Foreign.Callback (syncCallback, asyncCallback, syncCallback1, asyncCallback1, syncCallback2, asyncCallback2, OnBlocked(..)) import GHCJS.Marshal (ToJSVal(..), FromJSVal(..)) import GHCJS.Marshal.Pure (PToJSVal(..), PFromJSVal(..)) import Control.Monad (void) import Control.Monad.IO.Class (MonadIO(..)) import Data.Int (Int64) import Data.Word (Word, Word64) import Data.Maybe (fromJust) import GHCJS.DOM.Types import Control.Applicative ((<$>)) import GHCJS.DOM.EventTargetClosures (EventName, unsafeEventName) import GHCJS.DOM.JSFFI.Generated.Enums foreign import javascript unsafe "($1[\"allowsConnectionTo\"]($2) ? 1 : 0)" js_allowsConnectionTo :: SecurityPolicy -> JSString -> IO Bool -- | allowsConnectionTo :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m Bool allowsConnectionTo self url = liftIO (js_allowsConnectionTo (self) (toJSString url)) -- | allowsConnectionTo_ :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m () allowsConnectionTo_ self url = liftIO (void (js_allowsConnectionTo (self) (toJSString url))) foreign import javascript unsafe "($1[\"allowsFontFrom\"]($2) ? 1 : 0)" js_allowsFontFrom :: SecurityPolicy -> JSString -> IO Bool -- | allowsFontFrom :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m Bool allowsFontFrom self url = liftIO (js_allowsFontFrom (self) (toJSString url)) -- | allowsFontFrom_ :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m () allowsFontFrom_ self url = liftIO (void (js_allowsFontFrom (self) (toJSString url))) foreign import javascript unsafe "($1[\"allowsFormAction\"]($2) ? 1 : 0)" js_allowsFormAction :: SecurityPolicy -> JSString -> IO Bool -- | allowsFormAction :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m Bool allowsFormAction self url = liftIO (js_allowsFormAction (self) (toJSString url)) -- | allowsFormAction_ :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m () allowsFormAction_ self url = liftIO (void (js_allowsFormAction (self) (toJSString url))) foreign import javascript unsafe "($1[\"allowsFrameFrom\"]($2) ? 1 : 0)" js_allowsFrameFrom :: SecurityPolicy -> JSString -> IO Bool -- | allowsFrameFrom :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m Bool allowsFrameFrom self url = liftIO (js_allowsFrameFrom (self) (toJSString url)) -- | allowsFrameFrom_ :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m () allowsFrameFrom_ self url = liftIO (void (js_allowsFrameFrom (self) (toJSString url))) foreign import javascript unsafe "($1[\"allowsImageFrom\"]($2) ? 1 : 0)" js_allowsImageFrom :: SecurityPolicy -> JSString -> IO Bool -- | allowsImageFrom :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m Bool allowsImageFrom self url = liftIO (js_allowsImageFrom (self) (toJSString url)) -- | allowsImageFrom_ :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m () allowsImageFrom_ self url = liftIO (void (js_allowsImageFrom (self) (toJSString url))) foreign import javascript unsafe "($1[\"allowsMediaFrom\"]($2) ? 1 : 0)" js_allowsMediaFrom :: SecurityPolicy -> JSString -> IO Bool -- | allowsMediaFrom :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m Bool allowsMediaFrom self url = liftIO (js_allowsMediaFrom (self) (toJSString url)) -- | allowsMediaFrom_ :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m () allowsMediaFrom_ self url = liftIO (void (js_allowsMediaFrom (self) (toJSString url))) foreign import javascript unsafe "($1[\"allowsObjectFrom\"]($2) ? 1 : 0)" js_allowsObjectFrom :: SecurityPolicy -> JSString -> IO Bool -- | allowsObjectFrom :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m Bool allowsObjectFrom self url = liftIO (js_allowsObjectFrom (self) (toJSString url)) -- | allowsObjectFrom_ :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m () allowsObjectFrom_ self url = liftIO (void (js_allowsObjectFrom (self) (toJSString url))) foreign import javascript unsafe "($1[\"allowsPluginType\"]($2) ? 1 : 0)" js_allowsPluginType :: SecurityPolicy -> JSString -> IO Bool -- | allowsPluginType :: (MonadIO m, ToJSString type') => SecurityPolicy -> type' -> m Bool allowsPluginType self type' = liftIO (js_allowsPluginType (self) (toJSString type')) -- | allowsPluginType_ :: (MonadIO m, ToJSString type') => SecurityPolicy -> type' -> m () allowsPluginType_ self type' = liftIO (void (js_allowsPluginType (self) (toJSString type'))) foreign import javascript unsafe "($1[\"allowsScriptFrom\"]($2) ? 1 : 0)" js_allowsScriptFrom :: SecurityPolicy -> JSString -> IO Bool -- | allowsScriptFrom :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m Bool allowsScriptFrom self url = liftIO (js_allowsScriptFrom (self) (toJSString url)) -- | allowsScriptFrom_ :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m () allowsScriptFrom_ self url = liftIO (void (js_allowsScriptFrom (self) (toJSString url))) foreign import javascript unsafe "($1[\"allowsStyleFrom\"]($2) ? 1 : 0)" js_allowsStyleFrom :: SecurityPolicy -> JSString -> IO Bool -- | allowsStyleFrom :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m Bool allowsStyleFrom self url = liftIO (js_allowsStyleFrom (self) (toJSString url)) -- | allowsStyleFrom_ :: (MonadIO m, ToJSString url) => SecurityPolicy -> url -> m () allowsStyleFrom_ self url = liftIO (void (js_allowsStyleFrom (self) (toJSString url))) foreign import javascript unsafe "($1[\"allowsEval\"] ? 1 : 0)" js_getAllowsEval :: SecurityPolicy -> IO Bool -- | getAllowsEval :: (MonadIO m) => SecurityPolicy -> m Bool getAllowsEval self = liftIO (js_getAllowsEval (self)) foreign import javascript unsafe "($1[\"allowsInlineScript\"] ? 1 : 0)" js_getAllowsInlineScript :: SecurityPolicy -> IO Bool -- | getAllowsInlineScript :: (MonadIO m) => SecurityPolicy -> m Bool getAllowsInlineScript self = liftIO (js_getAllowsInlineScript (self)) foreign import javascript unsafe "($1[\"allowsInlineStyle\"] ? 1 : 0)" js_getAllowsInlineStyle :: SecurityPolicy -> IO Bool -- | getAllowsInlineStyle :: (MonadIO m) => SecurityPolicy -> m Bool getAllowsInlineStyle self = liftIO (js_getAllowsInlineStyle (self)) foreign import javascript unsafe "($1[\"isActive\"] ? 1 : 0)" js_getIsActive :: SecurityPolicy -> IO Bool -- | getIsActive :: (MonadIO m) => SecurityPolicy -> m Bool getIsActive self = liftIO (js_getIsActive (self)) foreign import javascript unsafe "$1[\"reportURIs\"]" js_getReportURIs :: SecurityPolicy -> IO (Nullable DOMStringList) -- | getReportURIs :: (MonadIO m) => SecurityPolicy -> m (Maybe DOMStringList) getReportURIs self = liftIO (nullableToMaybe <$> (js_getReportURIs (self))) -- | getReportURIsUnsafe :: (MonadIO m, HasCallStack) => SecurityPolicy -> m DOMStringList getReportURIsUnsafe self = liftIO ((nullableToMaybe <$> (js_getReportURIs (self))) >>= maybe (Prelude.error "Nothing to return") return) -- | getReportURIsUnchecked :: (MonadIO m) => SecurityPolicy -> m DOMStringList getReportURIsUnchecked self = liftIO (fromJust . nullableToMaybe <$> (js_getReportURIs (self)))