event.gno

4.87 Kb · 81 lines
 1package event
 2
 3import (
 4	zenaov1 "gno.land/p/zenao/zenao/v1"
 5	"gno.land/p/zenao/events"
 6	"gno.land/p/zenao/basedao"
 7	"gno.land/p/zenao/daokit"
 8	"gno.land/p/zenao/daocond"
 9	"gno.land/r/demo/profile"
10	"gno.land/r/zenao/eventreg"
11	"gno.land/r/zenao/social_feed"
12)
13
14var (
15	DAO      daokit.DAO
16	localDAO daokit.DAO
17
18	event  *events.Event // XXX: needed for backward compatibility with frontend queries
19	feedId string        // XXX: workaround for "unexpected zero object id" issue
20)
21
22func init() {
23	// XXX: workaround for "unexpected zero object id" issue
24	feedId = social_feed.NewFeed(cross, "main", false, feedAuth)
25}
26
27func init() {
28	conf := events.Config{
29		Organizers: []string{"gno.land/r/zenao/users/u514"},
30		Gatekeepers: []string{},
31		Title: "Planet Blue",
32		Description: "Planet Blue - A Community Festival\n-\n\nIn collaboration with SVARAM, Auroville\n\n🗓 12th October 2025 \n\n🕙 10AM - 8PM\n\n📍SVARAM Sound Garden, Auroville \n\n• ₹500 festival entry\n• Donation Base for AUROVILLIANS \n\n\n\n![IMG_5417.jpeg](ipfs://bafybeiaw4y37stbfnub2mdklnbgmmxx3aiayukhsic32fy5bvaekiolpqq)\n\n\n⸻\n\n✦ Welcome to Planet Blue ✦\n\nAt Planet Blue, we’re not just invited to enjoy the festivities - we encourage to become the festivity.\n\nTomorrow, we celebrate community, creativity, sound, and soul.\nTogether we are manifesting a playground of movement, music, art, and presence —\u003e  co-created by the people of Auroville and beyond.\n\n⸻\n\n🎶 Music Lineup:\n-\n\n🌞 Morning\n\n     AM 10 - 10:30 —\u003e Aptin\n     (Experimental Piano)\n\n     10:45 - 11:15 —\u003e Onyx\n      (AV - Youth)\n\n     11:30 - 12:30 —\u003e Vaadya  Samvadam \n     (Carnatic Music)\n             \n🌤️ Afternoon\n \n    PM 12:45 - 1:45 —\u003e Luna \u0026 The Murmurs \n    (Indie Folk)\n\n    14:00- 15:00 —\u003e Gory \n     (Gypsy Rock) \n\n      15:15-16:15 —\u003e YAR \n     (Sufi Music)\n\n🌙 Evening\n      \n     17:00 - 18:30 —\u003e  Shristree \n\n     18:30 - 20:00 —\u003e Galactic Falcon \n\n           Live Acoustic Jam\n\n⸻\n\n🎨 Workshops \u0026 Experiences:\n-\n\n• Aerial Circus – Kalou \n\n• Laughing Yoga – Marnix\n\n• Collective Canvas - Rishi\n\n• Fire Performance – Tiago\n\n• Ammavin Samayal - Authentic Tamilian  Village Feast \n\n• Cacao Ceremony – Tiago\n\n⸻\n\nSunday Sandhai: Food Stalls \u0026 Flea Market\n  \n • Boldstree - Jewellery\n\n • Ruthick - Tote Bags\n\n • Vicky - Clothing\n\n • Rishi - Paintings \u0026 Postcards\n\n • WrapGuru - Delicious Wraps Stall\n\n • Tamilian Sweets\n\n⸻\n\n🌍 Planet Blue Believes\n-\n\nWe are born to create, moving through the world, we tell stories and exchange skills, knowledge, \u0026 culture.\n\nEvery body has something to share, and when that sharing is compassionate \u0026 authentic, we resonate in unity - common unity.\n\nPlanet Blue manifests itself in us, an eternal space, to experience - in reality - dreams emerging from a collective of dreamers.\n\n I can’t say what we believe as Planet Blue, because Planet Blue doesn’t believe. It lives and breathes through us in every moment of every day, and when the conditions present themselves, Planet Blue calls for creatives to collide.\n\n⸻\n\n✧ If You Made it this Far ✧\n\n\nGet connected, what can you share, how can you be involved.\n\nIf you wish to host a workshop, share arts and crafts, do a performance, get in touch with us and let us know what you need. \n\n☎️ Ajay - +91 97391 97469\n\n☎️ Milan - +61 466277513\n⸻\n\n🌐 Google Maps link : https://maps.app.goo.gl/5oGvPhz8FqPQrvcJ8",
33		ImageURI: "ipfs://bafybeiar6icwo7njt3ui7hfm45itqti2k3o6m4z63emac4w6yhiomvcdqi",
34		StartDate: 1760243400,
35		EndDate: 1760279400,
36		Capacity: 250,
37		Discoverable: true,
38		GetProfileString: profile.GetStringField,
39		SetProfileString: profile.SetStringField,
40		ZenaoAdminAddr: "g1djrkw9tf4px658j85cc6fhsvm50uf9s0g6kfsm",
41		Location: &zenaov1.EventLocation{
42			Address: &zenaov1.AddressGeo{
43				Address: "Svaram Musical Instruments - Irumbai - Rayapudupakkam (via) Edayanchavady road, 605111 Auroville, Inde",
44				Lat: 12.014797,
45				Lng: 79.80135,
46			},
47		},
48		ParticipationPubkey: "",
49		CrossFn: crossFn,
50		SetImplemFn: setImplem,
51		FeedId: feedId,
52		PrivateVarName: "event",
53	}
54	event = events.NewEvent(&conf)
55	eventreg.Register(cross, func() *zenaov1.EventInfo { return event.Info() })
56}
57
58func Vote(_ realm, proposalID uint64, vote daocond.Vote) {
59	localDAO.Vote(proposalID, vote)
60}
61
62func Execute(_ realm, proposalID uint64) {
63	localDAO.Execute(proposalID)
64}
65
66func Render(path string) string {
67	return localDAO.Render(path)
68}
69
70func feedAuth() (string, bool) {
71	caller := event.DAOPrivate.CallerID() // XXX: this should be upgradable
72	return caller, basedao.MustGetMembersViewExtension(localDAO).IsMember(caller)
73}
74
75func crossFn(_ realm, cb func()) {
76	cb()
77}
78
79func setImplem(newLocalDAO daokit.DAO, newDAO daokit.DAO) {
80	localDAO, DAO = newLocalDAO, newDAO
81}