2021-12-26 18:58:05 +00:00
//https://github.com/GooseMod/GooseMod/wiki/Stuck-Updater-or-Blank-Window-Fix
/ *
2022-07-04 14:39:22 +00:00
Copyright 2022 GooseMod
2021-12-26 18:58:05 +00:00
Permission is hereby granted , free of charge , to any person obtaining a copy of this software and associated documentation files ( the "Software" ) , to deal in the Software without restriction , including without limitation the rights to use , copy , modify , merge , publish , distribute , sublicense , and / or sell copies of the Software , and to permit persons to whom the Software is furnished to do so , subject to the following conditions :
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software .
THE SOFTWARE IS PROVIDED "AS IS" , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY , FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM , DAMAGES OR OTHER LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE , ARISING FROM , OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE .
* /
2021-12-26 21:41:09 +00:00
import electron from "electron" ;
2022-04-18 11:03:26 +00:00
import { getConfig } from "../utils" ;
2021-12-26 18:58:05 +00:00
const otherMods = {
2022-03-04 17:53:18 +00:00
generic : {
electronProxy : require ( "util" ) . types . isProxy ( electron ) // Many modern mods overwrite electron with a proxy with a custom BrowserWindow (copied from PowerCord)
}
2021-12-26 21:41:09 +00:00
} ;
2021-12-26 18:58:05 +00:00
const unstrictCSP = ( ) = > {
2022-03-04 17:53:18 +00:00
console . log ( "Setting up CSP unstricter..." ) ;
2021-12-26 18:58:05 +00:00
2022-03-04 17:53:18 +00:00
const cspAllowAll = [ "connect-src" , "style-src" , "img-src" , "font-src" ] ;
2021-12-26 18:58:05 +00:00
2022-03-04 17:53:18 +00:00
const corsAllowUrls = [
"https://github.com/GooseMod/GooseMod/releases/download/dev/index.js" ,
"https://github-releases.githubusercontent.com/" ,
"https://api.goosemod.com/inject.js" ,
"https://raw.githubusercontent.com/Cumcord/Cumcord/stable/dist/build.js" ,
"https://raw.githubusercontent.com/Cumcord/Cumcord/master/dist/build.js" ,
2022-07-12 14:10:41 +00:00
"https://raw.githubusercontent.com/FlickerMod/dist/main/build.js" ,
2022-07-18 15:13:52 +00:00
"https://raw.githubusercontent.com/Cordwood/builds/master/index.js"
2022-03-04 17:53:18 +00:00
] ;
2021-12-26 18:58:05 +00:00
2022-03-04 17:53:18 +00:00
electron . session . defaultSession . webRequest . onHeadersReceived ( ( { responseHeaders , url } , done ) = > {
let csp = responseHeaders ! [ "content-security-policy" ] ;
2021-12-26 18:58:05 +00:00
2022-03-04 17:53:18 +00:00
if ( otherMods . generic . electronProxy ) {
// Since patch v16, override other mod's onHeadersRecieved (Electron only allows 1 listener); because they rely on 0 CSP at all (GM just unrestricts some areas), remove it fully if we detect other mods
delete responseHeaders ! [ "content-security-policy" ] ;
csp = [ ] ;
2021-12-26 18:58:05 +00:00
}
2022-03-04 17:53:18 +00:00
if ( csp ) {
for ( let p of cspAllowAll ) {
csp [ 0 ] = csp [ 0 ] . replace ( ` ${ p } ` , ` ${ p } * blob: data: ` ) ; // * does not include data: URIs
}
2021-12-26 18:58:05 +00:00
2022-03-04 17:53:18 +00:00
// Fix Discord's broken CSP which disallows unsafe-inline due to having a nonce (which they don't even use?)
csp [ 0 ] = csp [ 0 ] . replace ( /'nonce-.*?' / , "" ) ;
}
2021-12-26 18:58:05 +00:00
2022-03-04 17:53:18 +00:00
if ( corsAllowUrls . some ( ( x ) = > url . startsWith ( x ) ) ) {
responseHeaders ! [ "access-control-allow-origin" ] = [ "*" ] ;
}
done ( { responseHeaders } ) ;
} ) ;
2021-12-26 21:41:09 +00:00
} ;
2022-04-18 11:03:26 +00:00
electron . app . whenReady ( ) . then ( async ( ) = > {
if ( await getConfig ( "armcordCSP" ) ) {
2022-03-04 17:53:18 +00:00
unstrictCSP ( ) ;
} else {
2022-07-04 14:39:22 +00:00
console . log ( "ArmCord CSP is disabled. The CSP should be managed by a third-party plugin(s)." ) ;
2022-03-04 17:53:18 +00:00
}
2021-12-26 21:41:09 +00:00
} ) ;