forked from PelicanPlatform/pelican
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdirector_serve.go
More file actions
97 lines (79 loc) · 3.29 KB
/
Copy pathdirector_serve.go
File metadata and controls
97 lines (79 loc) · 3.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/***************************************************************
*
* Copyright (C) 2024, Pelican Project, Morgridge Institute for Research
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
***************************************************************/
package launchers
import (
"context"
"fmt"
"net/url"
"github.com/gin-gonic/gin"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
"golang.org/x/sync/errgroup"
"github.com/pelicanplatform/pelican/config"
"github.com/pelicanplatform/pelican/database"
"github.com/pelicanplatform/pelican/director"
"github.com/pelicanplatform/pelican/metrics"
"github.com/pelicanplatform/pelican/param"
"github.com/pelicanplatform/pelican/server_structs"
"github.com/pelicanplatform/pelican/web_ui"
)
func DirectorServe(ctx context.Context, engine *gin.Engine, egrp *errgroup.Group) error {
log.Info("Initializing Director GeoIP database...")
director.InitializeGeoIPDB(ctx)
if err := database.InitServerDatabase(server_structs.DirectorType); err != nil {
return errors.Wrap(err, "failed to initialize server database")
}
director.ConfigFilteredServers()
director.LaunchTTLCache(ctx, egrp)
director.LaunchMapMetrics(ctx, egrp)
director.ConfigFilteredServers()
director.PeriodicFedDowntimeReload(ctx, egrp)
director.LaunchServerIOQuery(ctx, egrp)
director.LaunchRegistryPeriodicQuery(ctx, egrp)
if config.GetPreferredPrefix() == config.OsdfPrefix {
metrics.SetComponentHealthStatus(metrics.DirectorRegistry_Topology, metrics.StatusWarning, "Start requesting from topology, status unknown")
log.Info("Generating/advertising server ads from OSG topology service...")
// Get the ads from topology, populate the cache, and keep the cache
// updated with fresh info
if err := director.AdvertiseOSDF(ctx); err != nil {
return err
}
go director.PeriodicCacheReload(ctx)
}
// Configure the shortcut middleware to either redirect to a cache
// or to an origin
defaultResponse := param.Director_DefaultResponse.GetString()
if !(defaultResponse == "cache" || defaultResponse == "origin") {
return fmt.Errorf("the director's default response must either be set to 'cache' or 'origin',"+
" but you provided %q. Was there a typo?", defaultResponse)
}
log.Debugf("The director will redirect to %ss by default", defaultResponse)
if param.Director_SupportContactUrl.IsSet() {
_, err := url.Parse(param.Director_SupportContactUrl.GetString())
if err != nil {
return errors.Wrap(err, "invalid URL for Director.SupportContactUrl")
}
}
rootGroup := engine.Group("/", web_ui.ServerHeaderMiddleware)
director.RegisterDirectorOIDCAPI(rootGroup)
director.RegisterFedMetadata(rootGroup)
director.RegisterDirectorWebAPI(rootGroup)
engine.Use(director.ShortcutMiddleware(defaultResponse))
director.RegisterDirectorAPI(ctx, rootGroup)
return nil
}