Conditions | 19 |
Paths | 76 |
Total Lines | 109 |
Code Lines | 59 |
Lines | 7 |
Ratio | 6.42 % |
Changes | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
1 | <?php |
||
51 | function authorize( $data = array() ) { |
||
52 | $redirect = isset( $data['redirect'] ) ? esc_url_raw( (string) $data['redirect'] ) : ''; |
||
|
|||
53 | |||
54 | $jetpack_unique_connection = Jetpack_Options::get_option( 'unique_connection' ); |
||
55 | // Checking if site has been active/connected previously before recording unique connection |
||
56 | if ( ! $jetpack_unique_connection ) { |
||
57 | // jetpack_unique_connection option has never been set |
||
58 | $jetpack_unique_connection = array( |
||
59 | 'connected' => 0, |
||
60 | 'disconnected' => 0, |
||
61 | 'version' => '3.6.1', |
||
62 | ); |
||
63 | |||
64 | update_option( 'jetpack_unique_connection', $jetpack_unique_connection ); |
||
65 | |||
66 | //track unique connection |
||
67 | $jetpack = $this->get_jetpack(); |
||
68 | |||
69 | $jetpack->stat( 'connections', 'unique-connection' ); |
||
70 | $jetpack->do_stats( 'server_side' ); |
||
71 | } |
||
72 | |||
73 | // increment number of times connected |
||
74 | $jetpack_unique_connection['connected'] += 1; |
||
75 | Jetpack_Options::update_option( 'unique_connection', $jetpack_unique_connection ); |
||
76 | |||
77 | $role = Jetpack::translate_current_user_to_role(); |
||
78 | |||
79 | if ( ! $role ) { |
||
80 | return new Jetpack_Error( 'no_role', 'Invalid request.', 400 ); |
||
81 | } |
||
82 | |||
83 | $cap = Jetpack::translate_role_to_cap( $role ); |
||
84 | if ( ! $cap ) { |
||
85 | return new Jetpack_Error( 'no_cap', 'Invalid request.', 400 ); |
||
86 | } |
||
87 | |||
88 | if ( ! empty( $data['error'] ) ) { |
||
89 | return new Jetpack_Error( $data['error'], 'Error included in the request.', 400 ); |
||
90 | } |
||
91 | |||
92 | if ( ! isset( $data['state'] ) ) { |
||
93 | return new Jetpack_Error( 'no_state', 'Request must include state.', 400 ); |
||
94 | } |
||
95 | |||
96 | if ( ! ctype_digit( $data['state'] ) ) { |
||
97 | return new Jetpack_Error( $data['error'], 'State must be an integer.', 400 ); |
||
98 | } |
||
99 | |||
100 | $current_user_id = get_current_user_id(); |
||
101 | if ( $current_user_id != $data['state'] ) { |
||
102 | return new Jetpack_Error( 'wrong_state', 'State does not match current user.', 400 ); |
||
103 | } |
||
104 | |||
105 | if ( empty( $data['code'] ) ) { |
||
106 | return new Jetpack_Error( 'no_code', 'Request must include an authorization code.', 400 ); |
||
107 | } |
||
108 | |||
109 | $token = $this->get_token( $data ); |
||
110 | |||
111 | if ( is_wp_error( $token ) ) { |
||
112 | $code = $token->get_error_code(); |
||
113 | if ( empty( $code ) ) { |
||
114 | $code = 'invalid_token'; |
||
115 | } |
||
116 | return new Jetpack_Error( $code, $token->get_error_message(), 400 ); |
||
117 | } |
||
118 | |||
119 | if ( ! $token ) { |
||
120 | return new Jetpack_Error( 'no_token', 'Error generating token.', 400 ); |
||
121 | } |
||
122 | |||
123 | $is_master_user = ! Jetpack::is_active(); |
||
124 | |||
125 | Jetpack::update_user_token( $current_user_id, sprintf( '%s.%d', $token, $current_user_id ), $is_master_user ); |
||
126 | |||
127 | if ( ! $is_master_user ) { |
||
128 | Jetpack::state( 'message', 'linked' ); |
||
129 | // Don't activate anything since we are just connecting a user. |
||
130 | return 'linked'; |
||
131 | } |
||
132 | |||
133 | $redirect_on_activation_error = ( 'client' === $data['auth_type'] ) ? true : false; |
||
134 | View Code Duplication | if ( $active_modules = Jetpack_Options::get_option( 'active_modules' ) ) { |
|
135 | Jetpack::delete_active_modules(); |
||
136 | |||
137 | Jetpack::activate_default_modules( 999, 1, $active_modules, $redirect_on_activation_error, false ); |
||
138 | } else { |
||
139 | Jetpack::activate_default_modules( false, false, array(), $redirect_on_activation_error, false ); |
||
140 | } |
||
141 | |||
142 | // If redirect_uri is SSO, ensure SSO module is enabled |
||
143 | parse_str( parse_url( $data['redirect_uri'], PHP_URL_QUERY ), $redirect_options ); |
||
144 | /** This filter is documented in class.jetpack-cli.php */ |
||
145 | if ( isset( $redirect_options['action'] ) && 'jetpack-sso' === $redirect_options['action'] && apply_filters( 'jetpack_start_enable_sso', true ) ) { |
||
146 | Jetpack::activate_module( 'sso', false, false ); |
||
147 | } |
||
148 | |||
149 | // Since this is a fresh connection, be sure to clear out IDC options |
||
150 | Jetpack_IDC::clear_all_idc_options(); |
||
151 | Jetpack_Options::delete_raw_option( 'jetpack_last_connect_url_check' ); |
||
152 | |||
153 | // Start nonce cleaner |
||
154 | wp_clear_scheduled_hook( 'jetpack_clean_nonces' ); |
||
155 | wp_schedule_event( time(), 'hourly', 'jetpack_clean_nonces' ); |
||
156 | |||
157 | Jetpack::state( 'message', 'authorized' ); |
||
158 | return 'authorized'; |
||
159 | } |
||
160 | |||
297 |
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVar
assignment in line 1 and the$higher
assignment in line 2 are dead. The first because$myVar
is never used and the second because$higher
is always overwritten for every possible time line.