mirror of
https://github.com/safing/portmaster
synced 2025-04-19 18:39:10 +00:00
* Move portbase into monorepo * Add new simple module mgr * [WIP] Switch to new simple module mgr * Add StateMgr and more worker variants * [WIP] Switch more modules * [WIP] Switch more modules * [WIP] swtich more modules * [WIP] switch all SPN modules * [WIP] switch all service modules * [WIP] Convert all workers to the new module system * [WIP] add new task system to module manager * [WIP] Add second take for scheduling workers * [WIP] Add FIXME for bugs in new scheduler * [WIP] Add minor improvements to scheduler * [WIP] Add new worker scheduler * [WIP] Fix more bug related to new module system * [WIP] Fix start handing of the new module system * [WIP] Improve startup process * [WIP] Fix minor issues * [WIP] Fix missing subsystem in settings * [WIP] Initialize managers in constructor * [WIP] Move module event initialization to constrictors * [WIP] Fix setting for enabling and disabling the SPN module * [WIP] Move API registeration into module construction * [WIP] Update states mgr for all modules * [WIP] Add CmdLine operation support * Add state helper methods to module group and instance * Add notification and module status handling to status package * Fix starting issues * Remove pilot widget and update security lock to new status data * Remove debug logs * Improve http server shutdown * Add workaround for cleanly shutting down firewall+netquery * Improve logging * Add syncing states with notifications for new module system * Improve starting, stopping, shutdown; resolve FIXMEs/TODOs * [WIP] Fix most unit tests * Review new module system and fix minor issues * Push shutdown and restart events again via API * Set sleep mode via interface * Update example/template module * [WIP] Fix spn/cabin unit test * Remove deprecated UI elements * Make log output more similar for the logging transition phase * Switch spn hub and observer cmds to new module system * Fix log sources * Make worker mgr less error prone * Fix tests and minor issues * Fix observation hub * Improve shutdown and restart handling * Split up big connection.go source file * Move varint and dsd packages to structures repo * Improve expansion test * Fix linter warnings * Fix interception module on windows * Fix linter errors --------- Co-authored-by: Vladimir Stoilov <vladimir@safing.io>
113 lines
3.2 KiB
Go
113 lines
3.2 KiB
Go
package broadcasts
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/safing/portmaster/base/api"
|
|
"github.com/safing/portmaster/base/database"
|
|
"github.com/safing/portmaster/base/database/accessor"
|
|
)
|
|
|
|
func registerAPIEndpoints() error {
|
|
if err := api.RegisterEndpoint(api.Endpoint{
|
|
Path: `broadcasts/matching-data`,
|
|
Read: api.PermitAdmin,
|
|
StructFunc: handleMatchingData,
|
|
Name: "Get Broadcast Notifications Matching Data",
|
|
Description: "Returns the data used by the broadcast notifications to match the instance.",
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := api.RegisterEndpoint(api.Endpoint{
|
|
Path: `broadcasts/reset-state`,
|
|
Write: api.PermitAdmin,
|
|
WriteMethod: http.MethodPost,
|
|
ActionFunc: handleResetState,
|
|
Name: "Resets the Broadcast Notification States",
|
|
Description: "Delete the cache of Broadcast Notifications, making them appear again.",
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := api.RegisterEndpoint(api.Endpoint{
|
|
Path: `broadcasts/simulate`,
|
|
Write: api.PermitAdmin,
|
|
WriteMethod: http.MethodPost,
|
|
ActionFunc: handleSimulate,
|
|
Name: "Simulate Broadcast Notifications",
|
|
Description: "Test broadcast notifications by sending a valid source file in the body.",
|
|
Parameters: []api.Parameter{
|
|
{
|
|
Method: http.MethodPost,
|
|
Field: "state",
|
|
Value: "true",
|
|
Description: "Check against state when deciding to display a broadcast notification. Acknowledgements are always saved.",
|
|
},
|
|
},
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func handleMatchingData(ar *api.Request) (i interface{}, err error) {
|
|
return collectData(), nil
|
|
}
|
|
|
|
func handleResetState(ar *api.Request) (msg string, err error) {
|
|
err = db.Delete(broadcastStatesDBKey)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return "Reset complete.", nil
|
|
}
|
|
|
|
func handleSimulate(ar *api.Request) (msg string, err error) {
|
|
// Parse broadcast notification data.
|
|
broadcasts, err := parseBroadcastSource(ar.InputData)
|
|
if err != nil {
|
|
return "", fmt.Errorf("failed to parse broadcast notifications update: %w", err)
|
|
}
|
|
|
|
// Get and marshal matching data.
|
|
matchingData := collectData()
|
|
matchingJSON, err := json.Marshal(matchingData)
|
|
if err != nil {
|
|
return "", fmt.Errorf("failed to marshal broadcast notifications matching data: %w", err)
|
|
}
|
|
matchingDataAccessor := accessor.NewJSONBytesAccessor(&matchingJSON)
|
|
|
|
var bss *BroadcastStates
|
|
if ar.URL.Query().Get("state") == "true" {
|
|
// Get broadcast notification states.
|
|
bss, err = getBroadcastStates()
|
|
if err != nil {
|
|
if !errors.Is(err, database.ErrNotFound) {
|
|
return "", fmt.Errorf("failed to get broadcast notifications states: %w", err)
|
|
}
|
|
bss = newBroadcastStates()
|
|
}
|
|
}
|
|
|
|
// Go through all broadcast nofications and check if they match.
|
|
var results []string
|
|
for _, bn := range broadcasts.Notifications {
|
|
err := handleBroadcast(bn, matchingDataAccessor, bss)
|
|
switch {
|
|
case err == nil:
|
|
results = append(results, fmt.Sprintf("%30s: displayed", bn.id))
|
|
case errors.Is(err, ErrSkip):
|
|
results = append(results, fmt.Sprintf("%30s: %s", bn.id, err))
|
|
default:
|
|
results = append(results, fmt.Sprintf("FAILED %23s: %s", bn.id, err))
|
|
}
|
|
}
|
|
|
|
return strings.Join(results, "\n"), nil
|
|
}
|