Sharing data between places

I think it should work like so:

GlobalDataStore DataStoreService:GetDataStore (
   string name,
   string scope = "global",
   int gameid = 0 -- default of 0 will just mean the current game
)

I think this should fail (error) when you don’t have read and/or write access to that datastore. As a consequence and because I think it would also lead to better structured code (e.g. you first check if you have permissions, and then you start obtaining the data store instead of the other way around), I think the DataStoreService should also have this method (rather than sticking it under GlobalDataStore):

DataStoreAccess DataStoreService:GetAccessAsync (
   string name,
   int gameid = 0
)

Where: (as @EchoReaper mentioned)

Enum DataStoreAccess:
   0: Enum.DataStoreAccess.None (default)
   1: Enum.DataStoreAccess.Read
   2: Enum.DataStoreAccess.ReadAndWrite

I personally believe that we should be able to manage the access rights through the website as well, since it seems like an ugly hack that you would have to do this in the command line in Studio while connected to your game. (Or you would need an if-statement in your game and perform the necessary operations every time a game server starts and the settings aren’t right, yikes.) However, if there will be methods for this, I think something like this would work: (partially from @EchoReaper again)

void GlobalDataStore:SetAccessAsync(
   DataStoreAccess access -- enum as depicted above
)
-- ^ This holds for all games that try to access this datastore,
-- unless they have been made an exception using the following:

void GlobalDataStore:SetAccessExceptionAsync(
   int gameid,
   DataStoreAccess access -- enum as depicted above
)

pairs<int gameid, DataStoreAccess access> GlobalDataStore:GetAccessExceptionsAsync(
   [ no parameters ]
)
-- ^ Example output: (when global setting is Enum.DataStoreAccess.None)
-- {
--    [123456] = Enum.DataStoreAccess.Read,
--    [654321] = Enum.DataStoreAccess.ReadAndWrite,
--    [112233] = Enum.DataStoreAccess.ReadAndWrite,
-- }
--
-- Where 123456, 654321 and 112233 are game ids.
-- 
-- If you try to set specific games with Enum.DataStoreAccess.None
-- in this example, they won't actually appear in this list, i.e.
-- it will only show exceptions to the rule.

I think as a security measure, the SetAccessAsync method should automatically wipe the exceptions list when the default access type changes.

1 Like

Not necessary – you should just wrap :GetDataStore() in a pcall if you’re accessing another game’s DataStore so you’re only using one web request instead of two.

ReadAndWrite for every game under the sun? No. This is bad. The only thing that should be able to be set on a for-every-game-on-ROBLOX basis is Read.

Okay, but we can still have the method so you have a cleaner way of checking if you don’t want to do that.

Sure, I suppose. I think it’s still a valid way of doing things for the other two values for the enumerator.

To clarify, we’re talking about different kinds of sensitive data here. You’re talking about personally identifiable data that is disallowed by ROBLOX. I’m talking about in-game data representing, for example, a player’s inventory. It’s certainly conceivable that a game now exists or could be made wherein knowing your opponents inventory would give you an advantage over that opponent.

As I said, I am in support of this feature, but believe that the original recommended implementation requires minor tweaking to make it palatable.

No. That’s bad design – it’s a waste of a web request. We don’t have a GlobalDataStore:GetDoIHaveEnoughRequestsToUseSetAsync() do we? We use pcall. Why should we have a wasteful GetAccessAsync method when it doesn’t even coincide with the rest of the API?

1 Like

Alright alright, I give in. :stuck_out_tongue:

Disregard that part of my post, wrapping it in a pcall should work just fine if the errors are verbose enough.

Should also convert GDS:SetAccess to GDS:SetPublicReadable() and GDS:GetPublicReadable() since SetAccess can only toggle between PublicRead and default (entirely private) – Get/SetPublicReadable is more descriptive/appropriate.

I think it’s better for syntax consistency between methods to stick to the structure that I proposed, and also in case they want to add more modes now/in the future that can be set as global mode. (such as: that you can write but not overwrite keys, or that you can only write to keys that already exist, I don’t know.)

Either way, both my and your suggestion would be useful so they can choose either of them as far as I’m concerned.

The card is to see how much interest there is for this feature as a general concept, but the exact implementation on the card might not necessarily be the one that gets implemented if we choose to work on the feature, due to security, internal or technical reasons.

1 Like

No. Giving every game on ROBLOX write access to your place, regardless of restrictions, is a terrible idea – we just went over this. There is nothing else besides read, write, and none, so if writing isn’t an option, the only two possible options are public readable and not public readable.

One of the things i really want to do is incorporate shared data between all all my games,but right now my work around is using nodejs on a dedicated server to save/load json. i could use datastore inside a universe, but a universe only allows users to goto 1 specific place as the starting place, and unfortunately there is no way (that I’ve came across) that will let users “forward” to the game page they clicked “play” on. So a solution to this issue would be the ability to share a datastore without having the be in the same universe.

2 ways this can be developed
1: add a “group” datastore that all places developed by a group or on your profile share, and a “place” datastore that would be specific to that palce only.

2: have the option inside the configuration for the place to select what places share the same datastore (essentially like the universe, but dont force the users to goto a specific place when joining the game)

This system would allow me to not have to rely on hosting external services to get this to work, so it would save me a huge headache.

3 Likes

I agree with you on the feature request, but I’m curious about what it actually brings. Why do you share data between your places, and what kind of data are we talking about ?

one thing im currently doing with nodejs thats sharing data between all my places, is a shared “currency” so if a user donates to 1 game, they get the “currency” and they can use this currency on the other games to get special perks ingame.

another example usage could be if a user “buys” a tool, the tool can be shared across all the places that you put the script into. So they only have to buy the tool once.

There’s also another old thread that went into this:

Edit: Posts were merged into the original thread

1 Like