{"id":15138514,"url":"https://github.com/emadalblueshi/object-storage-client","last_synced_at":"2025-10-12T15:36:25.765Z","repository":{"id":242743181,"uuid":"809897048","full_name":"EmadAlblueshi/object-storage-client","owner":"EmadAlblueshi","description":"Object storage client based on Vert.x","archived":false,"fork":false,"pushed_at":"2025-09-16T15:44:17.000Z","size":3641,"stargazers_count":4,"open_issues_count":3,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-12T15:36:25.597Z","etag":null,"topics":["amazon-s3","java","object-storage","reactive","reactive-programming","s3","vertx"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EmadAlblueshi.png","metadata":{"files":{"readme":"README.adoc","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-06-03T16:54:34.000Z","updated_at":"2025-09-16T15:03:16.000Z","dependencies_parsed_at":"2025-09-16T16:19:13.265Z","dependency_job_id":"1d20e58f-e609-4f62-8ecf-517d325d9a2a","html_url":"https://github.com/EmadAlblueshi/object-storage-client","commit_stats":null,"previous_names":["emadalblueshi/vertx-web-object-storage-client","emadalblueshi/object-storage-client"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/EmadAlblueshi/object-storage-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EmadAlblueshi%2Fobject-storage-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EmadAlblueshi%2Fobject-storage-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EmadAlblueshi%2Fobject-storage-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EmadAlblueshi%2Fobject-storage-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EmadAlblueshi","download_url":"https://codeload.github.com/EmadAlblueshi/object-storage-client/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EmadAlblueshi%2Fobject-storage-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279011851,"owners_count":26085005,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["amazon-s3","java","object-storage","reactive","reactive-programming","s3","vertx"],"created_at":"2024-09-26T07:40:25.974Z","updated_at":"2025-10-12T15:36:25.760Z","avatar_url":"https://github.com/EmadAlblueshi.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"= Object Storage Client\n:icons: font\n\nimage:https://github.com/EmadAlblueshi/object-storage-client/actions/workflows/ci.yml/badge.svg?branch=master[\"Build Status\", link=\"https://github.com/EmadAlblueshi/object-storage-client/actions?query=workflow%3ACI\"]\n\nA convenient S3 client based on Vert.x that is compatible with\nhttps://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html[Amazon S3 REST API protocol]\n\nWARNING: The module in active development, this means the API can change between versions.\n\n== Example\n[source,java]\n----\n// Create auth options\nvar authOptions = new S3AuthOptions()\n    .setSignatureVersion(S3SignatureVersion.V4)\n    .setAccessKey(\"access-key\")\n    .setSecretKey(\"secret-key\");\n\n// Create client options\nvar clientOptions = new S3ClientOptions()\n    .setAuthOptions(authOptions)\n    .setRegion(\"region\")\n    .setWebClientOptions(new WebClientOptions()\n        .setHost(\"s3.example.com\")\n        .setPort(443)\n        .setSsl(true));\n\n// Create the client\nvar client = S3Client.create(vertx, clientOptions);\n\n// Create new bucket\nclient.putBucket(new S3BucketOptions(), \"/my-bucket\").onComplete(r -\u003e {\n  if (r.succeeded()) {\n    System.out.println(\"Put bucket succeeded\");\n  } else {\n    System.out.println(\"Put bucket failed!\");\n  }\n});\n\n// Create object request options with content type\nvar objectOptions = new S3ObjectOptions()\n    .contentType(\"text/plain\");\n\n// Read existing text file\nvar fileBuffer = vertx.fileSystem().readFileBlocking(\"readme.txt\");\n\n// Create new object\nclient.putObject(objectOptions, \"/my-bucket/my-file.txt\", fileBuffer).onComplete(r -\u003e {\n  if (r.succeeded()) {\n    System.out.println(\"Put object succeeded\");\n  } else {\n    System.out.println(\"Put object failed!\");\n  }\n});\n\n// The S3 Client now supports streaming for large objects\nvar asyncFile = vertx.fileSystem().openBlocking(\"large-image.png\", new OpenOptions().setRead(true));\n// Object content type\nvar options = new S3ObjectOptions().contentType(\"image/png\");\n// Upload large object as ReadStream\u003cBuffer\u003e\nclient.putObjectAsStream(options, \"/my-bucket/large-object.png\", asyncFile).onComplete(res -\u003e {\n  if(res.succeeded()) {\n    System.out.println(\"Put large object as stream succeeded\");\n  } else {\n    System.out.println(\"Put large object as stream failed!\");\n  }\n});\n----\n\n== Building\n\nTo launch the tests:\n----\nmvn clean test\n----\n\nTo package:\n----\nmvn clean package -DskipTests\n----\n\nTo package with site\n----\nmvn clean package -DskipTests site\n----\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femadalblueshi%2Fobject-storage-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femadalblueshi%2Fobject-storage-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femadalblueshi%2Fobject-storage-client/lists"}