Consider that I want to write an instant messaging application that user can send and receive files privately. I know, it's a good idea to store objects like images in Object Stores like Ceph or Minio, But how can I restrict access to files to the relevant users? Do I need check permission of any request to any file? If yes how can I integrate this authorization to Minio or Ceph. (Minio is preferred.)
User Data (object) Isolation on Instant Messaging
116 Views Asked by Hossein Nasr At
1
There are 1 best solutions below
Related Questions in AUTHORIZATION
- Using Flat Files for authorization instead of using database tables
- Restrinct action to one single PC under MVC C# web application?
- Outgoing WSS authorization from WebRequest C#
- User is authorised when using IE but not Chrome/Firefox
- C# "The underlying provider failed on Open."
- Can't deny access to role in web.config authorization element
- SonarQube LDAP authentication is not working
- Authorization Model: Context of Role?
- Best practice building login for Node.js using socket.io and express
- Where to apply domain level permissioning
- Should i do authorization on my Domain Services?
- Authorize user by retrieving credentials from LDAP and passing into OAuth 1.0a using Atlassian Stash REST API
- How to redirect to another page from OnAutherization Of MVC in angularjs
- AngularJS header authorization format in Interceptor
- Role concept in the authorization
Related Questions in INSTANT-MESSAGING
- UCWA: integrating advanced chat options
- Can I get all possible instant messaging apps for a specific contact?
- Is this correct way of including Quickblox SDK into to my existing android project?
- Android smack.util.StringUtil does not have parseBareAddress
- Create a link that will open Viber and WhatsApp and will send a message to me
- How to implement Instant Messaging in android using socket.io?
- User Data (object) Isolation on Instant Messaging
- Quickblox messaging fetch last n messages
- instant messaging with intel xdk receiving notification on new message
- transfer chat conversation on Openfire and anonymous login
- Android: How to incorporate Rich communication Services in Application
- Refreshing Database VB.NET
- Storing and managing Messages in ios
- navigate between conversations and see previous messages
- redis- Should I use redis to store chat messages?
Related Questions in CEPH
- Ceph- list object in a RADOS block device
- ImportError: module 'setuptools.dist' has no 'check_specifier' attribute
- CephFS Volume Mount Fails
- User Data (object) Isolation on Instant Messaging
- Ceph enters degraded state after Deis installation
- Mounting ceph fails with "mount error 5 = Input/output error"
- Persistent Storage (Gluster/Other storage) for Kubernetes
- disk plug cache after first time
- Data 100% unknown after Ceph Update
- Finding location of Files (Ceph)
- Kubernetes Ceph StorageClass with dynamic provisioning
- Spark - dynamic allocation - shuffle_1_0_0.index (No such file or directory)
- Rook and ceph on kubernetes
- Doing minor version update of Ceph cluster with ceph-ansible and rolling-update playbook
- MountVolume.SetUp failed for volume "rook-ceph-crash-collector-keyring" : secret "rook-ceph-crash-collector-keyring" not found
Related Questions in OBJECT-STORAGE
- What is configuartion required to get data from object storage by SWIFT in Spark
- Object Storage - Error when reading text file
- Object Storage - Can't access container in region "London"
- User Data (object) Isolation on Instant Messaging
- IBM Object Storage-How to make a File or a Container public accesible one?
- What is Object storage really?
- posting text from DataFrame to IBM PersonalityInsights API
- Make Full Disks read-only in swift object storage
- How to upload an image to IBM Cloud object storage (COS) using Node.js?
- IBM Cloud: How to create HMAC credentials for COS using Terraform?
- multiple destination for statsd in object-server.conf of swift open stack
- Multipart upload performance issues to Digital Ocean Spaces from browsers on Windows
- Is there a way to curl a file with spaces in its name *from IBM object storage (cleversafe)*?
- What's the underlying reason that object storage can not support edit/update/append file?
- What are the differences between Object Storages for example S3 and a columnar based Technology
Related Questions in MINIO
- User Data (object) Isolation on Instant Messaging
- Minio/AWS-S3 upload file using multipart
- Can't upload file through carrierwave fog-aws to minio (docker-compose)
- No such file or directory ENOENT, yet file exists
- MinIO change user credentials (secret key)
- How to use two different AWS S3 accounts with CarrierWave?
- Get list of objects from s3 bucket (min.io or amazon) using promise
- MinIO STS: cannot get temporary credentials
- Minio STS: provider jwt doesn't exist
- Minio unable to access bucket in another aws account
- Convert unit8array to "stream.Readable" or "Buffer" or "string"
- Spark history server with minIO: getting AmazonHttpClient: Unable to execute HTTP request: Connection refused
- Keycloak - Can you add custom claims to client credentials?
- Kubeflow: access denied to Minio artifacts from the pipeline (run) graph view
- Minio 403 Forbidden HEAD request using saveas (FileSaver.js)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
One Minio setup comes with a single access/secret key. The multi-user or other permission has to be done from you application environment.
We have documented few scenario on Multi-tenancy for applications guide. Also most of our community hangs on slack channel, feel free to join us.
Hope it helps.
Disclaimer: I work for Minio