Files
edgevpn/cmd/api.go
Ettore Di Giacinto aaa97f3e7b ⚙️ Add summary to client API
2022-02-12 00:35:28 +01:00

60 lines
1.7 KiB
Go

// Copyright © 2021 Ettore Di Giacinto <mudler@mocaccino.org>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, see <http://www.gnu.org/licenses/>.
package cmd
import (
"context"
"time"
"github.com/mudler/edgevpn/api"
"github.com/mudler/edgevpn/pkg/node"
"github.com/urfave/cli"
)
func API() cli.Command {
return cli.Command{
Name: "api",
Usage: "Starts an http server to display network informations",
Description: `Start listening locally, providing an API for the network.
A simple UI interface is available to display network data.`,
UsageText: "edgevpn api",
Flags: append(CommonFlags,
&cli.StringFlag{
Name: "listen",
Value: ":8080",
Usage: "Listening address. To listen to a socket, prefix with unix://, e.g. unix:///socket.path",
},
),
Action: func(c *cli.Context) error {
o, _, ll := cliToOpts(c)
e, err := node.New(o...)
if err != nil {
return err
}
displayStart(ll)
ctx := context.Background()
// Start the node to the network, using our ledger
if err := e.Start(ctx); err != nil {
return err
}
return api.API(ctx, c.String("listen"), 5*time.Second, 20*time.Second, e)
},
}
}