web-dev-qa-db-ja.com

HTML、javascript、jQueryを使用してAjaxリクエストで画像をAmazon s3にアップロードする(PHPなし)

HTML、javascript、jQueryでWebサイトを開発しています。 AjaxリクエストでAmazon s3サーバーに画像をアップロードしたい。 Javascriptにs3を統合するSDKはありません。 PHP SDKが利用可能ですが、それは私には役に立ちません。誰かがjavascriptでこれに対する解決策を提供できますか?

61
Swapnil Godambe

この記事に基づいてXMLHTTPObjectを使用してjsおよびhtml5で動作するAmazon S3およびCORSを取得しました article

1:CORSは適切なURL " http:// localhost "からのみ機能します。 (file /// xyzはあなたを狂気にさせます)

2:ポリシーとシークレットが正しくコンパイルされていることを確認してください-これが私のポリシーです。これは、プロジェクトを開始するためのリンクです。 Signature and Policy -このJSを公開しないでくださいあなたの秘密

POLICY_JSON = { "expiration": "2020-12-01T12:00:00.000Z",
            "conditions": [
            {"bucket": this.get('bucket')},
            ["starts-with", "$key", ""],
            {"acl": this.get('acl')},                           
            ["starts-with", "$Content-Type", ""],
            ["content-length-range", 0, 524288000]
            ]
          };


    var secret = this.get('AWSSecretKeyId');
    var policyBase64 = Base64.encode(JSON.stringify(POLICY_JSON));
    console.log ( policyBase64 )

    var signature = b64_hmac_sha1(secret, policyBase64);
    b64_hmac_sha1(secret, policyBase64);
    console.log( signature);

これがJSコードです

function uploadFile() {

    var file = document.getElementById('file').files[0];
    var fd = new FormData();

    var key = "events/" + (new Date).getTime() + '-' + file.name;

    fd.append('key', key);
    fd.append('acl', 'public-read'); 
    fd.append('Content-Type', file.type);      
    fd.append('AWSAccessKeyId', 'YOUR ACCESS KEY');
    fd.append('policy', 'YOUR POLICY')
    fd.append('signature','YOUR SIGNATURE');

    fd.append("file",file);

    var xhr = getXMLHTTPObject();

    xhr.upload.addEventListener("progress", uploadProgress, false);
    xhr.addEventListener("load", uploadComplete, false);
    xhr.addEventListener("error", uploadFailed, false);
    xhr.addEventListener("abort", uploadCanceled, false);

    xhr.open('POST', 'https://<yourbucket>.s3.amazonaws.com/', true); //MUST BE LAST LINE BEFORE YOU SEND 

    xhr.send(fd);
  }

ヘルパー関数

function uploadProgress(evt) {
    if (evt.lengthComputable) {
      var percentComplete = Math.round(evt.loaded * 100 / evt.total);
      document.getElementById('progressNumber').innerHTML = percentComplete.toString() + '%';
    }
    else {
      document.getElementById('progressNumber').innerHTML = 'unable to compute';
    }
  }

  function uploadComplete(evt) {
    /* This event is raised when the server send back a response */
    alert("Done - " + evt.target.responseText );
  }

  function uploadFailed(evt) {
    alert("There was an error attempting to upload the file." + evt);
  }

  function uploadCanceled(evt) {
    alert("The upload has been canceled by the user or the browser dropped the connection.");
  }

次に、HTMLフォーム

 <form id="form1" enctype="multipart/form-data" method="post">
<div class="row">
  <label for="file">Select a File to Upload</label><br />
  <input type="file" name="file" id="file" onchange="fileSelected()"/>
</div>
<div id="fileName"></div>
<div id="fileSize"></div>
<div id="fileType"></div>
<div class="row">
  <input type="button" onclick="uploadFile()" value="Upload" />
</div>
<div id="progressNumber"></div>

ハッピーCORS-ing!

121
fino

Amazonは、クロスオリジンリソース共有を許可しました。理論的には、サーバー(およびPHP)をプロキシとして使用せずに、ユーザーがS3に直接アップロードできるようにします。

ドキュメントはこちら-> http://docs.amazonwebservices.com/AmazonS3/latest/dev/cors.html

S3バケットで有効にする方法を教えてくれますが、クライアントからバケットにデータを取得する方法の実際のjavascriptの例は見つかりませんでした。

CORS.jsを最初に投稿した人は伝説のxD

7
lukejacksonn

これは、CORSとJavaScriptを使用してAmazon S3で再開可能なファイルをアップロードする例です http://cotag.github.com/Condominios/

5
PaddlePoP

AWS S3 Cognitoでこれを行うには、次のリンクを試してください:

http://docs.aws.Amazon.com/AWSJavaScriptSDK/guide/browser-examples.html#Amazon_S

また、このコードを試してください

Region、IdentityPoolId、およびバケット名を変更するだけです

<!DOCTYPE html>
<html>

<head>
    <title>AWS S3 File Upload</title>
    <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1.12.min.js"></script>
</head>

<body>
    <input type="file" id="file-chooser" />
    <button id="upload-button">Upload to S3</button>
    <div id="results"></div>
    <script type="text/javascript">
    AWS.config.region = 'your-region'; // 1. Enter your region
    AWS.config.credentials = new AWS.CognitoIdentityCredentials({
        IdentityPoolId: 'your-IdentityPoolId' // 2. Enter your identity pool
    });
    AWS.config.credentials.get(function(err) {
        if (err) alert(err);
        console.log(AWS.config.credentials);
    });
    var bucketName = 'your-bucket'; // Enter your bucket name
    var bucket = new AWS.S3({
        params: {
            Bucket: bucketName
        }
    });
    var fileChooser = document.getElementById('file-chooser');
    var button = document.getElementById('upload-button');
    var results = document.getElementById('results');
    button.addEventListener('click', function() {
        var file = fileChooser.files[0];
        if (file) {
            results.innerHTML = '';
            var objKey = 'testing/' + file.name;
            var params = {
                Key: objKey,
                ContentType: file.type,
                Body: file,
                ACL: 'public-read'
            };
            bucket.putObject(params, function(err, data) {
                if (err) {
                    results.innerHTML = 'ERROR: ' + err;
                } else {
                    listObjs(); // this function will list all the files which has been uploaded
                    //here you can also add your code to update your database(MySQL, firebase whatever you are using)
                }
            });
        } else {
            results.innerHTML = 'Nothing to upload.';
        }
    }, false);
    function listObjs() {
        var prefix = 'testing';
        bucket.listObjects({
            Prefix: prefix
        }, function(err, data) {
            if (err) {
                results.innerHTML = 'ERROR: ' + err;
            } else {
                var objKeys = "";
                data.Contents.forEach(function(obj) {
                    objKeys += obj.Key + "<br>";
                });
                results.innerHTML = objKeys;
            }
        });
    }
    </script>
</body>

</html>

必要に応じて github Link を使用できます

私はそれが他の人を助けることを願っています:)

3
Joomler

認証部分については、

PHPコード、サーバー、以下を除く大きなJSコードはありません。

aWS Cognito IdentityPoolIdをクレデンシャルとして使用し、コードを減らしますが、AWS Cognito IdetityPoolを作成し、ポリシーをアタッチする必要があります。s3書き込みアクセスのみです。

 var IdentityPoolId = 'us-east-1:1 ...........'; 
 
 
 AWS.config.update( {
認証情報:新しいAWS.CognitoIdentityCredentials({
 IdentityPoolId:IdentityPoolId 
})
}); 
 
0