Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add array support to context method and allow chaining #136

Merged
merged 10 commits into from
Mar 4, 2021
Merged

add array support to context method and allow chaining #136

merged 10 commits into from
Mar 4, 2021

Conversation

johanrosenson
Copy link
Contributor

@johanrosenson johanrosenson commented Feb 25, 2021

Status

READY

Description

This PR will make it easier to add an array of context values, it also opens up for chaining.

The PR includes tests.

Before

foreach ($array as $key => $value) {
    $honeybadger->context($key, $value);
}

After

$honeybadger->withContext($array);

And the chaining will allow the exception handler to look something like this (my example is for Laravel).

Before

$honeybadger = $this->container->make('honeybadger');

foreach ($array as $key => $value) {
    $honeybadger->context($key, $value);
}

$honeybadger->notify($e);

After

$this->container->make('honeybadger')
    ->withContext($array)
    ->notify($e);

Copy link
Member

@joshuap joshuap left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good to me. I actually kind of wish this is the way $honeybadger->context worked (setting multiple values via an array vs. one at a time)—that's similar to our other clients. I don't know if it would be possible to change that while maintaining backwards-compatibility, though.

@shalvah
Copy link
Contributor

shalvah commented Mar 4, 2021

I don't know if it would be possible to change that while maintaining backwards-compatibility, though.

We can!

    /**
     * @param  int|string|array  $key Name of context item, or key-value array of context items
     * @param  mixed  $value Value of the context item. Alternatively, pass a key-value array in $key to set multiple items at once.
     * @return self
     */
    public function context($key, $value = null): self
    {
        if (func_num_args() == 1 && is_array($key)) {
            // An array of context values was passed instead
            foreach ($key as $contextItem => $contextValue) {
                $this->context->set($contextItem, $contextValue);
            }
        } else {
            $this->context->set($key, $value);
        }
        
        return $this;
    }

Now I'm thinking it may be better to add this to the PHP library directly. 🤔

@joshuap
Copy link
Member

joshuap commented Mar 4, 2021

@shalvah I like it :)

@johanrosenson
Copy link
Contributor Author

I don't know if it would be possible to change that while maintaining backwards-compatibility, though.

I was thinking about that also, and opted to do it as a separate method so i didn't have to edit the already existing method.
I guess this could be seen as a breaking change if anyone is extending the Honeybadger class, they are probably not expecting an array as input. Up to you if that is a valid concern or something we can safely ignore.

I can update the PR to refactor the current method instead of creating a new method if you wish?

@shalvah
Copy link
Contributor

shalvah commented Mar 4, 2021

I don't know if it would be possible to change that while maintaining backwards-compatibility, though.

I was thinking about that also, and opted to do it as a separate method so i didn't have to edit the already existing method.
I guess this could be seen as a breaking change if anyone is extending the Honeybadger class, they are probably not expecting an array as input. Up to you if that is a valid concern or something we can safely ignore.

I can update the PR to refactor the current method instead of creating a new method if you wish?

We might be changing the type signature, but I don't think it's a breaking change: if they aren't expecting an array, then they aren't passing an array, and nothing will happen.

Before this, it was impossible to pass an array as the first argument anyway. This adds functionality, not removed it.

@johanrosenson johanrosenson changed the title add withContext method to allow chaining and adding multiple context at once add array support to context method and allow chaining Mar 4, 2021
@johanrosenson
Copy link
Contributor Author

johanrosenson commented Mar 4, 2021

I have updated the PR, sorry for the multiple commits, didn't have access to 7.3 locally at the moment.

Had to put the interface as return typehint for it to work in 7.3, imo this is better than to omit the return typehint completely.

@johanrosenson
Copy link
Contributor Author

I just realised that we cannot add a typehint at all, if we would add the return typehint we will for sure break the backwards-compatibility. Any class extending Honeybadger would be incompatible with the new signature.

By omitting the typehint any extending classes will still work even if they have void return type, they will not pass along the return value ofcourse, but their implementations will not expect a return value anyway.

I kept the proper return typehint in the docblock.

@shalvah
Copy link
Contributor

shalvah commented Mar 4, 2021

Thank you 👍

@shalvah shalvah merged commit 319fd4a into honeybadger-io:master Mar 4, 2021
@johanrosenson johanrosenson deleted the withContext-method branch March 5, 2021 05:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants