aboutsummaryrefslogtreecommitdiff
path: root/zenserver
Commit message (Collapse)AuthorAgeFilesLines
...
* | Enable encryption on all platforms.Per Larsson2022-02-031-2/+2
| |
* | Minor cleanup of free functions.Per Larsson2022-02-038-68/+75
| |
* | Added encryption key/IV option in LUA.Per Larsson2022-02-031-0/+6
| |
* | Added AES encryption key/IV cli options.Per Larsson2022-02-035-12/+54
| |
* | Encrypt serialized auth state.Per Larsson2022-02-031-7/+77
| |
* | Overwrite existing refresh token.Per Larsson2022-02-021-1/+1
| |
* | Merged main.Per Larsson2022-02-0210-402/+1218
|\|
| * Some minor cleanupStefan Boberg2022-02-022-37/+21
| |
| * Mash -> MeshTrackerStefan Boberg2022-02-023-13/+19
| |
| * clang-formatStefan Boberg2022-02-022-9/+9
| |
| * Cache policy support (#47)mattpetersepic2022-02-014-345/+1161
| | | | | | | | | | | | | | | | Add HandleRpc methods for the remaining ICacheStore requests from unreal: PutCacheValues/GetCacheValues. We now have batched versions for PutCacheRecords,GetCacheRecords,PutCacheValues,GetCacheValues,GetCacheChunks. Add support for CachePolicy flags to all of these batched methods. * Add Batched PutCacheValues/GetCacheValues. Rename old GetCacheValues to GetCacheChunks. * HandleRpcGetCacheRecords: Receive a CacheRecordPolicy with each key, and skipdata on attachments we already have. * Changes to CachePolicy copied from Release-5.0 depot. Change serialization to use the key BasePolicy instead of DefaultValuePolicy. * GetChunks: Read CacheRecords from remote if necessary to find ContentId. Implement QueryLocal, StoreLocal, and SkipData.
| * Merge branch 'main' of https://github.com/EpicGames/zenStefan Boberg2022-01-307-257/+531
| |\
| | * Merge branch 'main' of https://github.com/EpicGames/zenStefan Boberg2022-01-287-255/+529
| | |\
| | * | Structured cache PUTs now preserve content type for binary and compressed binaryStefan Boberg2022-01-281-2/+2
| | | |
| * | | TraceInit can now be initialized with "None" tracing modeStefan Boberg2022-01-301-0/+4
| |/ /
* | | Changed OIDC token endpoint.Per Larsson2022-02-022-2/+2
| | |
* | | Removed unnecessary headers.Per Larsson2022-02-021-5/+1
| | |
* | | Added upstream auth config and removed the possibility to add endpoints via ↵Per Larsson2022-02-029-249/+192
| | | | | | | | | | | | REST.
* | | Parse expire time from OpenID refresh token and added OpenId token provider.Per Larsson2022-02-029-93/+134
| | |
* | | Moved cloud cache token provider out from options.Per Larsson2022-02-018-36/+54
| | |
* | | Refactored cloud cache access token provider.Per Larsson2022-02-018-69/+80
| | |
* | | Parital completed cloud cache token provider interface.Per Larsson2022-02-017-273/+197
| | |
* | | Merged main.Per Larsson2022-01-2811-367/+643
|\ \ \ | | |/ | |/|
| * | Compile fixMartin Ridgers2022-01-281-1/+0
| | |
| * | Rename Paylod to Value to match the client side: missing file from previous ↵Matt Peters2022-01-271-1/+1
| | | | | | | | | | | | commit.
| * | Rename Paylod to Value to match the client side. Rename PayloadId to ↵mattpetersepic2022-01-276-125/+131
| | | | | | | | | | | | ValueContentId where its a hash instead of an oid.
| * | Add batched CacheRecord put rpc (#38)mattpetersepic2022-01-272-17/+187
| | | | | | | | | * Add batched CacheRecord put rpc
| * | Handle HTTP port collisions when initializing server (#40)zousar2022-01-271-11/+20
| | |
| * | Implement SkipData,QueryLocal,StoreLocal for HandleRpcGetCacheRecords (#41)mattpetersepic2022-01-262-63/+118
| | | | | | | | | * Implement SkipData,QueryLocal,StoreLocal for HandleRpcGetCacheRecords.
| * | Implement SkipData,QueryLocal,StoreLocal for GET-verb CacheGet requests (#39)mattpetersepic2022-01-261-40/+75
| |/ | | | | * Implement SkipData,QueryLocal,StoreLocal for GET-verb CacheGet requests
| * Fixed issue with missing endpoint name when configuring upstream cache from Lua.Per Larsson2022-01-264-18/+33
| |
| * Temporary fix for ZEN_ASSERT(!Options.Name.empty()) failing when running as ↵Matt Peters2022-01-251-0/+4
| | | | | | | | a service.
| * Merge branch 'main' of https://github.com/EpicGames/zenStefan Boberg2022-01-255-190/+165
| |\
| | * Cachepolicy (#36)mattpetersepic2022-01-253-185/+146
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Copy CachePolicy implementation from UE5/Release-5.0. Add backwards compatability for clients and upstreams that are using the old protocol. * Add RefPtr templated move operator and constructor, so that RefPtr<const Foo*> A = std::move(RefPtr<Foo*>()) will do a move. * Fix broken CachePolicy tests and add tests for new Save/Load. * Remove TODO comments * CachePolicy Save/Load Fixes from codereview * Fix comment to match code change. * Remove backwards compatibility for CachePolicy change. Convert policy string tokens to PascalCase. Fix tests for new policy text. Change ParseCachePolicy to assert string is non-empty and always succeed. * Fix release build: use ZEN_WITH_TESTS define
| | * Mac compile fixMartin Ridgers2022-01-251-1/+1
| | |
| | * Command line paths containing whitespace were getting truncatedMartin Ridgers2022-01-251-4/+18
| | |
| * | Implemented support for storing compressed buffers as values in structured ↵Stefan Boberg2022-01-252-4/+14
| |/ | | | | | | cache store
* | Get access token from auth mgr.Per Larsson2022-01-287-11/+41
| |
* | Extended auth mgr to restore OpenID provider(s) and token(s).Per Larsson2022-01-284-16/+382
| |
* | Add OpenID auth to auth mgr.Per Larsson2022-01-263-9/+80
| |
* | Added auth manager with support for OIDC providers.Per Larsson2022-01-256-4/+155
|/
* Fixed missing object in project oplog response.Per Larsson2022-01-241-1/+5
|
* Refactored upstream cache to better handle different states in prep for ↵Per Larsson2022-01-2414-439/+804
| | | | dynamic auth tokens.
* Format fix.Per Larsson2022-01-226-22/+26
|
* Use ExtendablePathBuilderszousar2022-01-211-3/+3
| | | | Remove uses of non-extendable path builders to avoid limitations around path length outside of the low level file access layer.
* Fixed missing object in cache bucket manifest.Per Larsson2022-01-211-1/+5
|
* Added copyright headers to xmake.lua scriptsMartin Ridgers2022-01-201-0/+2
|
* Change default windows state dirzousar2022-01-181-42/+9
| | | | Default windows state dir now is C:\ProgramData\Epic\Zen\Data. Also functional for Windows Service unlike the MyDocuments directory. No longer attempt search for largest drive if MyDocuments is not available.
* IoRunner join error fixzousar2022-01-181-1/+4
| | | | Fix crash on shutdown if m_IoRunner was not joinable. Experienced when running windows service.
* Support chunk requests with no ValueId, and interpret them as requested for ↵mattpetersepic2022-01-171-22/+33
| | | | values put with the PutValue API, which sends a package with RawHash and RawSize on the root object. (#35)