123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596 |
- // Package oss implements functions for access oss service.
- // It has two main struct Client and Bucket.
- package oss
- import (
- "bytes"
- "encoding/xml"
- "fmt"
- "io"
- "io/ioutil"
- "log"
- "net"
- "net/http"
- "strings"
- "time"
- )
- // Client SDK's entry point. It's for bucket related options such as create/delete/set bucket (such as set/get ACL/lifecycle/referer/logging/website).
- // Object related operations are done by Bucket class.
- // Users use oss.New to create Client instance.
- //
- type (
- // Client OSS client
- Client struct {
- Config *Config // OSS client configuration
- Conn *Conn // Send HTTP request
- HTTPClient *http.Client //http.Client to use - if nil will make its own
- }
- // ClientOption client option such as UseCname, Timeout, SecurityToken.
- ClientOption func(*Client)
- )
- // New creates a new client.
- //
- // endpoint the OSS datacenter endpoint such as http://oss-cn-hangzhou.aliyuncs.com .
- // accessKeyId access key Id.
- // accessKeySecret access key secret.
- //
- // Client creates the new client instance, the returned value is valid when error is nil.
- // error it's nil if no error, otherwise it's an error object.
- //
- func New(endpoint, accessKeyID, accessKeySecret string, options ...ClientOption) (*Client, error) {
- // Configuration
- config := getDefaultOssConfig()
- config.Endpoint = endpoint
- config.AccessKeyID = accessKeyID
- config.AccessKeySecret = accessKeySecret
- // URL parse
- url := &urlMaker{}
- err := url.Init(config.Endpoint, config.IsCname, config.IsUseProxy)
- if err != nil {
- return nil, err
- }
- // HTTP connect
- conn := &Conn{config: config, url: url}
- // OSS client
- client := &Client{
- Config: config,
- Conn: conn,
- }
- // Client options parse
- for _, option := range options {
- option(client)
- }
- if config.AuthVersion != AuthV1 && config.AuthVersion != AuthV2 {
- return nil, fmt.Errorf("Init client Error, invalid Auth version: %v", config.AuthVersion)
- }
- // Create HTTP connection
- err = conn.init(config, url, client.HTTPClient)
- return client, err
- }
- // Bucket gets the bucket instance.
- //
- // bucketName the bucket name.
- // Bucket the bucket object, when error is nil.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) Bucket(bucketName string) (*Bucket, error) {
- err := CheckBucketName(bucketName)
- if err != nil {
- return nil, err
- }
- return &Bucket{
- client,
- bucketName,
- }, nil
- }
- // CreateBucket creates a bucket.
- //
- // bucketName the bucket name, it's globably unique and immutable. The bucket name can only consist of lowercase letters, numbers and dash ('-').
- // It must start with lowercase letter or number and the length can only be between 3 and 255.
- // options options for creating the bucket, with optional ACL. The ACL could be ACLPrivate, ACLPublicRead, and ACLPublicReadWrite. By default it's ACLPrivate.
- // It could also be specified with StorageClass option, which supports StorageStandard, StorageIA(infrequent access), StorageArchive.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) CreateBucket(bucketName string, options ...Option) error {
- headers := make(map[string]string)
- handleOptions(headers, options)
- buffer := new(bytes.Buffer)
- var cbConfig createBucketConfiguration
- cbConfig.StorageClass = StorageStandard
- isStorageSet, valStroage, _ := IsOptionSet(options, storageClass)
- isRedundancySet, valRedundancy, _ := IsOptionSet(options, redundancyType)
- if isStorageSet {
- cbConfig.StorageClass = valStroage.(StorageClassType)
- }
- if isRedundancySet {
- cbConfig.DataRedundancyType = valRedundancy.(DataRedundancyType)
- }
- bs, err := xml.Marshal(cbConfig)
- if err != nil {
- return err
- }
- buffer.Write(bs)
- contentType := http.DetectContentType(buffer.Bytes())
- headers[HTTPHeaderContentType] = contentType
- params := map[string]interface{}{}
- resp, err := client.do("PUT", bucketName, params, headers, buffer, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // ListBuckets lists buckets of the current account under the given endpoint, with optional filters.
- //
- // options specifies the filters such as Prefix, Marker and MaxKeys. Prefix is the bucket name's prefix filter.
- // And marker makes sure the returned buckets' name are greater than it in lexicographic order.
- // Maxkeys limits the max keys to return, and by default it's 100 and up to 1000.
- // For the common usage scenario, please check out list_bucket.go in the sample.
- // ListBucketsResponse the response object if error is nil.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) ListBuckets(options ...Option) (ListBucketsResult, error) {
- var out ListBucketsResult
- params, err := GetRawParams(options)
- if err != nil {
- return out, err
- }
- resp, err := client.do("GET", "", params, nil, nil, options...)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // IsBucketExist checks if the bucket exists
- //
- // bucketName the bucket name.
- //
- // bool true if it exists, and it's only valid when error is nil.
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) IsBucketExist(bucketName string) (bool, error) {
- listRes, err := client.ListBuckets(Prefix(bucketName), MaxKeys(1))
- if err != nil {
- return false, err
- }
- if len(listRes.Buckets) == 1 && listRes.Buckets[0].Name == bucketName {
- return true, nil
- }
- return false, nil
- }
- // DeleteBucket deletes the bucket. Only empty bucket can be deleted (no object and parts).
- //
- // bucketName the bucket name.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) DeleteBucket(bucketName string, options ...Option) error {
- params := map[string]interface{}{}
- resp, err := client.do("DELETE", bucketName, params, nil, nil, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusNoContent})
- }
- // GetBucketLocation gets the bucket location.
- //
- // Checks out the following link for more information :
- // https://help.aliyun.com/document_detail/oss/user_guide/oss_concept/endpoint.html
- //
- // bucketName the bucket name
- //
- // string bucket's datacenter location
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) GetBucketLocation(bucketName string) (string, error) {
- params := map[string]interface{}{}
- params["location"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil)
- if err != nil {
- return "", err
- }
- defer resp.Body.Close()
- var LocationConstraint string
- err = xmlUnmarshal(resp.Body, &LocationConstraint)
- return LocationConstraint, err
- }
- // SetBucketACL sets bucket's ACL.
- //
- // bucketName the bucket name
- // bucketAcl the bucket ACL: ACLPrivate, ACLPublicRead and ACLPublicReadWrite.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) SetBucketACL(bucketName string, bucketACL ACLType) error {
- headers := map[string]string{HTTPHeaderOssACL: string(bucketACL)}
- params := map[string]interface{}{}
- params["acl"] = nil
- resp, err := client.do("PUT", bucketName, params, headers, nil)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // GetBucketACL gets the bucket ACL.
- //
- // bucketName the bucket name.
- //
- // GetBucketAclResponse the result object, and it's only valid when error is nil.
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) GetBucketACL(bucketName string) (GetBucketACLResult, error) {
- var out GetBucketACLResult
- params := map[string]interface{}{}
- params["acl"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // SetBucketLifecycle sets the bucket's lifecycle.
- //
- // For more information, checks out following link:
- // https://help.aliyun.com/document_detail/oss/user_guide/manage_object/object_lifecycle.html
- //
- // bucketName the bucket name.
- // rules the lifecycle rules. There're two kind of rules: absolute time expiration and relative time expiration in days and day/month/year respectively.
- // Check out sample/bucket_lifecycle.go for more details.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) SetBucketLifecycle(bucketName string, rules []LifecycleRule) error {
- err := verifyLifecycleRules(rules)
- if err != nil {
- return err
- }
- lifecycleCfg := LifecycleConfiguration{Rules: rules}
- bs, err := xml.Marshal(lifecycleCfg)
- if err != nil {
- return err
- }
- buffer := new(bytes.Buffer)
- buffer.Write(bs)
- contentType := http.DetectContentType(buffer.Bytes())
- headers := map[string]string{}
- headers[HTTPHeaderContentType] = contentType
- params := map[string]interface{}{}
- params["lifecycle"] = nil
- resp, err := client.do("PUT", bucketName, params, headers, buffer)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // DeleteBucketLifecycle deletes the bucket's lifecycle.
- //
- //
- // bucketName the bucket name.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) DeleteBucketLifecycle(bucketName string) error {
- params := map[string]interface{}{}
- params["lifecycle"] = nil
- resp, err := client.do("DELETE", bucketName, params, nil, nil)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusNoContent})
- }
- // GetBucketLifecycle gets the bucket's lifecycle settings.
- //
- // bucketName the bucket name.
- //
- // GetBucketLifecycleResponse the result object upon successful request. It's only valid when error is nil.
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) GetBucketLifecycle(bucketName string) (GetBucketLifecycleResult, error) {
- var out GetBucketLifecycleResult
- params := map[string]interface{}{}
- params["lifecycle"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- // NonVersionTransition is not suggested to use
- // to keep compatible
- for k, rule := range out.Rules {
- if len(rule.NonVersionTransitions) > 0 {
- out.Rules[k].NonVersionTransition = &(out.Rules[k].NonVersionTransitions[0])
- }
- }
- return out, err
- }
- // SetBucketReferer sets the bucket's referer whitelist and the flag if allowing empty referrer.
- //
- // To avoid stealing link on OSS data, OSS supports the HTTP referrer header. A whitelist referrer could be set either by API or web console, as well as
- // the allowing empty referrer flag. Note that this applies to requests from webbrowser only.
- // For example, for a bucket os-example and its referrer http://www.aliyun.com, all requests from this URL could access the bucket.
- // For more information, please check out this link :
- // https://help.aliyun.com/document_detail/oss/user_guide/security_management/referer.html
- //
- // bucketName the bucket name.
- // referers the referrer white list. A bucket could have a referrer list and each referrer supports one '*' and multiple '?' as wildcards.
- // The sample could be found in sample/bucket_referer.go
- // allowEmptyReferer the flag of allowing empty referrer. By default it's true.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) SetBucketReferer(bucketName string, referers []string, allowEmptyReferer bool) error {
- rxml := RefererXML{}
- rxml.AllowEmptyReferer = allowEmptyReferer
- if referers == nil {
- rxml.RefererList = append(rxml.RefererList, "")
- } else {
- for _, referer := range referers {
- rxml.RefererList = append(rxml.RefererList, referer)
- }
- }
- bs, err := xml.Marshal(rxml)
- if err != nil {
- return err
- }
- buffer := new(bytes.Buffer)
- buffer.Write(bs)
- contentType := http.DetectContentType(buffer.Bytes())
- headers := map[string]string{}
- headers[HTTPHeaderContentType] = contentType
- params := map[string]interface{}{}
- params["referer"] = nil
- resp, err := client.do("PUT", bucketName, params, headers, buffer)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // GetBucketReferer gets the bucket's referrer white list.
- //
- // bucketName the bucket name.
- //
- // GetBucketRefererResponse the result object upon successful request. It's only valid when error is nil.
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) GetBucketReferer(bucketName string) (GetBucketRefererResult, error) {
- var out GetBucketRefererResult
- params := map[string]interface{}{}
- params["referer"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // SetBucketLogging sets the bucket logging settings.
- //
- // OSS could automatically store the access log. Only the bucket owner could enable the logging.
- // Once enabled, OSS would save all the access log into hourly log files in a specified bucket.
- // For more information, please check out https://help.aliyun.com/document_detail/oss/user_guide/security_management/logging.html
- //
- // bucketName bucket name to enable the log.
- // targetBucket the target bucket name to store the log files.
- // targetPrefix the log files' prefix.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) SetBucketLogging(bucketName, targetBucket, targetPrefix string,
- isEnable bool) error {
- var err error
- var bs []byte
- if isEnable {
- lxml := LoggingXML{}
- lxml.LoggingEnabled.TargetBucket = targetBucket
- lxml.LoggingEnabled.TargetPrefix = targetPrefix
- bs, err = xml.Marshal(lxml)
- } else {
- lxml := loggingXMLEmpty{}
- bs, err = xml.Marshal(lxml)
- }
- if err != nil {
- return err
- }
- buffer := new(bytes.Buffer)
- buffer.Write(bs)
- contentType := http.DetectContentType(buffer.Bytes())
- headers := map[string]string{}
- headers[HTTPHeaderContentType] = contentType
- params := map[string]interface{}{}
- params["logging"] = nil
- resp, err := client.do("PUT", bucketName, params, headers, buffer)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // DeleteBucketLogging deletes the logging configuration to disable the logging on the bucket.
- //
- // bucketName the bucket name to disable the logging.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) DeleteBucketLogging(bucketName string) error {
- params := map[string]interface{}{}
- params["logging"] = nil
- resp, err := client.do("DELETE", bucketName, params, nil, nil)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusNoContent})
- }
- // GetBucketLogging gets the bucket's logging settings
- //
- // bucketName the bucket name
- // GetBucketLoggingResponse the result object upon successful request. It's only valid when error is nil.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) GetBucketLogging(bucketName string) (GetBucketLoggingResult, error) {
- var out GetBucketLoggingResult
- params := map[string]interface{}{}
- params["logging"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // SetBucketWebsite sets the bucket's static website's index and error page.
- //
- // OSS supports static web site hosting for the bucket data. When the bucket is enabled with that, you can access the file in the bucket like the way to access a static website.
- // For more information, please check out: https://help.aliyun.com/document_detail/oss/user_guide/static_host_website.html
- //
- // bucketName the bucket name to enable static web site.
- // indexDocument index page.
- // errorDocument error page.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) SetBucketWebsite(bucketName, indexDocument, errorDocument string) error {
- wxml := WebsiteXML{}
- wxml.IndexDocument.Suffix = indexDocument
- wxml.ErrorDocument.Key = errorDocument
- bs, err := xml.Marshal(wxml)
- if err != nil {
- return err
- }
- buffer := new(bytes.Buffer)
- buffer.Write(bs)
- contentType := http.DetectContentType(buffer.Bytes())
- headers := make(map[string]string)
- headers[HTTPHeaderContentType] = contentType
- params := map[string]interface{}{}
- params["website"] = nil
- resp, err := client.do("PUT", bucketName, params, headers, buffer)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // SetBucketWebsiteDetail sets the bucket's static website's detail
- //
- // OSS supports static web site hosting for the bucket data. When the bucket is enabled with that, you can access the file in the bucket like the way to access a static website.
- // For more information, please check out: https://help.aliyun.com/document_detail/oss/user_guide/static_host_website.html
- //
- // bucketName the bucket name to enable static web site.
- //
- // wxml the website's detail
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) SetBucketWebsiteDetail(bucketName string, wxml WebsiteXML, options ...Option) error {
- bs, err := xml.Marshal(wxml)
- if err != nil {
- return err
- }
- buffer := new(bytes.Buffer)
- buffer.Write(bs)
- contentType := http.DetectContentType(buffer.Bytes())
- headers := make(map[string]string)
- headers[HTTPHeaderContentType] = contentType
- params := map[string]interface{}{}
- params["website"] = nil
- resp, err := client.do("PUT", bucketName, params, headers, buffer, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // SetBucketWebsiteXml sets the bucket's static website's rule
- //
- // OSS supports static web site hosting for the bucket data. When the bucket is enabled with that, you can access the file in the bucket like the way to access a static website.
- // For more information, please check out: https://help.aliyun.com/document_detail/oss/user_guide/static_host_website.html
- //
- // bucketName the bucket name to enable static web site.
- //
- // wxml the website's detail
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) SetBucketWebsiteXml(bucketName string, webXml string, options ...Option) error {
- buffer := new(bytes.Buffer)
- buffer.Write([]byte(webXml))
- contentType := http.DetectContentType(buffer.Bytes())
- headers := make(map[string]string)
- headers[HTTPHeaderContentType] = contentType
- params := map[string]interface{}{}
- params["website"] = nil
- resp, err := client.do("PUT", bucketName, params, headers, buffer, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // DeleteBucketWebsite deletes the bucket's static web site settings.
- //
- // bucketName the bucket name.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) DeleteBucketWebsite(bucketName string) error {
- params := map[string]interface{}{}
- params["website"] = nil
- resp, err := client.do("DELETE", bucketName, params, nil, nil)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusNoContent})
- }
- // GetBucketWebsite gets the bucket's default page (index page) and the error page.
- //
- // bucketName the bucket name
- //
- // GetBucketWebsiteResponse the result object upon successful request. It's only valid when error is nil.
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) GetBucketWebsite(bucketName string) (GetBucketWebsiteResult, error) {
- var out GetBucketWebsiteResult
- params := map[string]interface{}{}
- params["website"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // SetBucketCORS sets the bucket's CORS rules
- //
- // For more information, please check out https://help.aliyun.com/document_detail/oss/user_guide/security_management/cors.html
- //
- // bucketName the bucket name
- // corsRules the CORS rules to set. The related sample code is in sample/bucket_cors.go.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) SetBucketCORS(bucketName string, corsRules []CORSRule) error {
- corsxml := CORSXML{}
- for _, v := range corsRules {
- cr := CORSRule{}
- cr.AllowedMethod = v.AllowedMethod
- cr.AllowedOrigin = v.AllowedOrigin
- cr.AllowedHeader = v.AllowedHeader
- cr.ExposeHeader = v.ExposeHeader
- cr.MaxAgeSeconds = v.MaxAgeSeconds
- corsxml.CORSRules = append(corsxml.CORSRules, cr)
- }
- bs, err := xml.Marshal(corsxml)
- if err != nil {
- return err
- }
- buffer := new(bytes.Buffer)
- buffer.Write(bs)
- contentType := http.DetectContentType(buffer.Bytes())
- headers := map[string]string{}
- headers[HTTPHeaderContentType] = contentType
- params := map[string]interface{}{}
- params["cors"] = nil
- resp, err := client.do("PUT", bucketName, params, headers, buffer)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // DeleteBucketCORS deletes the bucket's static website settings.
- //
- // bucketName the bucket name.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) DeleteBucketCORS(bucketName string) error {
- params := map[string]interface{}{}
- params["cors"] = nil
- resp, err := client.do("DELETE", bucketName, params, nil, nil)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusNoContent})
- }
- // GetBucketCORS gets the bucket's CORS settings.
- //
- // bucketName the bucket name.
- // GetBucketCORSResult the result object upon successful request. It's only valid when error is nil.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) GetBucketCORS(bucketName string) (GetBucketCORSResult, error) {
- var out GetBucketCORSResult
- params := map[string]interface{}{}
- params["cors"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // GetBucketInfo gets the bucket information.
- //
- // bucketName the bucket name.
- // GetBucketInfoResult the result object upon successful request. It's only valid when error is nil.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) GetBucketInfo(bucketName string, options ...Option) (GetBucketInfoResult, error) {
- var out GetBucketInfoResult
- params := map[string]interface{}{}
- params["bucketInfo"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil, options...)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- // convert None to ""
- if err == nil {
- if out.BucketInfo.SseRule.KMSMasterKeyID == "None" {
- out.BucketInfo.SseRule.KMSMasterKeyID = ""
- }
- if out.BucketInfo.SseRule.SSEAlgorithm == "None" {
- out.BucketInfo.SseRule.SSEAlgorithm = ""
- }
- if out.BucketInfo.SseRule.KMSDataEncryption == "None" {
- out.BucketInfo.SseRule.KMSDataEncryption = ""
- }
- }
- return out, err
- }
- // SetBucketVersioning set bucket versioning:Enabled、Suspended
- // bucketName the bucket name.
- // error it's nil if no error, otherwise it's an error object.
- func (client Client) SetBucketVersioning(bucketName string, versioningConfig VersioningConfig, options ...Option) error {
- var err error
- var bs []byte
- bs, err = xml.Marshal(versioningConfig)
- if err != nil {
- return err
- }
- buffer := new(bytes.Buffer)
- buffer.Write(bs)
- contentType := http.DetectContentType(buffer.Bytes())
- headers := map[string]string{}
- headers[HTTPHeaderContentType] = contentType
- params := map[string]interface{}{}
- params["versioning"] = nil
- resp, err := client.do("PUT", bucketName, params, headers, buffer, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // GetBucketVersioning get bucket versioning status:Enabled、Suspended
- // bucketName the bucket name.
- // error it's nil if no error, otherwise it's an error object.
- func (client Client) GetBucketVersioning(bucketName string, options ...Option) (GetBucketVersioningResult, error) {
- var out GetBucketVersioningResult
- params := map[string]interface{}{}
- params["versioning"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil, options...)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // SetBucketEncryption set bucket encryption config
- // bucketName the bucket name.
- // error it's nil if no error, otherwise it's an error object.
- func (client Client) SetBucketEncryption(bucketName string, encryptionRule ServerEncryptionRule, options ...Option) error {
- var err error
- var bs []byte
- bs, err = xml.Marshal(encryptionRule)
- if err != nil {
- return err
- }
- buffer := new(bytes.Buffer)
- buffer.Write(bs)
- contentType := http.DetectContentType(buffer.Bytes())
- headers := map[string]string{}
- headers[HTTPHeaderContentType] = contentType
- params := map[string]interface{}{}
- params["encryption"] = nil
- resp, err := client.do("PUT", bucketName, params, headers, buffer, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // GetBucketEncryption get bucket encryption
- // bucketName the bucket name.
- // error it's nil if no error, otherwise it's an error object.
- func (client Client) GetBucketEncryption(bucketName string, options ...Option) (GetBucketEncryptionResult, error) {
- var out GetBucketEncryptionResult
- params := map[string]interface{}{}
- params["encryption"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil, options...)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // DeleteBucketEncryption delete bucket encryption config
- // bucketName the bucket name.
- // error it's nil if no error, otherwise it's an error bucket
- func (client Client) DeleteBucketEncryption(bucketName string, options ...Option) error {
- params := map[string]interface{}{}
- params["encryption"] = nil
- resp, err := client.do("DELETE", bucketName, params, nil, nil, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusNoContent})
- }
- //
- // SetBucketTagging add tagging to bucket
- // bucketName name of bucket
- // tagging tagging to be added
- // error nil if success, otherwise error
- func (client Client) SetBucketTagging(bucketName string, tagging Tagging, options ...Option) error {
- var err error
- var bs []byte
- bs, err = xml.Marshal(tagging)
- if err != nil {
- return err
- }
- buffer := new(bytes.Buffer)
- buffer.Write(bs)
- contentType := http.DetectContentType(buffer.Bytes())
- headers := map[string]string{}
- headers[HTTPHeaderContentType] = contentType
- params := map[string]interface{}{}
- params["tagging"] = nil
- resp, err := client.do("PUT", bucketName, params, headers, buffer, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // GetBucketTagging get tagging of the bucket
- // bucketName name of bucket
- // error nil if success, otherwise error
- func (client Client) GetBucketTagging(bucketName string, options ...Option) (GetBucketTaggingResult, error) {
- var out GetBucketTaggingResult
- params := map[string]interface{}{}
- params["tagging"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil, options...)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- //
- // DeleteBucketTagging delete bucket tagging
- // bucketName name of bucket
- // error nil if success, otherwise error
- //
- func (client Client) DeleteBucketTagging(bucketName string, options ...Option) error {
- params := map[string]interface{}{}
- params["tagging"] = nil
- resp, err := client.do("DELETE", bucketName, params, nil, nil, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusNoContent})
- }
- // GetBucketStat get bucket stat
- // bucketName the bucket name.
- // error it's nil if no error, otherwise it's an error object.
- func (client Client) GetBucketStat(bucketName string) (GetBucketStatResult, error) {
- var out GetBucketStatResult
- params := map[string]interface{}{}
- params["stat"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // GetBucketPolicy API operation for Object Storage Service.
- //
- // Get the policy from the bucket.
- //
- // bucketName the bucket name.
- //
- // string return the bucket's policy, and it's only valid when error is nil.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) GetBucketPolicy(bucketName string, options ...Option) (string, error) {
- params := map[string]interface{}{}
- params["policy"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil, options...)
- if err != nil {
- return "", err
- }
- defer resp.Body.Close()
- body, err := ioutil.ReadAll(resp.Body)
- out := string(body)
- return out, err
- }
- // SetBucketPolicy API operation for Object Storage Service.
- //
- // Set the policy from the bucket.
- //
- // bucketName the bucket name.
- //
- // policy the bucket policy.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) SetBucketPolicy(bucketName string, policy string, options ...Option) error {
- params := map[string]interface{}{}
- params["policy"] = nil
- buffer := strings.NewReader(policy)
- resp, err := client.do("PUT", bucketName, params, nil, buffer, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // DeleteBucketPolicy API operation for Object Storage Service.
- //
- // Deletes the policy from the bucket.
- //
- // bucketName the bucket name.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) DeleteBucketPolicy(bucketName string, options ...Option) error {
- params := map[string]interface{}{}
- params["policy"] = nil
- resp, err := client.do("DELETE", bucketName, params, nil, nil, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusNoContent})
- }
- // SetBucketRequestPayment API operation for Object Storage Service.
- //
- // Set the requestPayment of bucket
- //
- // bucketName the bucket name.
- //
- // paymentConfig the payment configuration
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) SetBucketRequestPayment(bucketName string, paymentConfig RequestPaymentConfiguration, options ...Option) error {
- params := map[string]interface{}{}
- params["requestPayment"] = nil
- var bs []byte
- bs, err := xml.Marshal(paymentConfig)
- if err != nil {
- return err
- }
- buffer := new(bytes.Buffer)
- buffer.Write(bs)
- contentType := http.DetectContentType(buffer.Bytes())
- headers := map[string]string{}
- headers[HTTPHeaderContentType] = contentType
- resp, err := client.do("PUT", bucketName, params, headers, buffer, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // GetBucketRequestPayment API operation for Object Storage Service.
- //
- // Get bucket requestPayment
- //
- // bucketName the bucket name.
- //
- // RequestPaymentConfiguration the payment configuration
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) GetBucketRequestPayment(bucketName string, options ...Option) (RequestPaymentConfiguration, error) {
- var out RequestPaymentConfiguration
- params := map[string]interface{}{}
- params["requestPayment"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil, options...)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // GetUserQoSInfo API operation for Object Storage Service.
- //
- // Get user qos.
- //
- // UserQoSConfiguration the User Qos and range Information.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) GetUserQoSInfo(options ...Option) (UserQoSConfiguration, error) {
- var out UserQoSConfiguration
- params := map[string]interface{}{}
- params["qosInfo"] = nil
- resp, err := client.do("GET", "", params, nil, nil, options...)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // SetBucketQoSInfo API operation for Object Storage Service.
- //
- // Set Bucket Qos information.
- //
- // bucketName tht bucket name.
- //
- // qosConf the qos configuration.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) SetBucketQoSInfo(bucketName string, qosConf BucketQoSConfiguration, options ...Option) error {
- params := map[string]interface{}{}
- params["qosInfo"] = nil
- var bs []byte
- bs, err := xml.Marshal(qosConf)
- if err != nil {
- return err
- }
- buffer := new(bytes.Buffer)
- buffer.Write(bs)
- contentTpye := http.DetectContentType(buffer.Bytes())
- headers := map[string]string{}
- headers[HTTPHeaderContentType] = contentTpye
- resp, err := client.do("PUT", bucketName, params, headers, buffer, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // GetBucketQosInfo API operation for Object Storage Service.
- //
- // Get Bucket Qos information.
- //
- // bucketName tht bucket name.
- //
- // BucketQoSConfiguration the return qos configuration.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) GetBucketQosInfo(bucketName string, options ...Option) (BucketQoSConfiguration, error) {
- var out BucketQoSConfiguration
- params := map[string]interface{}{}
- params["qosInfo"] = nil
- resp, err := client.do("GET", bucketName, params, nil, nil, options...)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // DeleteBucketQosInfo API operation for Object Storage Service.
- //
- // Delete Bucket QoS information.
- //
- // bucketName tht bucket name.
- //
- // error it's nil if no error, otherwise it's an error object.
- //
- func (client Client) DeleteBucketQosInfo(bucketName string, options ...Option) error {
- params := map[string]interface{}{}
- params["qosInfo"] = nil
- resp, err := client.do("DELETE", bucketName, params, nil, nil, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusNoContent})
- }
- // LimitUploadSpeed set upload bandwidth limit speed,default is 0,unlimited
- // upSpeed KB/s, 0 is unlimited,default is 0
- // error it's nil if success, otherwise failure
- func (client Client) LimitUploadSpeed(upSpeed int) error {
- if client.Config == nil {
- return fmt.Errorf("client config is nil")
- }
- return client.Config.LimitUploadSpeed(upSpeed)
- }
- // UseCname sets the flag of using CName. By default it's false.
- //
- // isUseCname true: the endpoint has the CName, false: the endpoint does not have cname. Default is false.
- //
- func UseCname(isUseCname bool) ClientOption {
- return func(client *Client) {
- client.Config.IsCname = isUseCname
- client.Conn.url.Init(client.Config.Endpoint, client.Config.IsCname, client.Config.IsUseProxy)
- }
- }
- // Timeout sets the HTTP timeout in seconds.
- //
- // connectTimeoutSec HTTP timeout in seconds. Default is 10 seconds. 0 means infinite (not recommended)
- // readWriteTimeout HTTP read or write's timeout in seconds. Default is 20 seconds. 0 means infinite.
- //
- func Timeout(connectTimeoutSec, readWriteTimeout int64) ClientOption {
- return func(client *Client) {
- client.Config.HTTPTimeout.ConnectTimeout =
- time.Second * time.Duration(connectTimeoutSec)
- client.Config.HTTPTimeout.ReadWriteTimeout =
- time.Second * time.Duration(readWriteTimeout)
- client.Config.HTTPTimeout.HeaderTimeout =
- time.Second * time.Duration(readWriteTimeout)
- client.Config.HTTPTimeout.IdleConnTimeout =
- time.Second * time.Duration(readWriteTimeout)
- client.Config.HTTPTimeout.LongTimeout =
- time.Second * time.Duration(readWriteTimeout*10)
- }
- }
- // SetBucketInventory API operation for Object Storage Service
- //
- // Set the Bucket inventory.
- //
- // bucketName tht bucket name.
- //
- // inventoryConfig the inventory configuration.
- //
- // error it's nil if no error, otherwise it's an error.
- //
- func (client Client) SetBucketInventory(bucketName string, inventoryConfig InventoryConfiguration, options ...Option) error {
- params := map[string]interface{}{}
- params["inventoryId"] = inventoryConfig.Id
- params["inventory"] = nil
- var bs []byte
- bs, err := xml.Marshal(inventoryConfig)
- if err != nil {
- return err
- }
- buffer := new(bytes.Buffer)
- buffer.Write(bs)
- contentType := http.DetectContentType(buffer.Bytes())
- headers := make(map[string]string)
- headers[HTTPHeaderContentType] = contentType
- resp, err := client.do("PUT", bucketName, params, headers, buffer, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusOK})
- }
- // GetBucketInventory API operation for Object Storage Service
- //
- // Get the Bucket inventory.
- //
- // bucketName tht bucket name.
- //
- // strInventoryId the inventory id.
- //
- // InventoryConfiguration the inventory configuration.
- //
- // error it's nil if no error, otherwise it's an error.
- //
- func (client Client) GetBucketInventory(bucketName string, strInventoryId string, options ...Option) (InventoryConfiguration, error) {
- var out InventoryConfiguration
- params := map[string]interface{}{}
- params["inventory"] = nil
- params["inventoryId"] = strInventoryId
- resp, err := client.do("GET", bucketName, params, nil, nil, options...)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // ListBucketInventory API operation for Object Storage Service
- //
- // List the Bucket inventory.
- //
- // bucketName tht bucket name.
- //
- // continuationToken the users token.
- //
- // ListInventoryConfigurationsResult list all inventory configuration by .
- //
- // error it's nil if no error, otherwise it's an error.
- //
- func (client Client) ListBucketInventory(bucketName, continuationToken string, options ...Option) (ListInventoryConfigurationsResult, error) {
- var out ListInventoryConfigurationsResult
- params := map[string]interface{}{}
- params["inventory"] = nil
- if continuationToken == "" {
- params["continuation-token"] = nil
- } else {
- params["continuation-token"] = continuationToken
- }
- resp, err := client.do("GET", bucketName, params, nil, nil, options...)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // DeleteBucketInventory API operation for Object Storage Service.
- //
- // Delete Bucket inventory information.
- //
- // bucketName tht bucket name.
- //
- // strInventoryId the inventory id.
- //
- // error it's nil if no error, otherwise it's an error.
- //
- func (client Client) DeleteBucketInventory(bucketName, strInventoryId string, options ...Option) error {
- params := map[string]interface{}{}
- params["inventory"] = nil
- params["inventoryId"] = strInventoryId
- resp, err := client.do("DELETE", bucketName, params, nil, nil, options...)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- return CheckRespCode(resp.StatusCode, []int{http.StatusNoContent})
- }
- // SetBucketAsyncTask API operation for set async fetch task
- //
- // bucketName tht bucket name.
- //
- // asynConf configruation
- //
- // error it's nil if success, otherwise it's an error.
- func (client Client) SetBucketAsyncTask(bucketName string, asynConf AsyncFetchTaskConfiguration, options ...Option) (AsyncFetchTaskResult, error) {
- var out AsyncFetchTaskResult
- params := map[string]interface{}{}
- params["asyncFetch"] = nil
- var bs []byte
- bs, err := xml.Marshal(asynConf)
- if err != nil {
- return out, err
- }
- buffer := new(bytes.Buffer)
- buffer.Write(bs)
- contentType := http.DetectContentType(buffer.Bytes())
- headers := make(map[string]string)
- headers[HTTPHeaderContentType] = contentType
- resp, err := client.do("POST", bucketName, params, headers, buffer, options...)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // GetBucketAsyncTask API operation for set async fetch task
- //
- // bucketName tht bucket name.
- //
- // taskid returned by SetBucketAsyncTask
- //
- // error it's nil if success, otherwise it's an error.
- func (client Client) GetBucketAsyncTask(bucketName string, taskID string, options ...Option) (AsynFetchTaskInfo, error) {
- var out AsynFetchTaskInfo
- params := map[string]interface{}{}
- params["asyncFetch"] = nil
- headers := make(map[string]string)
- headers[HTTPHeaderOssTaskID] = taskID
- resp, err := client.do("GET", bucketName, params, headers, nil, options...)
- if err != nil {
- return out, err
- }
- defer resp.Body.Close()
- err = xmlUnmarshal(resp.Body, &out)
- return out, err
- }
- // SecurityToken sets the temporary user's SecurityToken.
- //
- // token STS token
- //
- func SecurityToken(token string) ClientOption {
- return func(client *Client) {
- client.Config.SecurityToken = strings.TrimSpace(token)
- }
- }
- // EnableMD5 enables MD5 validation.
- //
- // isEnableMD5 true: enable MD5 validation; false: disable MD5 validation.
- //
- func EnableMD5(isEnableMD5 bool) ClientOption {
- return func(client *Client) {
- client.Config.IsEnableMD5 = isEnableMD5
- }
- }
- // MD5ThresholdCalcInMemory sets the memory usage threshold for computing the MD5, default is 16MB.
- //
- // threshold the memory threshold in bytes. When the uploaded content is more than 16MB, the temp file is used for computing the MD5.
- //
- func MD5ThresholdCalcInMemory(threshold int64) ClientOption {
- return func(client *Client) {
- client.Config.MD5Threshold = threshold
- }
- }
- // EnableCRC enables the CRC checksum. Default is true.
- //
- // isEnableCRC true: enable CRC checksum; false: disable the CRC checksum.
- //
- func EnableCRC(isEnableCRC bool) ClientOption {
- return func(client *Client) {
- client.Config.IsEnableCRC = isEnableCRC
- }
- }
- // UserAgent specifies UserAgent. The default is aliyun-sdk-go/1.2.0 (windows/-/amd64;go1.5.2).
- //
- // userAgent the user agent string.
- //
- func UserAgent(userAgent string) ClientOption {
- return func(client *Client) {
- client.Config.UserAgent = userAgent
- client.Config.UserSetUa = true
- }
- }
- // Proxy sets the proxy (optional). The default is not using proxy.
- //
- // proxyHost the proxy host in the format "host:port". For example, proxy.com:80 .
- //
- func Proxy(proxyHost string) ClientOption {
- return func(client *Client) {
- client.Config.IsUseProxy = true
- client.Config.ProxyHost = proxyHost
- client.Conn.url.Init(client.Config.Endpoint, client.Config.IsCname, client.Config.IsUseProxy)
- }
- }
- // AuthProxy sets the proxy information with user name and password.
- //
- // proxyHost the proxy host in the format "host:port". For example, proxy.com:80 .
- // proxyUser the proxy user name.
- // proxyPassword the proxy password.
- //
- func AuthProxy(proxyHost, proxyUser, proxyPassword string) ClientOption {
- return func(client *Client) {
- client.Config.IsUseProxy = true
- client.Config.ProxyHost = proxyHost
- client.Config.IsAuthProxy = true
- client.Config.ProxyUser = proxyUser
- client.Config.ProxyPassword = proxyPassword
- client.Conn.url.Init(client.Config.Endpoint, client.Config.IsCname, client.Config.IsUseProxy)
- }
- }
- //
- // HTTPClient sets the http.Client in use to the one passed in
- //
- func HTTPClient(HTTPClient *http.Client) ClientOption {
- return func(client *Client) {
- client.HTTPClient = HTTPClient
- }
- }
- //
- // SetLogLevel sets the oss sdk log level
- //
- func SetLogLevel(LogLevel int) ClientOption {
- return func(client *Client) {
- client.Config.LogLevel = LogLevel
- }
- }
- //
- // SetLogger sets the oss sdk logger
- //
- func SetLogger(Logger *log.Logger) ClientOption {
- return func(client *Client) {
- client.Config.Logger = Logger
- }
- }
- // SetCredentialsProvider sets funciton for get the user's ak
- func SetCredentialsProvider(provider CredentialsProvider) ClientOption {
- return func(client *Client) {
- client.Config.CredentialsProvider = provider
- }
- }
- // SetLocalAddr sets funciton for local addr
- func SetLocalAddr(localAddr net.Addr) ClientOption {
- return func(client *Client) {
- client.Config.LocalAddr = localAddr
- }
- }
- // AuthVersion sets auth version: v1 or v2 signature which oss_server needed
- func AuthVersion(authVersion AuthVersionType) ClientOption {
- return func(client *Client) {
- client.Config.AuthVersion = authVersion
- }
- }
- // AdditionalHeaders sets special http headers needed to be signed
- func AdditionalHeaders(headers []string) ClientOption {
- return func(client *Client) {
- client.Config.AdditionalHeaders = headers
- }
- }
- // only effective from go1.7 onward,RedirectEnabled set http redirect enabled or not
- func RedirectEnabled(enabled bool) ClientOption {
- return func(client *Client) {
- client.Config.RedirectEnabled = enabled
- }
- }
- // Private
- func (client Client) do(method, bucketName string, params map[string]interface{},
- headers map[string]string, data io.Reader, options ...Option) (*Response, error) {
- err := CheckBucketName(bucketName)
- if len(bucketName) > 0 && err != nil {
- return nil, err
- }
- // option headers
- addHeaders := make(map[string]string)
- err = handleOptions(addHeaders, options)
- if err != nil {
- return nil, err
- }
- // merge header
- if headers == nil {
- headers = make(map[string]string)
- }
- for k, v := range addHeaders {
- if _, ok := headers[k]; !ok {
- headers[k] = v
- }
- }
- resp, err := client.Conn.Do(method, bucketName, "", params, headers, data, 0, nil)
- // get response header
- respHeader, _ := FindOption(options, responseHeader, nil)
- if respHeader != nil {
- pRespHeader := respHeader.(*http.Header)
- *pRespHeader = resp.Headers
- }
- return resp, err
- }
|