0

Android ユーザー向けのゲームでは、Google+、Facebook、Twitter からログインできます。

アプリのスクリーンショット

アプリが PostgreSQL/PHP バックエンドに接続すると、ソーシャル ID のリストが送信され、それらをテーブルsidの列として保存します。social

create table social (
        sid varchar(255) not null,
        auth char(32) not null,

        social integer not null check (0 <= social and social <= 6),
        given varchar(255) not null check (given ~ '\S'),
        photo varchar(255) null check (photo ~* '^https?://...'),

        stamp timestamp not null,
        ip inet not null,
        uid integer not null references users on delete cascade,
        primary key(sid, social)
);

別のテーブルではusers、自動インクリメントされたユーザー ID をuid列として保持し、それを使用してゲーム、実績、プレーヤーの統計を追跡します。

create table users (
        uid serial primary key,

        created timestamp not null,
        stamp timestamp not null,

        banned_until timestamp null,
        banned_reason varchar(255) null
);

PHPログインスクリプトでは、可能な限りソーシャルアカウントをマージしようとしています -

受信したすべてのsidを取得し、対応するuidを見つけてから、見つかった最小のuidを取得し、その最小のuidsocialを使用するようにテーブル内のレコードを更新します。

これはすでに PHP でうまく機能していますが、マージ機能を PostgreSQL ストアド関数に移動しようとしています。

CREATE OR REPLACE FUNCTION merge_users(
        IN in_users jsonb,
        IN in_ip inet,
        OUT out_uid integer) AS
$func$
DECLARE
        user jsonb;
BEGIN
        SELECT MIN(uid) INTO out_uid FROM social
        WHERE sid IN (SELECT u->>'sid' FROM JSONB_ARRAY_ELEMENTS(in_users) u);

        IF FOUND THEN
                UPDATE words_social SET uid=out_uid
                WHERE sid IN (SELECT u->>'sid' FROM JSONB_ARRAY_ELEMENTS(in_users) u);
        ELSE
                INSERT INTO words_users (created, stamp)
                VALUES (current_timestamp, current_timestamp)
                RETURNING uid INTO out_uid;
        END IF;

        FOR user IN SELECT * FROM JSONB_ARRAY_ELEMENTS(in_users)
        LOOP
                RAISE NOTICE 'user sid = %', user->>'sid';

                UPDATE social SET
                        auth   = user->'auth',
                        social = user->'social',
                        given  = user->'given',
                        photo  = user->'photo',
                        stamp  = TO_TIMESTAMP(user->'stamp'),
                        ip     = in_ip,
                        uid    = out_uid
                WHERE sid = user->>'sid';

                IF NOT FOUND THEN
                        INSERT INTO social (
                                sid,
                                auth,
                                social,
                                given,
                                photo,
                                stamp,
                                ip,
                                uid
                        ) VALUES (
                                user->'sid',
                                user->'auth',
                                user->'social',
                                user->'given',
                                user->'photo',
                                TO_TIMESTAMP(user->'stamp'),
                                in_ip,
                                out_uid
                        );
                END IF;
        END LOOP;
END
$func$  LANGUAGE plpgsql;

残念ながら、上記のコードは構文エラー メッセージを出力します。

# select * from merge_users(
'[{"sid":"12345284239407942","auth":"ddddc1808197a1161bc22dc307accccc","social":3,"given":"Alexander1","family":"Farber","photo":"https:\/\/graph.facebook.com\/10154284239407942\/picture?type=large","place":"Bochum, Germany","female":0,"stamp":1450102770},{"sid":"54321284239407942","auth":"ddddc1808197a1161bc22dc307abbbbb","social":4,"given":"Alexander2","family":"Farber","photo":null,"place":"Bochum, Germany","female":0,"stamp":1450102800}]'::jsonb);

NOTICE:  min uid = <NULL>
ERROR:  operator does not exist: name ->> unknown
LINE 1: SELECT user->>'sid'
                   ^
HINT:  No operator matches the given name and argument type(s). You might need to add explicit type casts.
QUERY:  SELECT user->>'sid'
CONTEXT:  PL/pgSQL function words_merge_users(jsonb) line 15 at RAISE

上記のコードに追加しよう::jsonbuしましたが、役に立ちませんでした。user

4

0 に答える 0