Skip to content

Commit d75c72e

Browse files
authored
Merge pull request #227 from plausible/improve_token_validation
Fix #224 - If no token is entered, the ClientFactory will no longer return a Client instance.
2 parents 2b73e33 + 4213390 commit d75c72e

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

src/Client.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Client {
3434
*/
3535
public function __construct( $token = '' ) {
3636
$config = Configuration::getDefaultConfiguration()->setUsername( 'WordPress' )->setPassword(
37-
$token ?: Helpers::get_settings()[ 'api_token' ]
37+
$token
3838
)->setHost( Helpers::get_hosted_domain_url() );
3939
$this->api_instance = new DefaultApi( new GuzzleClient(), $config );
4040
}

src/ClientFactory.php

+8
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@ public function build() {
3434
return false; // @codeCoverageIgnore
3535
}
3636

37+
if ( ! $this->token ) {
38+
$this->token = Helpers::get_settings()[ 'api_token' ];
39+
}
40+
41+
if ( ! $this->token ) {
42+
return false;
43+
}
44+
3745
return new Client( $this->token );
3846
}
3947

tests/unit/ClientFactoryTest.php

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ public function testBuild() {
1717
$clientFactory = new ClientFactory();
1818
$client = $clientFactory->build();
1919

20+
$this->assertFalse( $client );
21+
22+
$clientFactory = new ClientFactory( 'test' );
23+
$client = $clientFactory->build();
24+
2025
$this->assertInstanceOf( Client::class, $client );
2126
}
2227
}

0 commit comments

Comments
 (0)