XmlData: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Added resource download)
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 4: Line 4:
{| style="background: #F9F9F9; border: 1px solid #AAA; padding: 5px; width: 250px; float:right;"
{| style="background: #F9F9F9; border: 1px solid #AAA; padding: 5px; width: 250px; float:right;"
|-
|-
| colspan="2" style="text-align: center;"|'''xmlData v1.0'''
| colspan="2" style="text-align: center;"|'''xmlData v1.1'''
|-
|-
| colspan="2" align="center" |{{#if: {{{image|}}}|{{{image}}}}}
| colspan="2" align="center" |{{#if: {{{image|}}}|{{{image}}}}}
Line 26: Line 26:


== Download ==
== Download ==
'''Note: You have to put all the files of the .zip into a folder called "xmlData" and then upload the folder to your server!'''<br>
Download can be found at the [https://community.multitheftauto.com/index.php?p=resources&s=details&id=16187 MTA Community Page].<br>
Download can be found at the [https://community.multitheftauto.com/index.php?p=resources&s=details&id=16187 MTA Community Page].<br>
Resource developed by: [https://community.multitheftauto.com/index.php?p=profile&id=477820 Ceeser]
Resource developed by: [https://community.multitheftauto.com/index.php?p=profile&id=477820 Ceeser]
Line 95: Line 96:
In case you have any kind of userdata it will output warnings in the debugscript - you should fix that by removing all userdata from the input table, because: Any Userdata is temporary. It will change after a script restart, reconnect, server restart.. or even while a resource is running/ you are playing.
In case you have any kind of userdata it will output warnings in the debugscript - you should fix that by removing all userdata from the input table, because: Any Userdata is temporary. It will change after a script restart, reconnect, server restart.. or even while a resource is running/ you are playing.


== See Also ==
{{Template:Shared_xml_functions}}


[[Category:Resource]]
[[Category:Resource]]

Latest revision as of 16:35, 13 September 2019

xmlData v1.1
Status: Up to date
Latest Release: 13.09.2019
Working on: MTA v1.5.7


Resource Information

This resource let you save and load data in an XML File.
It's an easy to use resource, providing 3 exported functions.


Download

Note: You have to put all the files of the .zip into a folder called "xmlData" and then upload the folder to your server!
Download can be found at the MTA Community Page.
Resource developed by: Ceeser


Exported functions

Note: These functions are available for Server and Client


Security

Next to the point of easy access this resource has its focus on security. You can specify how much protection you want to have for your data:

  • Server protection - With this only the server that has created the file will be able to read/modify/delete it.
  • Encryption - With this the stored data will be encrypted by a generated key, making it unreadable and unmodifyable by humans.
  • Resource protection - With this only the resource that has created the file will be able to read/modify/delete it.

Note: No matter what settings you use - no server will have access to any file without its specific filename.


Key generation / Data encryption

If you want to save your data encrypted the script will generate a random key and stores it, so that the file can get read again. If you enable server protection for the file, the key can also only be read by the same server that has generated the data file. The same also goes for the resource protection.


Security Levels

Instead of manually adding bool parameters to the functions you can also just pass the security level you want to use for each function:

  • 0 - No protection (any server, any resource or humans could read/modify)
  • 1 - Very low protection (creator resource on any server or humans could read/modify)
  • 2 - Very low protection (any resource on any server could read/modify, humans cant)
  • 3 - Low protection (only creator resource on any server could read/modify, humans cant)
  • 4 - Medium protection (any resource on the creator server or humans could read/modify) - DEFAULT
  • 5 - Medium protection (only creator resource on the creator server or humans could read/modify)
  • 6 - High protection (any resource on the creator server could read/modify, humans cant)
  • 7 - Very high protection (only creator resource on creator server could read/modify, humans cant.


Simplifying the export

For simplifying reasons I recommend the use this shortcut variable to call the exported functions:

local xml = exports.xmlData -- Define this variable at the top of your script

-- And then use it like this for example:
xml:xmlSaveData("yourFileName", yourData)


Variables and Specified Names

In the exported functions are some names which I will explain here to keep the function pages as clean and small as possible.

serverProtected / Creator-Server

With creator-server I mean the server that has created a file. So if a file is serverProtected only the server that called the function is able to read/modify/delete it.
This includes client-side: The function call have been on the client-side of any server, so the link to the server exist anyways.

resourceProtected / Creator-Resource

With creator-resource I mean the resource that has created a file. Example how it works: If you call xmlSaveData with resourceProtection from resource "login", only "login" will then be able to read that xml file.
If you don't use serverProtection in combination to this, every "login" resource on any server COULD read that file if it calls xmlLoadData with the correct file name.


Data type warning

This resource will save everything, no matter what you give as data input.
So be sure that there is no userdata stored inside the table you are passing to the xmlSaveData function. In case you have any kind of userdata it will output warnings in the debugscript - you should fix that by removing all userdata from the input table, because: Any Userdata is temporary. It will change after a script restart, reconnect, server restart.. or even while a resource is running/ you are playing.


See Also