Code Monkey home page Code Monkey logo

Comments (5)

GrahamCampbell avatar GrahamCampbell commented on June 3, 2024

No need to do all this in the constructor. Just, in your controller method:

$c = DigitalOcean::getFactory()->make(['driver' => 'guzzlehttp', 'token' => Auth::user()->do_api_token]);

Also, you definitely shouldn't ever need to write "new factory". That should always set off alarm bells. You should always check the source code to see if it's registered in the service container. In the case of this package it is, but you can also access it from the facade as in my first example. If you wanted a dependency injection approach, you could have:

use GrahamCampbell\DigitalOcean\DigitalOceanFactory;

// ...

public function myHandler(DigitalOceanFactory $do)
{
    $c = $do->make(['driver' => 'guzzlehttp', 'token' => Auth::user()->do_api_token]);
}

from laravel-digitalocean.

ppshobi avatar ppshobi commented on June 3, 2024

When I do this, I am getting invalid Argument Exception 'The DigitalOcean factory requires an auth method'

from laravel-digitalocean.

GrahamCampbell avatar GrahamCampbell commented on June 3, 2024

@ppshobi That's because that code example was for an old version of this package. In the new version, you don't need to specify a driver (in fact, if you do, it just gets ignored), but you must now specify an authentication method. Currently, there's a choice of none or token, as documented at https://github.com/GrahamCampbell/Laravel-DigitalOcean#digitalocean-connections. Some example config is provided at https://github.com/GrahamCampbell/Laravel-DigitalOcean/blob/7.0/config/digitalocean.php#L42-L45. That exact config is what can be passed at runtime to the factory, if you aren't specifying the token in the config file.

$client = DigitalOcean::getFactory()->make(['method' => 'token', 'token' => 'YOUR-TOKEN-HERE']);

from laravel-digitalocean.

GrahamCampbell avatar GrahamCampbell commented on June 3, 2024

You can also look at the tests to see how the factory should be used: https://github.com/GrahamCampbell/Laravel-DigitalOcean/blob/7.0/tests/DigitalOceanFactoryTest.php#L31-L39.

from laravel-digitalocean.

ppshobi avatar ppshobi commented on June 3, 2024

from laravel-digitalocean.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.