1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
use {
super::utils::*,
crate::{errors, state::*},
anchor_lang::{prelude::*, solana_program::system_program},
index_program::{
cpi::{accounts::CreateIndex, create_index},
program::IndexProgram,
state::*,
},
};
#[derive(Accounts)]
#[instruction(
process_at: u64,
bump: u8,
)]
pub struct CreateTaskIndex<'info> {
#[account(mut, seeds = [SEED_AUTHORITY], bump = authority.bump)]
pub authority: Account<'info, Authority>,
pub clock: Sysvar<'info, Clock>,
#[account(address = index_program::ID)]
pub index_program: Program<'info, IndexProgram>,
#[account(mut)]
pub signer: Signer<'info>,
#[account(address = system_program::ID)]
pub system_program: Program<'info, System>,
#[account(mut)]
pub task_index: Account<'info, Index>,
}
pub fn handler(ctx: Context<CreateTaskIndex>, process_at: u64, bump: u8) -> ProgramResult {
let authority = &ctx.accounts.authority;
let clock = &ctx.accounts.clock;
let index_program = &ctx.accounts.index_program;
let system_program = &ctx.accounts.system_program;
let task_index = &ctx.accounts.task_index;
require!(
process_at % ONE_MINUTE == 0,
errors::ErrorCode::InvalidProcessAtIntraMinute
);
require!(
process_at > clock.unix_timestamp as u64,
errors::ErrorCode::InvalidProcessAtPast
);
create_index(
CpiContext::new_with_signer(
index_program.to_account_info(),
CreateIndex {
index: task_index.to_account_info(),
owner: authority.to_account_info(),
system_program: system_program.to_account_info(),
},
&[&[SEED_AUTHORITY, &[authority.bump]]],
),
task_index_namespace(process_at),
true,
bump,
)
}